summaryrefslogtreecommitdiff
path: root/poc.py
diff options
context:
space:
mode:
Diffstat (limited to 'poc.py')
-rw-r--r--poc.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/poc.py b/poc.py
index 8fddc5a..f1d5399 100644
--- a/poc.py
+++ b/poc.py
@@ -1,5 +1,6 @@
1#1/usr/bin/env python
2
1import fnmatch 3import fnmatch
2import glob
3import os 4import os
4import sys 5import sys
5import time 6import time
@@ -27,4 +28,3 @@ for cpt, (root, dirnames, filenames) in enumerate(os.walk(sys.argv[1])):
27 print str(matches) + fname 28 print str(matches) + fname
28 print '\n'.join(hex(m[0]) + ':' + m[1] + ': ' + m[2] for m in matches.strings) 29 print '\n'.join(hex(m[0]) + ':' + m[1] + ': ' + m[2] for m in matches.strings)
29 30
30