public
Description: A Ruby library for Ronin that provides a Ruby interface to various third-party security scanners.
Homepage: http://ronin.rubyforge.org/scanners/
Clone URL: git://github.com/postmodern/ronin-scanners.git
name age message
file .gitignore Tue Aug 18 00:06:24 -0700 2009 Added the YARD documentation generation task. [postmodern]
file COPYING.txt Sat Dec 06 01:21:54 -0800 2008 Added the basic project files. [postmodern]
file History.txt Thu Jul 02 11:14:51 -0700 2009 Updated the History file for ronin-scanners 0.1.4. [postmodern]
file Manifest.txt Wed Oct 28 20:16:12 -0700 2009 Added a Database spec helper. [postmodern]
file README.txt Tue Oct 20 21:41:54 -0700 2009 Updated the list of URLs in the README file. [postmodern]
file Rakefile Wed Nov 25 02:00:15 -0800 2009 Require yard >= 0.4.0. [postmodern]
directory bin/ Sun Aug 30 20:54:13 -0700 2009 Call #start to run a command. [postmodern]
directory lib/ Sat Sep 26 19:03:19 -0700 2009 Added @see tags to the NiktoTask and NmapTask. [postmodern]
directory spec/ Wed Oct 28 20:16:12 -0700 2009 Added a Database spec helper. [postmodern]
directory tasks/ Wed Nov 25 02:00:15 -0800 2009 Require yard >= 0.4.0. [postmodern]
README.txt
= Ronin Scanners

* http://ronin.rubyforge.org/scanners/
* http://github.com/postmodern/ronin-scanners
* http://github.com/postmodern/ronin-scanners/issues
* http://groups.google.com/group/ronin-ruby
* irc.freenode.net #ronin

== DESCRIPTION:

Ronin Scanners is a Ruby library for Ronin that provides Ruby interfaces to
various third-party security scanners.

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/PROBLEMS:

* Provides a Rubyful interface to Nmap.
* Allows for recording of Nmap scan results using ScanDB.
* Provides a Rubyful interface to Nikto.

== SYNOPSIS:

* Start the Ronin console with Ronin Scanners preloaded:

    $ ronin-scanners

== EXAMPLES:

* Calling Nmap from Ruby:

    require 'ronin/scanners/nmap'
  
    Scanners::Nmap.scan(:targets => 'www.google.com', :ports => [80,21,25], :service_scan => true)
    # Starting Nmap 4.68 ( http://nmap.org ) at 2009-01-09 16:51 PST
    # Interesting ports on mh-in-f99.google.com (209.85.173.99):
    # PORT   STATE    SERVICE VERSION
    # 21/tcp filtered ftp
    # 25/tcp filtered smtp
    # 80/tcp open     http    Google httpd 1.3 (GFE)
    # Service Info: OS: Linux
    #
    # Service detection performed. Please report any incorrect results at http://nmap.org/submit/ .
    # Nmap done: 1 IP address (1 host up) scanned in 11.627 seconds
    # => nil

* Calling Nikto from Ruby:

    require 'ronin/scanners/nikto'
    
    Scanners::Nikto.scan(:host => 'www.example.com')

== REQUIREMENTS:

* {scandb}[http://scandb.rubyforge.org/] >= 0.1.3
* {rprogram}[http://rprogram.rubyforge.org/] >= 0.1.7
* {ronin}[http://ronin.rubyforge.org/] >= 0.3.0

== INSTALL:

  $ sudo gem install ronin-scanners

== LICENSE:

Ronin Scanners - A Ruby library for Ronin that provides Ruby interfaces to
various third-party security scanners.

Copyright (c) 2008-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