qfind

$ target-query <path/to/target> -f qfind
Details

Module

dissect.target.plugins.scrape.qfind.QFindPlugin

Output

no output

Module documentation

Basically grep -a "malware" on steroids.

Function documentation

Find a needle in a haystack.

Example:
# find all instances of "malware" in the target
target-qfind <TARGET> --needles malware

# find all instances of "malware" in the target, ignoring case
target-qfind <TARGET> --needles MaLwArE --ignore-case

# find all instances of "malware" in the target and show raw hex dumps
target-qfind <TARGET> --needles malware --raw

# find all instances of "malware" in the target, in UTF-8 and UTF-16-LE (UTF-8 is default)
target-qfind <TARGET> --needles malware --encoding utf-16-le

# use target-query instead of target-qfind
target-query <TARGET> -f qfind --needles malware