mirror of
https://github.com/rizinorg/rizin
synced 2026-08-22 20:26:16 -04:00
* Move binrz meson directives to binrz/ dir * Move rizin-shell-parser to a subproject * Move bochs to a meson subproject * Move rzqnx to meson subproject * Move winkd to a meson subproject * Move rzar to a meson subproject * Move rzw32dbg_wrap to a meson subproject * Move ptrace-wrap to a meson subproject * Move rzgdb to a meson subproject * Rename w32dbg_wrap to rzw32dbg_wrap * Update CODEOWNERS * Remove old references to shlr * Move shlr/heap stuff in core and remove shlr/arm * Move spp to a meson subproject * Remove last references to shlr * Remove use_webui option * Move include files directives to librz/include/meson.build * Move librz meson directives into librz/meson.build * Handle d/ directories inside the specific module meson.build * Move plugins listing to specific module meson.build * Move rzheap to its own subproject * Fix js linter and licenses * Use meson.override_dependency for all rz_ modules
76 lines
1.6 KiB
Groff
76 lines
1.6 KiB
Groff
.Dd Jun 24, 2020
|
|
.Dt RZ_FIND 1
|
|
.Sh NAME
|
|
.Nm rz-find
|
|
.Nd Advanced commandline hexadecimal editor
|
|
.Sh SYNOPSIS
|
|
.Nm rz-find
|
|
.Op Fl ijzZXnrhqv
|
|
.Op Fl b Ar size
|
|
.Op Fl f Ar from
|
|
.Op Fl F Ar file
|
|
.Op Fl t Ar to
|
|
.Op Fl [m|s|e] Ar str
|
|
.Op Fl x Ar hex
|
|
.Ar file|dir
|
|
.Sh DESCRIPTION
|
|
rz-find is a program to find byte patterns into files
|
|
.Pp
|
|
The options are:
|
|
.Bl -tag -width Fl
|
|
.It Fl z
|
|
Search for zero-terminated strings
|
|
.It Fl j
|
|
Output in JSON format
|
|
.It Fl a Ar align
|
|
Only accept aligned hits
|
|
.It Fl s Ar str
|
|
Search for a specific string
|
|
.It Fl S Ar str
|
|
Search for a specific wide string
|
|
.It Fl e Ar regex
|
|
Search for a regular expression string matches
|
|
.It Fl x Ar hex
|
|
Search for an hexpair string
|
|
.It Fl i
|
|
Identify filetype (like file, uses rizin -qcpm)
|
|
.It Fl m
|
|
Carve for known file-types using the r_magic signatures
|
|
.It Fl M Ar mask
|
|
Set binary mask to be applied
|
|
.It Fl f Ar from
|
|
Specify the source adddress
|
|
.It Fl F Ar file
|
|
Read the keyword to search from the contents of the given file
|
|
.It Fl t Ar to
|
|
Specify the target adddress
|
|
.It Fl X
|
|
Display hexdump of search results
|
|
.It Fl Z
|
|
Display zero-terminated strings results
|
|
.It Fl n
|
|
Do not stop the search when a read error occurs
|
|
.It Fl r
|
|
Show output in rizin commands
|
|
.It Fl b Ar size
|
|
Define block size
|
|
.It Fl q
|
|
Quiet mode - do not show headings (filenames) above matching contents (default for searching a single file)
|
|
.It Fl h
|
|
Show help message
|
|
.It Fl v
|
|
Print version and exit
|
|
.El
|
|
.Sh SEE ALSO
|
|
.Pp
|
|
.Xr rizin(1) ,
|
|
.Xr rz-hash(1) ,
|
|
.Xr rz-bin(1) ,
|
|
.Xr rz-diff(1) ,
|
|
.Xr rz-asm(1) ,
|
|
.Xr rz-gg(1) ,
|
|
.Xr rz-run(1) ,
|
|
.Xr rz-ax(1) ,
|
|
.Sh AUTHORS
|
|
.Pp
|
|
pancake <pancake@nopcode.org>
|