AbuseIPDB (100 % Konfidenz, 30 Tage)

https://raw.githubusercontent.com/borestad/blocklist-abuseipdb/main/abuseipdb-s100-30d.ipv4 Rohliste öffnen
150,7kEinträge
+155 -0letzte Änderung
zuletzt aktualisiert
7,8 MBGröße
vor 1 Stundezuletzt geprüft

Beschreibung

AbuseIPDB sammelt Missbrauchsmeldungen und bewertet jede Adresse mit einem Vertrauenswert. Diese Aufbereitung nimmt ausschliesslich Adressen mit dem Höchstwert von 100 Prozent aus den letzten 30 Tagen auf, ist also deutlich strenger als die Vollansicht und entsprechend arm an Fehlalarmen. Jede Zeile trägt Land und Autonomes System als Kommentar.

Integration

Address list per script

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

/tool fetch url="https://raw.githubusercontent.com/borestad/blocklist-abuseipdb/main/abuseipdb-s100-30d.ipv4" 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://raw.githubusercontent.com/borestad/blocklist-abuseipdb/main/abuseipdb-s100-30d.ipv4" dst-path=blocklist.txt
:foreach line in=[/file get blocklist.txt contents] do={
  /ip firewall address-list add list=blocklist address=$line comment="AbuseIPDB (100 % Konfidenz, 30 Tage)"
}

Use the list in the firewall

/ip firewall filter add chain=forward src-address-list=blocklist action=drop comment="AbuseIPDB (100 % Konfidenz, 30 Tage)"
/ip firewall filter add chain=forward dst-address-list=blocklist action=drop comment="AbuseIPDB (100 % Konfidenz, 30 Tage)"

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