Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.

Web browser within a browser....


ghost's Avatar
0 0

Hey,

I know this may seem stupid but I don't care so I am going to ask anyways. Is it possible to create a website that has it's own web browser within it? So if say it was www.google2.com

I could then surf to www.thissiteisblockedbyafirewall.com

But it would seem like I was at www.google2.com the entire time?

I know it seems like a proxy but I want it not to have to change the URL at all, or move from that page so I am assuming that I would have to use frames.

Any ideas?

Thanks

Hyperion


Mr_Cheese's Avatar
0 1

your looking for a HTTP web proxy.

theres plenty free online, such as hidemyass.com

and most of these projects are open source and written in PHP.

after a quick google on the above, you should have plenty of results to be on your way to setting up your own.


ghost's Avatar
0 0

But proxies are easily blocked, they also change their URL when going to new sites… I want one that only reloads the frame for the site, not the entire page


yours31f's Avatar
Retired
10 0

you could'nt do that, most sites are blocked by , at least, an ok blocker/firewall that will check all the links on the page and you even src from another page that gets blocked.


ghost's Avatar
0 0

you can still read the source via php and write it in the new page.

should work easily in static pages ….. or at least as long no form is used


spyware's Avatar
Banned
0 0

sacman wrote: you can still read the source via php and write it in the new page.

should work easily in static pages ….. or at least as long no form is used

You still have to request using a different connection, you can't use the firewalled/protected one.

The easiest way to do this is (like Cheese said) HTTP proxy'ing, if you want a more "stable" solution you're looking at something like SSH tunneling (basically you use a remote connection for your 'dirty' work).


shadowls's Avatar
You Like this!
90 0

Is this mainly for school to bypass there filters?


AldarHawk's Avatar
The Manager
0 0

If you are looking to browse as if you were at 'Location B' when you are at 'Location A' Then Cheese is correct, you are looking for a Web Proxy Site.

You can easily find a free one that you can install at home and use a site like DynDNS to create a dynamic Proxy account to host this off of. Otherwise you are looking at as has already been stated, SSH tunneling. Another option however is VPN tunneling which no one seems to like. But I will not get into that ;)

I truthfully prefer the SSH Tunnel method or VPN tunneling but I am sure you will find what you want.


shadowls's Avatar
You Like this!
90 0

SSH tunneling is prob, the best way to go.