This file is indexed.

/usr/share/doc/radare-doc/html/Section1.2.html is in radare-doc 1:1.5.2-4.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=US-ASCII">
<title>Overview</title>
<link rel="previous" href="Section1.1.html">
<link rel="ToC" href="contents.html">
<link rel="next" href="Section1.3.html">
</head>
<body>
<h1><a name="overview"></a>1.2 Overview</h1>
<p>
Nowadays the project is composed by a set of small utilities that can be used together or independently from the command line:
</p>
<pre><code>radare
</code></pre>
<p>
The core of the hexadecimal editor and debugger. Allows to open any kind of file from different IO access like disk, network, kernel plugins, remote devices, debugged processes, ... and handle any of them as if they were a simple plain file.
</p>
<p>
Implements an advanced command line interface for moving around the file, analyzing data, disassembling, binary patching, data comparision, searching, replacing, scripting with ruby, python, lua and perl, ...
</p>
<pre><code>rabin
</code></pre>
<p>
Extracts information from executable binaries like ELF, PE, Java CLASS, MACH-O. It's used from the core to get exported symbols, imports, file information, xrefs, library dependencies, sections, ...
</p>
<pre><code>rasm
</code></pre>
<p>
Commandline assembler and disassembler for multiple architectures (intel[32,64], mips, arm, powerpc, java, msil, ...)
</p>
<pre><code>$ rasm -a java 'nop'
00
$ rasm -a x86 -d '90'
nop
</code></pre>
<pre><code>rasc
</code></pre>
<p>
Small utility to prepare buffers or shellcodes for exploiting vulnerabilities. It has an internal hardcoded database of shellcodes and a syscall-proxy interface with some nice helpers like fill-with nops, breakpoints, series of values to find the landing point, etc..
</p>
<pre><code>rahash
</code></pre>
<p>
Implementation of a block-based rahash for small text strings or large disks, supporting multiple algorithms like md4, md5, crc16, crc32, sha1, sha256, sha384, sha512, par, xor, xorpair, mod255, hamdist or entropy.
</p>
<p>
It can be used to check the integrity or track changes between big files, memory dumps or disks.
</p>
<pre><code>radiff
</code></pre>
<p>
Binary diffing utility with multiple algorithms implemented inside. Supports byte-level or delta diffing for binary files and code-analysis diffing to find changes in basic code blocks from radare code analysis or IDA ones using the idc2rdb rsc script.
</p>
<pre><code>rsc
</code></pre>
<p>
Entrypoint for calling multiple small scripts and utilities that can be used from the shell.
</p>

<!-- version IDs:
$Id: radare.but 2009-04-25 pancake $
-->
</body>
</html>