What are the physical search limitations?
…is best used when ASCII text hits are expected
Name a few feature that can be identified by bulk_extractor?
What data can be processed with bulk_extractor?
BE is data format agnostic.
Like our grep and egrep command for physical searches, bulk_extractor also searches the entire disk or image:
What is a scanner?
Scanners are the modules used by BE to locate and report the features. For example: accts – scans for credit card numbers, track 2 information, and phone numbers. The results for this scanner are stored in the following feature files: ccn, ccn track2, telephone.
Explain the following scanners:
How does the standard BE command looks like?
# bulk_extractor -o bulk_out myimage.E01
Create BE command that disables all scanners except ZIP and FIND and search for “Uranium-235”?
bulk_extractor -E zip -e find -f “Uranium-235” -o blk_out <imagefile></imagefile>
What are the three output files?
What are stop lists?
Every operating system and the external software we use has help files, manuals, and other documentation that contain email addresses, telephone numbers, and web addresses that are uninteresting, but will still end up in your bulk_extractor feature files and histograms. These false positives can be limited by using stop lists. A stop list can be a simple list of terms (or terms with context) that are blocked from the regular scanner feature files (but still reported in special stopped.txt files for each scanner). Example: -w stoplist.txt
How can you create a word list for password cracking?
# bulk_extractor -E wordlist -o outputdir image.e01