mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-14 03:59:33 +00:00
Update cheatsheets
This commit is contained in:
29
snort
Normal file
29
snort
Normal file
@@ -0,0 +1,29 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# 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}}`
|
||||
Reference in New Issue
Block a user