måndag, maj 21, 2007

PADS - Passive Asset Detection System

"..It will listen to a network and attempt to provide an up-to-date look at the hosts and services running on the network."

http://passive.sourceforge.net/

Simple to run, maybe nohup or screen. Why not rc.d :)

- - -

$cat pads.em0

#!/bin/sh
#A small PADS script, change values to match enviroment
#Define interface we use
INTERFACE=em0
#Define main directory we use, each interface gets a directory within
DIRECTORY=/nsm/pads
#Define local path to our binary
BINARY=/usr/local/bin/pads
#Define output
OUTPUT=assets.csv

$BINARY -D -i $INTERFACE -w $DIRECTORY/$INTERFACE/$OUTPUT

- - -