mirror of
https://github.com/dobin/avred
synced 2026-06-08 13:54:13 +00:00
7 lines
244 B
Python
7 lines
244 B
Python
from reducer import scanData
|
|
|
|
# no PE file, just check its content
|
|
def analyzeFilePlain(filePlain, scanner):
|
|
matchesIntervalTree = scanData(scanner, filePlain.data, filePlain.filename, 0, len(filePlain.data))
|
|
return matchesIntervalTree
|