基本搜索
A basic search for a plain text string in a file would be something like:
As can be seen from the output above, radare2 generates a "hit" flag for every entry found. You can then use the ps
command to see the strings stored at the offsets marked by the flags in this group, and they will have names of the form hit0_<index>
:
You can search for wide-char strings (e.g., unicode letters) using the /w
command:
To perform a case-insensitive search for strings use /i
:
It is possible to specify hexadecimal escape sequences in the search string by prepending them with "\x":
But, if you are searching for a string of hexadecimal values, you're probably better of using the /x
command:
Once the search is done, the results are stored in the searches
flag space.
To remove "hit" flags after you do not need them anymore, use the f- hit*
command.
Often, during long search sessions, you will need to launch the latest search more than once. You can use the //
command to repeat the last search.
最后更新于
这有帮助吗?