mirror of
https://github.com/mgeeky/Penetration-Testing-Tools.git
synced 2025-04-04 16:54:07 +02:00
fix
This commit is contained in:
parent
dbe602a1ec
commit
c61fab4dc1
@ -245,14 +245,17 @@ def processDir(args, regexes, path, results, uniqueSymbols, filesProcessed, symb
|
|||||||
filePaths = []
|
filePaths = []
|
||||||
|
|
||||||
for file in glob.glob(os.path.join(path, '**'), recursive=args.recurse):
|
for file in glob.glob(os.path.join(path, '**'), recursive=args.recurse):
|
||||||
if os.path.isfile(file):
|
try:
|
||||||
looks_like_pe = False
|
if os.path.isfile(file):
|
||||||
with open(file, 'rb') as f:
|
looks_like_pe = False
|
||||||
mz = f.read(2)
|
with open(file, 'rb') as f:
|
||||||
if len(mz) == 2:
|
mz = f.read(2)
|
||||||
looks_like_pe = (mz[0] == ord('M') and mz[1] == ord('Z')) or (mz[1] == ord('M') and mz[0] == ord('Z'))
|
if len(mz) == 2:
|
||||||
|
looks_like_pe = (mz[0] == ord('M') and mz[1] == ord('Z')) or (mz[1] == ord('M') and mz[0] == ord('Z'))
|
||||||
|
|
||||||
if looks_like_pe: filePaths.append(file)
|
if looks_like_pe: filePaths.append(file)
|
||||||
|
except:
|
||||||
|
continue
|
||||||
|
|
||||||
cpu_count = multiprocessing.cpu_count()
|
cpu_count = multiprocessing.cpu_count()
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user