Dandelion Sprout’s and other adblocker lists‘ IPs

von Imre Kristoffer Eilertsen Phishing Werbung IP / CIDR
https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate%20versions%20Anti-Malware%20List/Dandelion%20Sprout's%20and%20other%20adblocker%20lists'%20IPs.ipset Rohliste öffnen
879Einträge
+0 -0letzte Änderung
zuletzt aktualisiert
15,1 KBGröße
vor 4 Stundenzuletzt geprüft

Beschreibung

Filterliste aus den Bereichen Werbung und Phishing. Format: IPs (IPv4). Betreut von Imre Kristoffer Eilertsen. 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://raw.githubusercontent.com/DandelionSprout/adfilt/master/Alternate%20versions%20Anti-Malware%20List/Dandelion%20Sprout's%20and%20other%20adblocker%20lists'%20IPs.ipset" 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/DandelionSprout/adfilt/master/Alternate%20versions%20Anti-Malware%20List/Dandelion%20Sprout's%20and%20other%20adblocker%20lists'%20IPs.ipset" dst-path=blocklist.txt
:foreach line in=[/file get blocklist.txt contents] do={
  /ip firewall address-list add list=blocklist address=$line comment="Dandelion Sprout’s and other adblocker lists‘ IPs"
}

Use the list in the firewall

/ip firewall filter add chain=forward src-address-list=blocklist action=drop comment="Dandelion Sprout’s and other adblocker lists‘ IPs"
/ip firewall filter add chain=forward dst-address-list=blocklist action=drop comment="Dandelion Sprout’s and other adblocker lists‘ IPs"

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