mirror of
https://github.com/BlackLight/Snort_AIPreproc.git
synced 2024-11-14 12:47:16 +01:00
8 lines
122 B
Python
8 lines
122 B
Python
#!/usr/bin/python
|
|
|
|
import snortai
|
|
|
|
alerts = snortai.alerts()
|
|
|
|
for alert in alerts:
|
|
print alert.gid, alert.sid, alert.rev
|