mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-14 00:38:55 +00:00
affbba8aa2
- Moved into binr/rarc2 - Integrated with symstall - rarc2-tool now support -xc and -cx combo - Add rarc2.1 manpage * Add some bugs to review in TODO --HG-- rename : r2rc/Makefile => binr/rarc2/Makefile rename : r2rc/README => binr/rarc2/README rename : r2rc/TODO => binr/rarc2/TODO rename : r2rc/emit_arm.c => binr/rarc2/emit_arm.c rename : r2rc/emit_x64.c => binr/rarc2/emit_x64.c rename : r2rc/emit_x86.c => binr/rarc2/emit_x86.c rename : r2rc/i/libc.r => binr/rarc2/i/libc.r rename : r2rc/i/socket.r => binr/rarc2/i/socket.r rename : r2rc/out.c => binr/rarc2/out.c rename : r2rc/r2rc-tool => binr/rarc2/rarc2-tool rename : r2rc/r2rc.c => binr/rarc2/rarc2.c rename : r2rc/rcc.h => binr/rarc2/rarc2.h rename : r2rc/t/Makefile => binr/rarc2/t/Makefile rename : r2rc/t/argv.r => binr/rarc2/t/argv.r rename : r2rc/t/bytedump.r => binr/rarc2/t/bytedump.r rename : r2rc/t/data.r => binr/rarc2/t/data.r rename : r2rc/t/dump.r => binr/rarc2/t/dump.r rename : r2rc/t/hello.r => binr/rarc2/t/hello.r rename : r2rc/t/if.r => binr/rarc2/t/if.r rename : r2rc/t/inline.r => binr/rarc2/t/inline.r rename : r2rc/t/input.r => binr/rarc2/t/input.r rename : r2rc/t/loop.r => binr/rarc2/t/loop.r rename : r2rc/t/ptr.r => binr/rarc2/t/ptr.r rename : r2rc/t/rawsys.r => binr/rarc2/t/rawsys.r rename : r2rc/t/rawsys64.r => binr/rarc2/t/rawsys64.r rename : r2rc/t/regs.r => binr/rarc2/t/regs.r rename : r2rc/t/ret.r => binr/rarc2/t/ret.r rename : r2rc/t/room.r => binr/rarc2/t/room.r rename : r2rc/t/segfault.r => binr/rarc2/t/segfault.r rename : r2rc/t/shell.r => binr/rarc2/t/shell.r rename : r2rc/t/sub.r => binr/rarc2/t/sub.r rename : r2rc/t/syscall.r => binr/rarc2/t/syscall.r rename : r2rc/test.r => binr/rarc2/test.r
53 lines
927 B
Groff
53 lines
927 B
Groff
.Dd Jun 18, 2010
|
|
.Dt RAFIND2 1
|
|
.Os
|
|
.Sh NAME
|
|
.Nm rafind2
|
|
.Nd Advanced commandline hexadecimal editor
|
|
.Sh SYNOPSIS
|
|
.Nm rafind2
|
|
.Op Fl Xnzh
|
|
.Op Fl f Ar from
|
|
.Op Fl t Ar to
|
|
.Op Fl s Ar str
|
|
.Op Fl x Ar hex
|
|
.Ap file
|
|
.Sh DESCRIPTION
|
|
rafind2 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 X
|
|
Display hexdump of search results
|
|
.It Fl n
|
|
Do not stop the search when a read error occurs
|
|
.It Fl r
|
|
Show output in radare commands
|
|
.It Fl b
|
|
Define block size
|
|
.It Fl s Ar str
|
|
Search for a specific string
|
|
.It Fl m Ar mask
|
|
Set binary mask to be applied
|
|
.It Fl x Ar hex
|
|
Search for an hexpair string
|
|
.It Fl f Ar from
|
|
Specify the source adddress
|
|
.It Fl t Ar to
|
|
Specify the target adddress
|
|
.El
|
|
.Sh SEE ALSO
|
|
.Pp
|
|
.Xr radare2(1) ,
|
|
.Xr rahash2(1) ,
|
|
.Xr rabin2(1) ,
|
|
.Xr radiff2(1) ,
|
|
.Xr rasm2(1) ,
|
|
.Xr rarc2(1) ,
|
|
.Xr rax2(1) ,
|
|
.Sh AUTHORS
|
|
.Pp
|
|
pancake <@nopcode.org>
|