ns - Network Scanner
ns is a wrapper for nmap, parsing and storing the (nmap) output in a mysql database.
Setup
- create a database for storing the results
CREATE DATABASE `ns`;
- add your database login/password (and database name) to config.yml file
database:
login: 'DB_LOGIN'
password: 'DB_PASSWORD'
host: '127.0.0.1'
port: '3306'
name: 'ns'
...
- build it
make
if not using upx run
make build
Usage
ns uses nmap for scanning. In theory, all nmap arguments/parameters should work.