hello -
first off, thank you so much for creating such a useful tool. whatismyipaddress.com has become my first line of defense to determine how aggressive a given IP address is trying to hack me.
besides using whatismyipaddress.com extensively for WordPress break-in attempts, i have also started using it for MariaDB hack attempts by the following linux command:
grep 'DPT=3306' /var/log/messages | sed -e 's/^.* SRC=//' | sed -e 's/ DST=.*$//' | sort -u | sed -e 's?^?https://whatismyipaddress.com/ip/?;'
this produces a list such as the following:
https://whatismyipaddress.com/ip/103.200.117.248
https://whatismyipaddress.com/ip/103.91.208.78
https://whatismyipaddress.com/ip/104.206.128.18
my question: is there any way to "batch" flag all of these offending IP numbers? its becoming a bit time-consuming to report on all of them.
perhaps something like this:
https://whatismyipaddress.com/ip/103.20 ... b%20Hacker
thank you all very much.