Created
April 1, 2020 17:40
-
-
Save Zobber/76b72d1f4c931e7de786a319766b9896 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
######################################################################## | |
https://kifarunix.com/install-and-setup-suricata-on-ubuntu-18-04/ | |
https://hackertarget.com/install-suricata-ubuntu-5-minutes/ | |
https://fwhibbit.es/suricata-ids-jugando-con-las-reglas | |
######################################################################## | |
## execute | |
suricata -c /etc/suricata/suricata.yaml -i <network interface> | |
## Scan a PCAP file | |
sudo suricata -c /etc/suricata/suricata.yaml -r ~/enternalblue.pcap | |
## View alert logs | |
tail -f /var/log/suricata/fast.log | |
## For ubuntu linux you can start suricata on boot | |
description "Intruder Detection System Daemon" | |
start on runlevel [2345] | |
stop on runlevel [!2345] | |
expect fork | |
exec suricata -D --pidfile /var/run/suricata.pid -c /etc/suricata/suricata.yaml -i eth1 | |
## You are now ready to perform the tests However, before you can proceed, you need to disable packet offload features on the network interface on which Suricata is listen. | |
ethtool -K <network interface> gro off lro off | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment