Proxy Browser     

Some web kiosks and the like do not allow you to type url's into your browser. They could also block you from viewing certain web sites.

Prefered Method

Proxify offers a great service which will modify links, images, scripts, etc to remain anonymous. They have a free service, or you can sign up for better performance for a mere $40 a year.

Method #2

Enter a URL here and this server (quickwired.com) will make the request on your behalf. Images will still be loaded by your browser (and your IP). If you click on any links on the target page, you will bypass the proxy.

Method #3

If you enter a URL below then Google will make the request on your behalf. The target machine will think that it's Google that is making the request.

This works because if you try to translate a page that is in english, and you tell google to translate from german to english then it will just fail on all the words and leave them as-is.

Warning: Images loaded still come from your browser, I'm looking into fixing that now.


PHP code for Method #2

<?php
    $curl_handle 
curl_init($_POST['addr']);
    
curl_setopt($curl_handleCURLOPT_RETURNTRANSFER1); // return as a string.
    
curl_setopt($curl_handleCURLOPT_CONNECTTIMEOUT5); // Prevents your page from hanging if the remote site is down.
    
$buffer curl_exec($curl_handle);
    if (
curl_errno($curl_handle)) {
         
Error(curl_error($curl_handle));
    } else {
        
curl_close($curl_handle);
        if (empty(
$buffer)) {
            
Error('Unable to connect to '.$_POST['addr'].'');
        } else {
            
$buffer preg_replace('/(?s)<meta http-equiv="Expires"[^>]*>/i'''$buffer); 
            if (
$buffer === true) {
                
Error('Page has a redirect, please enter the URL of the final redirection');
            } else {
                print(
$buffer);
            }
        }
    }
?>

  Site by Kallahar - kallahar@quickwired.com - Hosted by DreamHost