snort: add page (#10018)

pull/23/head
Seth Falco 2023-04-08 14:49:46 +01:00 committed by GitHub
parent eebdfeb212
commit 0fdfd4cf4e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 24 additions and 0 deletions

24
pages/common/snort.md Normal file
View File

@ -0,0 +1,24 @@
# snort
> Open-source network intrusion detection system.
> More information: <https://www.snort.org/#documents>.
- Capture packets with verbose output:
`sudo snort -v -i {{interface}}`
- Capture packets and dump application layer data with verbose output:
`sudo snort -vd -i {{interface}}`
- Capture packets and display link layer packet headers with verbose output:
`sudo snort -ve -i {{interface}}`
- Capture packets and save them in the specified directory:
`sudo snort -i {{interface}} -l {{path/to/directory}}`
- Capture packets according to rules and save offending packets along with alerts:
`sudo snort -i {{interface}} -c {{path/to/rules.conf}} -l {{path/to/directory}}`