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