I think you have just setup your firewall incorectly At the first i think you’re using web proxy but it can be also used from remote computers on your public IP probably on port 8080 TCP. So free web proxies is searching for this security bad configurations and use them for access Google, Yahoo and dangerous websites; It slows down your connection and may cause heavy load on your RouterBoard. Also check, you have to drop UDP 53 for DNS queries from public (heavy load on RouterBoard by public servers). Idealy allow only some traffic on input (public IP) such as port 22, 8291 and everything other on public IP drop. Feel free to ask for more specific answer and give reply if your problem was Web proxy
Very simply using firewall DNS queries can come to UDP and TCP port 53, so if your public IP address is for example 1.2.3.4
/ip firewall filter
add action=drop chain=input dst-address=1.2.3.4 protocol=tcp
port=53 comment=“Drop incoming TCP DNS queries on public IP”
add action=drop chain=input dst-address=1.2.3.4 protocol=udp
port=53 comment="Drop incoming UDP DNS queries on public IP"If you have more than one public IP address you can use firewall address list and also you can use incoming interface in rule. Was Web Proxy enabled on public IP?