Feodo Tracker (IP-Sperrliste)

https://feodotracker.abuse.ch/downloads/ipblocklist.txt Rohliste öffnen
5Einträge
+0 -0letzte Änderung
zuletzt aktualisiert
565,0 BGröße
vor 2 Stundenzuletzt geprüft

Beschreibung

abuse.ch verfolgt die Steuerserver mehrerer Banking-Trojaner und Ladeprogramme, darunter Emotet, Dridex und TrickBot. Die Liste bleibt bewusst sehr klein und enthält nur derzeit aktive Server, ist dafür aber von hoher Aussagekraft.

Integration

Address list per script

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

/tool fetch url="https://feodotracker.abuse.ch/downloads/ipblocklist.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://feodotracker.abuse.ch/downloads/ipblocklist.txt" dst-path=blocklist.txt
:foreach line in=[/file get blocklist.txt contents] do={
  /ip firewall address-list add list=blocklist address=$line comment="Feodo Tracker (IP-Sperrliste)"
}

Use the list in the firewall

/ip firewall filter add chain=forward src-address-list=blocklist action=drop comment="Feodo Tracker (IP-Sperrliste)"
/ip firewall filter add chain=forward dst-address-list=blocklist action=drop comment="Feodo Tracker (IP-Sperrliste)"

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