I found that all my users who are broadcasting on port 445 135-139 1433-1434 10000 heve a viruses there is no one without virus, thats why i created a rule to put them in address-list
/ ip firewall filter
add chain=forward action=accept dst-port=80 protocol=tcp src-address-list=VIRUSES comment="Accept port 80 in VIRUSESS list" disabled=no
add chain=forward action=add-src-to-address-list in-interface=ether1 dst-port=10000 protocol=tcp limit=50,5 address-list=VIRUSES address-list-timeout=5m comment="" disabled=no
add chain=forward action=add-src-to-address-list in-interface=ether1 dst-port=1433-1434 protocol=tcp limit=50,5 address-list=VIRUSES address-list-timeout=5m comment="" disabled=no
add chain=forward action=add-src-to-address-list in-interface=ether1 dst-port=135-139 protocol=tcp limit=50,5 address-list=VIRUSES address-list-timeout=5m comment="" disabled=no
add chain=forward action=add-src-to-address-list in-interface=ether1 dst-port=445 protocol=tcp limit=50,5 address-list=VIRUSES address-list-timeout=5m comment="" disabled=no
add chain=forward action=drop src-address-list=VIRUSES comment="Drop for VIRUSES-list" disabled=no
After that i created a rule in the nat table where it sends all connections to port 80 from the infected users to web page where it sayng VIRUS is detected pls fix your pc with theese tools ....
/ ip firewall nat
add chain=dstnat action=dst-nat to-addresses=10.10.10.10 to-ports=80 dst-port=80 protocol=tcp src-address-list=VIRUSES comment="" disabled=no
I hope it will help to somebody
I hope it will help to me also
If somebody heve other idea or to make it better pls let us now, tnks !