public
Description: Ronin is a Ruby platform for exploit development and security research. Ronin allows for the rapid development and distribution of code, exploits or payloads over many common Source-Code-Management (SCM) systems.
Homepage: http://ronin.rubyforge.org/
Clone URL: git://github.com/postmodern/ronin.git
ronin / README.txt
100644 207 lines (148 sloc) 5.801 kb
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
= Ronin
 
* http://ronin.rubyforge.org
* http://github.com/postmodern/ronin
* http://github.com/postmodern/ronin/issues
* http://groups.google.com/group/ronin-ruby
* irc.freenode.net #ronin
 
== DESCRIPTION:
 
Ronin is a Ruby platform for exploit development and security research.
Ronin allows for the rapid development and distribution of code, exploits
or payloads over many common Source-Code-Management (SCM) systems.
 
=== Ruby
 
Ronin's Ruby environment allows security researchers to leverage Ruby with
ease. The Ruby environment contains a multitude of convenience methods
for working with data in Ruby, a Ruby Object Database, a customized Ruby
Console and an extendable command-line interface.
 
=== Extend
 
Ronin's more specialized features are provided by additional Ronin
libraries, which users can choose to install. These libraries can allow
one to write and run Exploits and Payloads, scan for PHP vulnerabilities,
perform Google Dorks or run 3rd party scanners.
 
=== Publish
 
Ronin allows users to publish and share code, exploits, payloads or other
data via Overlays. Overlays are directories of code and data that can be
hosted on any SVN, Hg, Git or Rsync server. Ronin makes it easy to create,
install or update Overlays.
 
== FEATURES:
 
* Supports installing/updating/uninstalling of Overlays.
  * Supports accessing Overlays from various media types:
    * Subversion (SVN)
    * Mercurial (Hg)
    * Git
    * Rsync
* Allows for the loading of Extensions from one or more Overlays.
* Provides Object Database using DataMapper.
* Caches and mirrors Objects stored in Overlays using DataMapper.
* Provides convenience methods for:
  * Formatting data:
    * Binary
    * Text
    * HTTP
    * URIs
  * Generating random text.
  * Networking:
    * TCP
    * UDP
    * SMTP / ESMTP
    * POP3
    * Imap
    * Telnet
    * HTTP / HTTPS
  * Enumerating IP ranges:
    * IPv4 / IPv6 addresses.
    * CIDR / globbed ranges.
  * (Un-)Hexdumping data.
  * Handling exceptions.
* Provides a customized Ruby Console with:
  * Tab-completion enabled.
  * Auto-indentation enabled.
  * Pretty-Print loaded.
  * print_info, print_error, print_warning and print_debug output helper
    methods with color-output.
* Provides an extendable command-line interface based on Thor.
 
== SYNOPSIS:
 
* Install an Overlay:
 
    $ ronin install svn://example.com/path/to/overlay
 
* List installed Overlays:
 
    $ ronin list
 
* Update all installed Overlays:
 
    $ ronin update
 
* Update a specific Overlay:
 
    $ ronin update overlay-name
 
* Uninstall an Overlay:
 
    $ ronin uninstall overlay-name
 
* Start the Ronin console:
 
    $ ronin
 
* View available commands:
 
    $ ronin help
 
== REQUIREMENTS:
 
* {yard}[http://yard.soen.ca/] >= 0.2.3.5
* {nokogiri}[http://nokogiri.rubyforge.org/] >= 1.3.3
  * {libxml2}[http://xmlsoft.org/]
  * {libxslt1}[http://xmlsoft.org/XSLT/]
* {DataMapper}[http://datamapper.org/]:
  * extlib >= 0.9.13
  * dm-core >= 0.10.0
  * data_objects >= 0.10.0
  * do_sqlite3 >= 0.10.0
    * {libsqlite3}[http://sqlite.org/]
  * dm-types >= 0.10.0
  * dm-validations >= 0.10.0
* {dm-predefined}[http://dm-predefined.rubyforge.org/] >= 0.2.0
* {chars}[http://chars.rubyforge.org/] >= 0.1.2
* {parameters}[http://parameters.rubyforge.org/] >= 0.1.8
* {contextify}[http://contextify.rubyforge.org/] >= 0.1.3
* {reverse-require}[http://reverserequire.rubyforge.org/] >= 0.3.1
* thor >= 0.11.5
 
== INSTALL:
 
  $ sudo gem install ronin
 
== RONIN LIBRARIES:
 
=== Ronin ASM
 
* http://ronin.rubyforge.org/asm/
* http://github.com/postmodern/ronin-asm
 
Ronin ASM is a Ruby library for Ronin that provides dynamic Assembly (ASM)
generation of programs or shellcode.
 
=== Ronin Dorks
 
* http://ronin.rubyforge.org/dorks/
* http://github.com/postmodern/ronin-dorks
 
Ronin Dorks is a Ruby library for Ronin that provides support for various
Google (tm) Dorks functionality.
 
=== Ronin Exploits
 
* http://ronin.rubyforge.org/exploits/
* http://github.com/postmodern/ronin-exploits
 
Ronin Exploits is a Ruby library for Ronin that provides exploitation and
payload crafting functionality.
 
=== Ronin Gen
 
* http://ronin.rubyforge.org/gen/
* http://github.com/postmodern/ronin-gen
 
Ronin Gen is a Ruby library for Ronin that provides various generators.
 
=== Ronin SQL
 
* http://ronin.rubyforge.org/sql/
* http://github.com/postmodern/ronin-sql
 
Ronin SQL is a Ruby library for Ronin that provids support for SQL related
security tasks, such as scanning for and exploiting SQL injections.
 
=== Ronin PHP
 
* http://ronin.rubyforge.org/php/
* http://github.com/postmodern/ronin-php
 
Ronin PHP is a Ruby library for Ronin that provides support for PHP related
security tasks, such as finding and exploiting Local File Inclusion (LFI)
and Remote File Inclusion (RFI).
 
=== Ronin Web
 
* http://ronin.rubyforge.org/web/
* http://github.com/postmodern/ronin-web
 
Ronin Web is a Ruby library for Ronin that provides support for web
scraping and spidering functionality.
 
== LICENSE:
 
Ronin - A Ruby platform for exploit development and security research.
 
Copyright (c) 2006-2009 Hal Brodigan (postmodern.mod3 at gmail.com)
 
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
 
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
 
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA