========= SCRAPER REMOVED AN EMBEDDED LINK HERE ===========
url was:"https://www.grc.com"
linktext was:"https://www.grc.com"
====================================
the default config of ufw won't pass the ping test with stealth. So, if you want to disable ping, just do this.
sux
nano /etc/ufw/before.rules
Look for these lines
Code: Select all
# ok icmp codes
-A ufw-before-input -p icmp --icmp-type destination-unreachable -j ACCEPT
-A ufw-before-input -p icmp --icmp-type source-quench -j ACCEPT
-A ufw-before-input -p icmp --icmp-type time-exceeded -j ACCEPT
-A ufw-before-input -p icmp --icmp-type parameter-problem -j ACCEPT
-A ufw-before-input -p icmp --icmp-type echo-request -j ACCEPT
Code: Select all
# ok icmp codes
-A ufw-before-input -p icmp --icmp-type destination-unreachable -j DROP
-A ufw-before-input -p icmp --icmp-type source-quench -j DROP
-A ufw-before-input -p icmp --icmp-type time-exceeded -j DROP
-A ufw-before-input -p icmp --icmp-type parameter-problem -j DROP
-A ufw-before-input -p icmp --icmp-type echo-request -j DROP
ufw disable
ufw enable
Now, if you go back to
========= SCRAPER REMOVED AN EMBEDDED LINK HERE ===========
url was:"https://www.grc.com"
linktext was:"https://www.grc.com"
====================================
, you'll pass the test with stealth. Dropping ping request doesn't make you safer or anything.