imphash : generates a Virustotal compatible IMPHASH for a binary ltop : does 'sort|uniq -c' but with live update in ncurses smtpbanner : grabs smtp banner uniq : like uniq but does not need sorting. uniqrs : same as uniq but written in Rust
6 lines
98 B
Python
Executable File
6 lines
98 B
Python
Executable File
#!/usr/bin/env python3
|
|
import pefile
|
|
import sys
|
|
pe=pefile.PE(sys.argv[1])
|
|
print(pe.get_imphash())
|