Cloaking referer script PHP - is this ok?

seojumper

Regular Member
Joined
Jan 13, 2008
Messages
233
Reaction score
28
Prosper202 is offering cloaking/redirection referer script below

Code:
<html>

    <!-- Replace http://google.com with whatever url you like !-->

    <head>
        <title>Google</title>
        <meta name="robots" content="noindex">
        <meta http-equiv="refresh" content="1; url=http://google.com">
    </head>
    <body>
    
        <form name="form1" id="form1" method="get" action="http://google.com"></form>
        <script type="text/javascript">
            document.form1.submit();
        </script>
    
        <div style="padding: 30px; text-align: center;">
            You are being automatically redirected to Google.<br/><br/>
            Page Stuck? <a href="http://google.com">Click Here</a>.
        </div>
        
    </body>
</html>

If I understand correctly this script redirect through javascript submit, which is ok. But if javascript is not working it redirects through META refresh which is not double (DMR) and this leaks referer, right?
 
Last edited:
Back
Top