pfBlockerNG – MS-1

von BBcan177 Malware IP / CIDR
https://gist.githubusercontent.com/BBcan177/bf29d47ea04391cb3eb0/raw/7290e0681bcd07415420b5c80a253652fd13f840/MS-1 Rohliste öffnen
2.782Einträge
+0 -0letzte Änderung
zuletzt aktualisiert
64,9 KBGröße
vor 2 Minutenzuletzt geprüft

Beschreibung

Filterliste aus den Bereichen Malware. Format: IPs (IPv4). Betreut von BBcan177. Einzelheiten und Aufnahmekriterien stehen auf der Projektseite.

Integration

Address list per script

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

/tool fetch url="https://gist.githubusercontent.com/BBcan177/bf29d47ea04391cb3eb0/raw/7290e0681bcd07415420b5c80a253652fd13f840/MS-1" 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://gist.githubusercontent.com/BBcan177/bf29d47ea04391cb3eb0/raw/7290e0681bcd07415420b5c80a253652fd13f840/MS-1" dst-path=blocklist.txt
:foreach line in=[/file get blocklist.txt contents] do={
  /ip firewall address-list add list=blocklist address=$line comment="pfBlockerNG – MS-1"
}

Use the list in the firewall

/ip firewall filter add chain=forward src-address-list=blocklist action=drop comment="pfBlockerNG – MS-1"
/ip firewall filter add chain=forward dst-address-list=blocklist action=drop comment="pfBlockerNG – MS-1"

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