Snort_AIPreproc/pymodule
BlackLight 95db8a6486 Python support added 2011-02-03 01:01:36 +01:00
..
README Python support added 2011-02-03 01:01:36 +01:00
module.py Python support added 2011-02-03 01:01:36 +01:00
setup.py Python support added 2011-02-03 01:01:36 +01:00
snortai_module.c Python support added 2011-02-03 01:01:36 +01:00

README

Python module for interfacing with SnortAI. Compile it and install it through

$ python setup.py build
$ [sudo] python setup.py install

You can then access the alerts information captured by Snort simply by writing a
code like the following (also see module.py):

import snortai

alerts = snortai.alerts()

for alert in alerts:
	# Access the information

The alert class has the following members:

# id, gid, sid, rev, description, priority, classification, timestamp
# from, to, from_port, to_port, latitude, longitude, alerts_count