| Add README - warvox - VoIP based wardialing tool, forked from rapid7/warvox. | |
| Log | |
| Files | |
| Refs | |
| README | |
| --- | |
| commit ddd88952005ddac3a20136ad2c25f809af657eb9 | |
| parent 2520095f985708dc1d7e66b612d1dd7009108c4b | |
| Author: HD Moore <[email protected]> | |
| Date: Sat, 13 Apr 2013 15:17:18 -0500 | |
| Add README | |
| Diffstat: | |
| A README.md | 63 +++++++++++++++++++++++++++++… | |
| 1 file changed, 63 insertions(+), 0 deletions(-) | |
| --- | |
| 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 detail… | |
| + | |
| +The latest version of this software is available from http://github.com/rapid7… | |
| + | |
| +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… | |
| + | |
| +WarVOX requires a Linux operating system, preferably Ubuntu or Debian, but Kal… | |
| + | |
| +WarVOX requires PostgreSQL 9.1 or newer with the "contrib" package installed f… | |
| + | |
| +To get started, install the OS-level dependencies: | |
| + | |
| + $ sudo apt-get install gnuplot lame build-essential libssl-dev libcurl… | |
| + | |
| +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 sta… | |
| +\ No newline at end of file |