grep For ASCII in Binary File Posted by SNM on May 21, 2017Summarygrep for ASCII in Binary FileCommandcat file | tr -d '\000' | grep patterngrep ASCII data from Binary FileDescriptioncat file.bin – prints the file contents and pipe to tr tr – remove the NUL (\000) character and pipe to grep grep – match search patternPosts navigation← binwalk File Analysispypecia Network Scanning →