Last active
April 24, 2024 01:15
-
-
Save jstrosch/317a03ad5cd9772685eb4f2020f4611e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
PCAPFILE=$1 | |
LOG_LOCATION='/tmp/suricata/' | |
if [ -z $PCAPFILE ] || [ ! -f $PCAPFILE ]; then | |
echo "File ${PCAPFILE} doesnt seem to be there - please supply a pcap file." | |
exit 1; | |
fi | |
if [ ! -d "$LOG_LOCATION" ]; then | |
echo "Attempting to create Suricata log directory..." | |
mkdir "$LOG_LOCATION" | |
else | |
echo "Log location exists, removing previous content..." | |
rm -rf "$LOG_LOCATION/"* | |
fi | |
# Run Suricata in offline mode (i.e. PCAP processing) | |
suricata -c /etc/suricata/suricata.yaml -k none -r $1 --runmode=autofp -l "$LOG_LOCATION" | |
#print out alerts | |
echo -e "\nAlerts:\n" | |
grep '"event_type":"alert"' "$LOG_LOCATION/eve.json" |jq '"\(.timestamp) | \(.alert.gid):\(.alert.signature_id):\(.alert.rev) | \(.alert.signature) | \(.alert.category) | \(.src_ip):\(.src_port) -> \(.dest_ip):\(.dest_port)"' | |
# If you have Evebox installed, you can comment out this line to launch it in oneshot mode | |
evebox oneshot "$LOG_LOCATION/eve.json" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment