URI: 
       Add README - warvox - VoIP based wardialing tool, forked from rapid7/warvox.
   DIR Log
   DIR Files
   DIR Refs
   DIR README
       ---
   DIR commit ddd88952005ddac3a20136ad2c25f809af657eb9
   DIR parent 2520095f985708dc1d7e66b612d1dd7009108c4b
  HTML Author: HD Moore <hd_moore@rapid7.com>
       Date:   Sat, 13 Apr 2013 15:17:18 -0500
       
       Add README
       
       Diffstat:
         A README.md                           |      63 +++++++++++++++++++++++++++++++
       
       1 file changed, 63 insertions(+), 0 deletions(-)
       ---
   DIR diff --git a/README.md b/README.md
       @@ -0,0 +1,62 @@
       +WarVOX
       +
       +==
       +WarVOX is released under a BSD-style license. See docs/LICENSE for more details.
       +
       +The latest version of this software is available from http://github.com/rapid7/warvox/
       +
       +Questions and suggestions can be sent to:
       + hdm(at)rapid7.com
       +
       +Installing
       +--
       +WarVOX 2.0.0 is still in development and the installation process is not ideal at the moment.
       +
       +WarVOX requires a Linux operating system, preferably Ubuntu or Debian, but Kali should work as well.
       +
       +WarVOX requires PostgreSQL 9.1 or newer with the "contrib" package installed for integer array support.
       +
       +To get started, install the OS-level dependencies:
       +
       +        $ sudo apt-get install gnuplot lame build-essential libssl-dev libcurl-openssl-dev postgresql postgresql-contrib git-core curl
       +
       +Clone this repository to the location you want to install WarVOX:
       +
       +        $ git clone git://github.com/rapid7/warvox.git /home/warvox
       +
       +Install RVM to obtain Ruby 1.9.3 or later
       +
       +        $ \curl -L https://get.rvm.io | bash -s stable --autolibs=3 --rails
       +
       +Configure WarVOX:
       +
       +        $ cd /home/warvox
       +        $ make
       +
       +Configure the PostgreSQL account for WarVOX:
       +
       +        $ sudo su - postgres
       +        $ createuser warvox
       +        $ createdb warvox -O warvox
       +        $ psql
       +        psql> alter user warvox with password 'randompass';
       +        psql> exit
       +
       +Copy the example database configuration to database.yml:
       +
       +        $ cp config/database.yml.example config/database.yml
       +
       +Modify config/database.yml to include the password set previously
       +
       +Initialize the WarVOX database:
       +        $ make database
       +
       +Add an admin account to WarVOX
       +        $ bin/adduser admin
       +
       +Start the WarVOX daemons:
       +        $ bin/warvox.rb 
       +
       +Access the web interface at http://127.0.0.1:7777/
       +
       +At this point you can configure a new IAX2 provider, create a project, and start making calls.
       +\ No newline at end of file