2018-01-10 09:18:31 +00:00
.Dd Feb 10 , 2018
2014-09-30 09:01:45 +00:00
.Dt RADIFF2 1
2014-09-30 09:37:26 +00:00
.Sh NAME
.Nm RADIFF2
.Nd unified binary diffing utility
2009-04-15 11:09:36 +00:00
.Sh SYNOPSIS
2011-10-20 13:05:30 +00:00
.Nm radiff2
2019-10-24 16:23:03 +00:00
.Op Fl AabcCdDhOrspxXvzZ
2011-12-02 02:43:08 +00:00
.Op Fl t Ar 0 -100
.Op Fl g Ar sym
2016-09-22 18:31:40 +00:00
.Op Fl S Ar algo
2011-12-02 02:43:08 +00:00
.Ar file1
.Ar file2
2009-04-15 11:09:36 +00:00
.Sh DESCRIPTION
2011-10-20 13:05:30 +00:00
radiff2 implements many binary diffing algorithms for data and code.
2009-04-15 11:09:36 +00:00
.Pp
.Bl -tag -width Fl
2016-03-19 01:57:53 +00:00
.It Fl A
Analyze binary after loading it with RCore (see -C) and use -AA to run aaaa instead of aaa.
2014-03-19 09:33:00 +00:00
.It Fl a
Specify architecture (x86, arm, ..)
.It Fl b
Select register size bits for given arch
2018-01-10 09:18:31 +00:00
.It Fl B
Binary output (GDIFF format)
2010-03-12 17:46:11 +00:00
.It Fl c
Count number of differences.
2017-04-10 11:01:42 +00:00
.It Fl e [k=v]
Specify eval config vars for all RCore instances created.
2011-10-20 13:05:30 +00:00
.It Fl C
2017-09-30 09:56:38 +00:00
Code diffing using graphdiff algorithm. Output columns are: file-a-address, percentage of most similar function in B file | file-b-address. (Use with -A to analyze the binaries to find more functions)
2011-12-02 02:43:08 +00:00
.It Fl d
Use delta diffing (slower).
2016-02-15 22:52:12 +00:00
.It Fl D
Show disasm instead of hexpairs (honors -a arch and -b bits)
2014-08-19 00:47:41 +00:00
.It Fl g Ar sym | off1,off2
Graph diff output of given symbol, or between two functions, at given offsets: one for each binary.
2014-05-11 11:22:36 +00:00
.It Fl h
Show usage help message.
2017-01-09 02:18:14 +00:00
.It Fl i
Compare the list of imports
2014-12-26 18:28:55 +00:00
.It Fl n
Suppress address names (show only addresses) when code diffing.
2014-05-11 11:22:36 +00:00
.It Fl O
2021-01-19 01:53:44 +00:00
Do code diffing with opcode bytes only.
2014-05-11 11:22:36 +00:00
.It Fl p
Use physical addressing (io.va=0)
2017-01-09 02:26:07 +00:00
.It Fl q
Quiet mode: disable colors and reduce output
2009-04-15 11:09:36 +00:00
.It Fl r
2010-03-12 17:46:11 +00:00
Output in radare commands as a binary patch.
2016-04-20 23:29:57 +00:00
.It Fl x
Show two column hexdump diffing.
2019-10-24 16:23:03 +00:00
.It Fl X
Show two column hexII diffing.
2011-12-02 02:43:08 +00:00
.It Fl s
2021-01-24 21:17:25 +00:00
Compute edit distance (no substitution, Eugene W. Myers' O(ND) diff algorithm) between two files.
2016-09-21 10:07:44 +00:00
.It Fl ss
2021-01-24 21:17:25 +00:00
Compute Levenshtein edit distance (substitution is allowed, O(N^2)) between two files.
2016-09-22 18:31:40 +00:00
.It Fl S Ar [name, namelen, dist, size, ...]
Specify which column of the code diffing algo use for diffing
2014-05-11 11:22:36 +00:00
.It Fl t Ar 0 \- 100
Choose matching threshold for binary code diffing
2017-01-09 02:18:14 +00:00
.It Fl u
Unified diff output
.It Fl U
Unified diff output using system\' s diff program
2011-12-02 02:43:08 +00:00
.It Fl v
2010-03-12 17:46:11 +00:00
Show version information.
2016-05-25 07:07:23 +00:00
.It Fl V
Be verbose sometimes
2017-01-08 23:03:42 +00:00
.It Fl z
Perform diff on extracted strings
2019-04-05 13:34:43 +00:00
.It Fl Z
Perform diff using zignatures instead of function list (NEW)
2010-03-15 16:15:48 +00:00
.El
2009-04-15 11:09:36 +00:00
.Sh SEE ALSO
.Pp
2010-03-12 17:46:11 +00:00
.Xr radare2(1) ,
2010-06-18 15:52:30 +00:00
.Xr rafind2(1) ,
2010-03-12 17:46:11 +00:00
.Xr rahash2(1) ,
.Xr rabin2(1) ,
.Xr rasm2(1) ,
2011-10-12 01:24:19 +00:00
.Xr ragg2(1) ,
.Xr rarun2(1) ,
2010-03-12 17:46:11 +00:00
.Xr rax2(1) ,
2009-04-15 11:09:36 +00:00
.Sh AUTHORS
.Pp
2013-11-11 11:00:39 +00:00
pancake <pancake@nopcode.org>