Commit 37d5110c by devttys0

Improved --disasm efficiency

parent 35538acb
...@@ -19,7 +19,7 @@ class CodeID(Module): ...@@ -19,7 +19,7 @@ class CodeID(Module):
Option(short='Y', Option(short='Y',
long='disasm', long='disasm',
kwargs={'enabled' : True}, kwargs={'enabled' : True},
description='Identify the architecture of files containing executable code'), description='Identify the architecture of excutable code using the capstone disassembler'),
Option(short='T', Option(short='T',
long='minsn', long='minsn',
type=int, type=int,
......
...@@ -23,7 +23,7 @@ class Signature(Module): ...@@ -23,7 +23,7 @@ class Signature(Module):
Option(short='A', Option(short='A',
long='opcodes', long='opcodes',
kwargs={'enabled' : True, 'search_for_opcodes' : True}, kwargs={'enabled' : True, 'search_for_opcodes' : True},
description='Scan target file(s) for common executable opcodes'), description='Scan target file(s) for common executable opcode signatures'),
Option(short='C', Option(short='C',
long='cast', long='cast',
kwargs={'enabled' : True, 'cast_data_types' : True}, kwargs={'enabled' : True, 'cast_data_types' : True},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment