- ronin.rubyforge.org
- github.com/ronin-ruby/ronin
- github.com/ronin-ruby/ronin/issues
- groups.google.com/group/ronin-ruby
- irc.freenode.net #ronin
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.
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.
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.
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.
- Supports installing/updating/uninstalling of Overlays.
- Supports accessing Overlays from various media types:
- Allows for the loading of Extensions from one or more Overlays.
- Provides Object Database using DataMapper
with:
- {Ronin::Author}
- {Ronin::License}
- {Ronin::Arch}
- {Ronin::OS}
- {Ronin::Software}
- {Ronin::Vendor}
- {Ronin::Address}
- {Ronin::MACAddress}
- {Ronin::IPAddress}
- {Ronin::HostName}
- {Ronin::Port}
- {Ronin::TCPPort}
- {Ronin::UDPPort}
- {Ronin::Service}
- {Ronin::OpenPort}
- {Ronin::OSGuess}
- {Ronin::UserName}
- {Ronin::URL}
- {Ronin::EmailAddress}
- {Ronin::Credential}
- {Ronin::ServiceCredential}
- {Ronin::WebCredential}
- {Ronin::Organization}
- {Ronin::Campaign}
- {Ronin::Target}
- Caches and mirrors Objects stored in Overlays using DataMapper.
- Convenience methods provided by ronin-support.
- Provides a customized Ruby Console with:
- Tab-completion enabled.
- Auto-indentation enabled.
- Pretty-Print loaded.
print_info
,print_error
,print_warning
andprint_debug
output helper methods with color-output.
- Provides an extendable command-line interface based on Thor.
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
List available Databases:
$ ronin database
Add a new Database:
$ ronin database --add team --uri mysql://user:[email protected]/db
Remove a Database:
$ ronin database --remove team
Start the Ronin console:
$ ronin
View available commands:
$ ronin help
- Ruby >= 1.8.7
- ActiveSupport >= 3.0.0
- DataMapper:
- dm-do-adapter ~> 1.0.2
- dm-sqlite-adapter ~> 1.0.2
- dm-core ~> 1.0.2
- dm-types ~> 1.0.2
- dm-migrations ~> 1.0.2
- dm-validations ~> 1.0.2
- dm-aggregates ~> 1.0.2
- dm-timestamps ~> 1.0.2
- dm-tags ~> 1.0.2
- dm-is-predefined ~> 0.3.0
- nokogiri ~> 1.4.1
- uri-query_params ~> 0.4.0
- open_namespace ~> 0.3.0
- parameters ~> 0.2.2
- data_paths ~> 0.2.1
- contextify ~> 0.1.6
- pullr ~> 0.1.2
- thor ~> 0.14.0
- ronin-support ~> 0.1.0
$ sudo gem install ronin
Ronin ASM is a Ruby library for Ronin that provides dynamic Assembly (ASM) generation of programs or shellcode.
Ronin Dorks is a Ruby library for Ronin that provides support for various Google (tm) Dorks functionality.
Ronin Exploits is a Ruby library for Ronin that provides exploitation and payload crafting functionality.
Ronin Gen is a Ruby library for Ronin that provides various generators.
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 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 is a Ruby library for Ronin that provides support for web scraping and spidering functionality.
Ronin - A Ruby platform for exploit development and security research.
Copyright (c) 2006-2010 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