![]() |
|
#1
|
||||
|
||||
|
FLIRT Signature File Database
Hi
I found this on github : https://github.com/Maktm/FLIRTDB anyone managed to make IDA load them into the signatures list ? or are they too old for IDA 7.7 ? Is there an alternative source for FLIRT signatures ? I'm interested in Boost lib signatures. |
|
#2
|
|||
|
|||
|
Use this IDAPython script
Code:
def applySigFile():
file = ida_kernwin.ask_file(0, "*.sig", "Select sig file to apply")
if not file:
print("applySigFile: user cancelled")
return
print("Apply sig file %s" % file)
ida_funcs.plan_to_apply_idasgn(file)
def applySigDir():
sig_dir = os.path.join(os.path.dirname(sys.executable), 'sig')
sig_dir = str(QtWidgets.QFileDialog.getExistingDirectory(None, "Select Your Signatures Directory", sig_dir))
if sig_dir == "":
print("applySigDir: user cancelled")
return
for name in os.listdir(sig_dir):
if name[-4:] == '.sig':
name = os.path.join(sig_dir, name)
print("Apply sig file %s" % name)
ida_funcs.plan_to_apply_idasgn(name)
|
![]() |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| [C++] Grim Dawn Database File Extractor (.arz) | atom0s | Source Code | 0 | 01-16-2015 14:06 |
| Unpacked ASPR file - signature not recognised | 5Alive | General Discussion | 12 | 02-08-2009 19:38 |
| Signature and IDS file of VC++ 7.1 | TQN | General Discussion | 2 | 07-12-2004 16:49 |