-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
12 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
from binaryninja import PluginCommand | ||
|
||
from obfuscation_detection import detect_obfuscation | ||
from obfuscation_detection import heuristics | ||
from .obfuscation_detection import detect_obfuscation | ||
from .obfuscation_detection.heuristics import * | ||
|
||
PluginCommand.register("Obfuscation Detection\\All", | ||
"Detects obfuscated code via heuristics", detect_obfuscation) | ||
|
||
PluginCommand.register("Obfuscation Detection\\Flattened Functions", | ||
"Heuristic to detect flattened functions", heuristics.find_flattened_functions) | ||
"Heuristic to detect flattened functions", find_flattened_functions) | ||
|
||
PluginCommand.register("Obfuscation Detection\\Complex Functions", | ||
"Heuristic to detect complex functions", heuristics.find_complex_functions) | ||
"Heuristic to detect complex functions", find_complex_functions) | ||
|
||
PluginCommand.register("Obfuscation Detection\\Large Basic Blocks", | ||
"Heuristic to detect functions with large basic blocks", heuristics.find_large_basic_blocks) | ||
"Heuristic to detect functions with large basic blocks", find_large_basic_blocks) | ||
|
||
PluginCommand.register("Obfuscation Detection\\Instruction Overlapping", | ||
"Heuristic to detect instruction overlapping", heuristics.find_instruction_overlapping) | ||
"Heuristic to detect instruction overlapping", find_instruction_overlapping) | ||
|
||
PluginCommand.register("Obfuscation Detection\\Uncommon Instruction Sequences", | ||
"Heuristic to detect uncommon instruction sequences", heuristics.find_uncommon_instruction_sequences) | ||
"Heuristic to detect uncommon instruction sequences", find_uncommon_instruction_sequences) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters