StopForumSpam (Netzbereiche)

https://www.stopforumspam.com/downloads/toxic_ip_cidr.txt Rohliste öffnen
60Einträge
+0 -0letzte Änderung
zuletzt aktualisiert
962,0 BGröße
vor 2 Stundenzuletzt geprüft

Beschreibung

Anders als die Einzeladressen desselben Projekts benennt diese Datei ganze Netzbereiche, aus denen über lange Zeit praktisch ausschliesslich Spam-Anmeldungen in Foren und Kommentarfeldern eingingen. Sehr kurz und dadurch gut geeignet, um sie einem Anmeldeformular vorzuschalten.

Integration

Address list per script

Fetch the list and import it into an address list called blocklist:

/tool fetch url="https://www.stopforumspam.com/downloads/toxic_ip_cidr.txt" dst-path=blocklist.rsc
/import blocklist.rsc

If the list is a plain text file with one address or CIDR per line, convert it first:

/tool fetch url="https://www.stopforumspam.com/downloads/toxic_ip_cidr.txt" dst-path=blocklist.txt
:foreach line in=[/file get blocklist.txt contents] do={
  /ip firewall address-list add list=blocklist address=$line comment="StopForumSpam (Netzbereiche)"
}

Use the list in the firewall

/ip firewall filter add chain=forward src-address-list=blocklist action=drop comment="StopForumSpam (Netzbereiche)"
/ip firewall filter add chain=forward dst-address-list=blocklist action=drop comment="StopForumSpam (Netzbereiche)"

Schedule the fetch with /system scheduler to keep the list current. Very large lists consume RAM, so check the available memory of your device first.

MikroTik RouterOS Dokumentation

Nach oben scrollen