|
jstrings
1
A tool for finding JIS-based character strings in binary streams
|
A tool for finding JIS-based Japanese characters in binary data.
jstrings [options] [input]
Input can be a filename or data from stdin.
-m number
Set minimum number of characters to match as a valid string. Default: 10.
-e encoding
Specify the encoding to use. Currently, the only valid value is "shift-jis". Default: shift-jis
-l
Use little-endian order for multibyte characters
-jisx0213
Use JIS X 0213 character set instead of JIS X 0208 for double byte characters
Data is output in its original encoding without any conversion. Other tools, such as iconv, can do conversion to something more useful (such as UTF8). For example:
jstrings file.bin | iconv -f SHIFT-JIS -t UTF-8 -c
1.8.13