/ns

ns - network scanner

Primary LanguageGoMIT LicenseMIT

ns - Network Scanner

ns is a wrapper for nmap, parsing and storing the (nmap) output in a mysql database.

go report card Build Status MIT license GoDoc

Setup

  1. create a database for storing the results
CREATE DATABASE `ns`;
  1. 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'
  ...
  1. build it
make

if not using upx run

make build

Usage

ns uses nmap for scanning. In theory, all nmap arguments/parameters should work.