python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Suricata dont drop packets
I have a server with Suricata (169.69.1.11) installed and a specific rule:
drop ICMP any any -> 169.69.1.11 any (msg: "ping dropped";sid:10001;)
In other VM I execute:
ping 169.69.1.11 -...
user13643470
Votes: 0
Answers: 1
SURICATA - <Error> - [ERRCODE: SC_ERR_DUPLICATE_SIG(176)]
When i execute
sudo suricata -i enp0s8 -c suricata.yaml -s rules/misreglas.rules
Get the output:
<Error> - [ERRCODE: SC_ERR_DUPLICATE_SIG(176)] - Duplicate signature "drop http $HOME_NET ...
user13643470
Votes: 0
Answers: 1
How python subprocess can detect a negative exit code? How to force it return 0 instead?
I'm using pkill to send USR2 signal to suricata by python subprocess as below:
#!/usr/bin/python3
script_command='pkill -SIGUSR2 -f /usr/bin/suricata'
exit_status = subprocess.call(script_command, en...
Nguyễn Louis
Votes: 0
Answers: 1