Note:
The ronin-db asn
command provides an --update
option which will download
or update the ASN list file and populates the Ronin ASNs table.
ronin-db provides access to a built-in pre-configured database for storing common security data. Using ronin-db you can query and manage:
Many of the ronin-db sub-commands that support querying the
database tables also provide an --add
option which parses and adds a single
value to the table.
ronin-db ips --add 192.168.1.1
ronin-db hosts --add www.example.com
ronin-db urls --add "https://www.example.com/page?id=1"
ronin-db emails --add john.smith@example.com
ronin-db creds --add jsmith:s3r3t
Many of the ronin-db sub-commands that support querying the
database tables also provide an --import
option, that will parse and import
each line of a .txt
file.
ronin-db ips --import targets.txt
ronin-db hosts --import hosts.txt
ronin-db urls --import urls.txt
ronin-db emails --import emails.txt
ronin-db creds --import usernames_and_passwords.txt
ronin-db provides sub-commands for querying the various database tables.
ronin-db ips --with-port 80
ronin-db hosts --domain example.com
ronin-db email --with-host example.com
ronin-db urls --with-query-param id
ronin-db creds --for-user bob
See the command’s --help
output for a complete list of their options.
Many of the ronin-db sub-commands also provide a --delete
option for deleting a specific value.
ronin-db ips --delete 192.168.1.1
ronin-db hosts --delete www.example.com
ronin-db urls --delete "https://www.example.com/page?id=1"
ronin-db emails --delete john.smith@example.com
ronin-db creds --delete jsmith:s3r3t
These ronin-db sub-commands also provide a --delete-all
option which deletes every value.
Other pre-existing databases can be added to the
~/.config/ronin-db/database.yml
configuration file.
# Add a sqlite3 database
ronin-db add other_db --sqlite3 path/to/db.sqlite3
# Add a postgres database
ronin-db add other_db --postgres --host example.com --port 5432 --username ronin --password s3r3t --database ronin_db
# Add a MySQL database
ronin-db add other_db --mysql2 --host example.com --port 3306 --username ronin --password s3r3t --database ronin_db
Once a database is added to the ~/.config/ronin-db/database.yml
configuration
file, it can be accessed by the other ronin-db sub-commands
by specifying the --db NAME
option.
ronin-db ips --db other_db
Databases can be listed using the ronin-db list
command and removed using
ronin-db remove
command.
If a new version of ronin-db-activerecord is released which changes the
database schema, you can run ronin-db migrate
to apply any pending database
changes.
ronin-db migrate