Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
ex0dus-0x committed May 27, 2024
1 parent 3080f77 commit 9013a13
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/check/mach.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,10 @@ impl Analyze for MachO<'_> {
"Non-executable Stack".to_string(),
json!(self.executable_stack()),
);
mitigate_map.insert("Non-executable Heap".to_string(), json!(self.executable_heap()));
mitigate_map.insert(
"Non-executable Heap".to_string(),
json!(self.executable_heap()),
);
mitigate_map.insert(
"Position Independent Executable / ASLR".to_string(),
json!(self.position_independent()),
Expand Down

0 comments on commit 9013a13

Please sign in to comment.