Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

pads(8) [debian man page]

PADS(8) 						      System Manager's Manual							   PADS(8)

NAME
pads - Passive Asset Detection System SYNOPSIS
pads <DhUvV> <-c file > <-d file > <-g group > <-i interface > <-n network(s) > <-p file > <-r file > <-u file > <-w file > <expression> DESCRIPTION
PADS is a libpcap based detection engine used to passively detect network assets. It is designed to complement IDS technology by providing context to IDS alerts. Goals: - Passive: Records and identifies traffic seen on a network without actively "scanning" a system. There will never be a packet sent from the pads application. - Portable: Has the ability to be placed easily on a remote system. Does not require additional external libraries other than those associated with libpcap. - Lightweight: Logging is sent to a simple CSV file. There is no need for a database or other data repository installed on the local machine. All correlation is done outside of the pads program. OPTIONS
-h Display help / usage information. -D Run PADS in the background (daemon mode). -d file Dump banner data into a libpcap formatted file. This feature will dump the matched packet or the first 4 packets of an unmatched connection into a specified file. This can be used to further identify a service and also aid with signature development. Please keep in mind that this feature must be compiled into the application in order to use it. This can be done by adding '--enable-banner-grab' to the 'configure' step. -g group This switch allows you to specify a group that PADS will drop to after the libpcap interface has been initialized. -h Display help -i interface Specify an interface to be used. -n network list Specify a set of networks to be monitored. Only assets that exist within these networks will be recorded. The networks should be specified in the following format: 10.10.10.0/24,192.168.0.0/16 . -p pid file This switch allows you to specify a PID file to be used in conjunction with daemon (-D) mode. -r file Read packets from a libpcap formatted file. -u user This switch allows you to specify a user that PADS will drop to after the libpcap interface has been initialized. -w file Dump data into a file other than assets.csv. expression selects which packets will be processed. Please see tcpdump(1) for details on the libpcap primitives. SEE ALSO
pads.conf(8), pads-report(8), pads-archiver(8), tcpdump(8), pcre(3) COPYRIGHT
Copyright (C) 2004 Matt Shelton <matt@mattshelton.com> BUGS
Please send bug reports to the author. AUTHORS
Matt Shelton <matt@mattshelton.com> 2005/06/17 PADS(8)

Check Out this Related Man Page

pads.conf(8)						      System Manager's Manual						      pads.conf(8)

NAME
pads.conf - pads configuration file DESCRIPTION
This man page describes the format of the pads(8) configuration file. Empty lines and lines beginning with '#' are ignored. PARAMETERS
daemon [0/1] his parameter determines whether the application will go into the background. 0 = Disable, 1 = Enable pid_file <file> Filename of the pads PID file. This value should be set if you are planning on using daemon mode. sig_file <file> Alternate location for the pads-signature-list file. mac_file <file> Alternate location for the pads-ether-codes file. user <username> This is the name of the user pads will run as when started as root. group <groupname> This is the name of the group pads will run as when started as root. interface <interface> This contains the name of the interface PADS will listen to. filter <filter> This value contains a libpcap filter to be applied to the PADS session. For example, to filter only SSH traffice, specify "filter 'port 22'". network <network> This string contains a comma seperated list of networks to be monitored. Only assets found in these networks will be recorded. For example, "network 192.168.0.0/24,192.168.1.0/24,10.10.10.0/24". output screen This output plugin displays PADS data to the screen. When using the configuration file, it defaults to off. output csv: <filename> This output plugin writes PADS data to a CSV file. Optionally, a CSV filename can be specified as an argument. output fifo: <filename> This output plugin writes PADS data to a FIFO file. Optionally, a FIFO filename can be specified as an argument. SEE ALSO
pads(8) COPYRIGHT
Copyright (C) 2005 Matt Shelton <matt@mattshelton.com> BUGS
Please send bug reports to the author. AUTHORS
Matt Shelton <matt@mattshelton.com> 2005/06/17 pads.conf(8)
Man Page