Man Pages

Here are the links to the three man pages included in PBNJ.

ScanPBNJ.1 - a program for running Nmap scans and storing the results in a PBNJ 2.0 database.

OutputPBNJ.1 - a program to query a PBNJ 2.0 database.

Genlist.1 - ping scanner

Back to Top

Install Notes

Quick Install - simply run from this directory

To Install PBNJ Properly ( make sure you have the needed deps)

perl Makefile.PL
make
make test
** Then as root **
make install

You will need to install the following modules for PBNJ 2.0 to work

YAML
DBI
DBD::SQLite
XML::Twig
Nmap::Parser
File::Which
Text::CSV_XS
File::HomeDir

Also, you will need Nmap (any version will do)

To install a module using CPAN

$ sudo cpan

# make sure you have the latest version of CPAN installed
cpan> install CPAN
cpan> install Bundle::CPAN

# then when you see the cpan> prompt type install and the name of
# the module

cpan> install Nmap::Parser

cpan> install File::HomeDir

Back to Top

Connecting to an Alternative Database

PBNJ using Postgres Backend

PBNJ using MySQL Backend

Back to Top

FAQ

1) I'm getting this error message: closing dbh with active statement handles at /usr/bin/outputpbnj line 955.

This is actually an issue with one of the modules PBNJ is using. The quick fix is to simply comment out that line. A patch is going to applied to the next version to fix this issue.

Back to Top

Configuration

PBNJ's data files are stored in ScanPBNJ and OutputPBNJ. When either of these programs is run the configuration files will be generated for the user if they don't already exists and placed in the $HOME/.pbnj-2.0 directory. Again, if there is a configuration file in the current directory it is used instead of the version in the configuration directory.

$HOME/.pbnj-2.0/config.yaml - holds settings for connecting to the database which store the information from PBNJ scans.

$HOME/.pbnj-2.0/query.yaml - lists all queries that can be used to retrieve information from the database. Also, includes the name and description for each query. This is only generated when you executed OutputPBNJ.

For Windows, the pbnj-2.0 config directory is in the APPDATA directory, which contains both config.yaml and query.yaml. Depending on your environment, the APPDATA directory may be a different location from other environments. Therefore, when the configs are executed for the first time they will display the path where the configs were generated.

Back to Top