Hello,
Criminals are more and more using googleapis.com links to redirect victims to their malicious website and track their victims.
A html file with the following content is often used:
<script>
var tarcking_param = window.location.href.split('#')[1];
var srv_ip = "[redacted]";
if(!tarcking_param){
alert("please set tracking params!");
}else{
document.location.href = 'http://'+srv_ip+'/t/'+tarcking_param;
}
</script>
If a user is using https://support.google.com/code/contact/cloud_platform_report?hl=en to report the googleapis.com links, apparently no action is taken to remove the malicious content.
Any suggestions on how to stop these criminals?