SearchBin
SearchBin copied to clipboard
Search within binary files for a string, hex, or even another binary file
possible to search for a line of code and auto-replace with another line of code example: search bin for FFFF9 and replace with FFFFF
added option to see the matched pattern when you use wildcard "??"
I want to iteratively build patterns, and having to use a second tool (a hex editor/viewer) to see what was found shouldn't be needed. Here's a code snippet that worked...
`searchbin -t text -b 8388608 bigfile` works but: `searchbin -f file -b 8388608 bigfile` Fails with the following error on Python 2.7.14 ` Traceback (most recent call last): File "/root/bin/searchbin",...