Community discussions

MikroTik App

Search found 6 matches

by faux
Tue Apr 05, 2022 10:25 am
Forum: RouterOS beta
Topic: ZeroTier added to RouterOS v7.1rc2
Replies: 335
Views: 323291

Re: ZeroTier added to RouterOS v7.1rc2

This is actually so cool!!

Got it working quick on RB4011 7.1.3 / .5 and can access my NAS from work!

Going to try it with old LAN coop games soon.. and watch my friends scan the network and deny it after :P
by faux
Fri Jun 18, 2021 11:24 am
Forum: Scripting
Topic: Fetch & update AV OTX IPv4 blacklist list for auto IoC IPS firewalling
Replies: 15
Views: 3303

Re: Fetch & update AV OTX IPv4 blacklist list for auto IoC IPS firewalling

So i made a version which doesn't need Regex, and therefore doesn't need the extra script. Also.. its ~1.5x faster at parsing the results! Needed it to make a DNS versions for urlhaus/anomali/etc. # Fetch IP indicators on OTX from past day to update local blacklist address-list # v3 # PUT API KEY HE...
by faux
Tue Jun 15, 2021 7:25 pm
Forum: Scripting
Topic: Fetch & update AV OTX IPv4 blacklist list for auto IoC IPS firewalling
Replies: 15
Views: 3303

Re: Fetch & update AV OTX IPv4 blacklist list for auto IoC IPS firewalling

thanks! [:typeof $caughtIp] ~ "ip" ~~~~ but if are contained inside, the script must be careful to not write only 1.2.3.0 cutting off /24 Hmmmm I will email OTX help and ask if there is ever a 1.2.3.4/24 style address and subnet, becuase if there never is we can cut out a few lines of cod...
by faux
Tue Jun 15, 2021 1:52 pm
Forum: Scripting
Topic: Fetch & update AV OTX IPv4 blacklist list for auto IoC IPS firewalling
Replies: 15
Views: 3303

Re: Fetch & update AV OTX IPv4 blacklist list for auto IoC IPS firewalling

~~ I really do not like this method of coding. I better prefer to not fill log and do more clean code like the following example, where errors are prevented than wait for errors: ~~ Hi, thank you very much for you suggestion! You have a cleaner method I agree. I will update my script and upload a n...
by faux
Wed Jun 09, 2021 10:05 pm
Forum: Scripting
Topic: Fetch & update AV OTX IPv4 blacklist list for auto IoC IPS firewalling
Replies: 15
Views: 3303

Fetch & update AV OTX IPv4 blacklist list for auto IoC IPS firewalling

Hello Today I had a slow day so made a script which fetches all the current days Open Threat Exchange (OTX) Indicators of Compromise (IoC) IPv4 addresses and adds them to a firewall address-list (if they don't already exist). This way you can automatically block the naughty IPv4 addresses where malw...
by faux
Wed Jun 09, 2021 2:55 pm
Forum: Scripting
Topic: Using regex in Mikrotik and creating search functions with return values
Replies: 5
Views: 9095

Re: Using regex in Mikrotik and creating search functions with return values

Thank you so much for this!!

Currently using it to parse blacklist IPs from the OTX API cause it replies in JSON :) works perfect