Created
June 18, 2017 02:33
-
-
Save justinoboyle/a07efa5884364718719a99ee0ffc8435 to your computer and use it in GitHub Desktop.
Finds strings in executables, useful for analyzing malware.
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
#!/usr/bin/env python2 | |
# Finds strings in executables, useful for analyzing malware. | |
# Usage: cat <filename> | ./extract-strings | |
import sys | |
import re | |
chars = r"A-Za-z0-9/\-:.,_$%'()[\]<> " | |
shortest_run = 4 | |
regexp = '[%s]{%d,}' % (chars, shortest_run) | |
pattern = re.compile(regexp) | |
def process(stream): | |
data = stream.read() | |
return pattern.findall(data) | |
if __name__ == "__main__": | |
for found_str in process(sys.stdin): | |
print found_str |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment