Skip to content

Instantly share code, notes, and snippets.

@justinoboyle
Created June 18, 2017 02:33
Show Gist options
  • Save justinoboyle/a07efa5884364718719a99ee0ffc8435 to your computer and use it in GitHub Desktop.
Save justinoboyle/a07efa5884364718719a99ee0ffc8435 to your computer and use it in GitHub Desktop.
Finds strings in executables, useful for analyzing malware.
#!/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