Looking for a little 'cheating' help.....

 
Post new topic   Reply to topic    Aprelium Forum Index -> General Questions
View previous topic :: View next topic  
Author Message
erskie
-


Joined: 16 Jan 2004
Posts: 31
Location: ALL over

PostPosted: Thu May 27, 2004 2:49 am    Post subject: Looking for a little 'cheating' help..... Reply with quote

Not quite the place for this question, but it seems to be a tolerant forum... :)

At work I need to login every time I access the Internet. However, I noticed that when I logged into my happy home abyss server on any port other than 80, I did not need to login before it would let me past the firewall.

Soooo, I was wondering if there is such a thing as a simple redirect programme, such that I could access my home server from work on any port other than 80, and it could then re-drect my requests to 80, allowing me to surf the net without big brother knowing what I was doing? Or is it possible to set up a home webpage on an abyss server running on any port other than 80, and have some clever page do the port 80 requests?

Any ideas? I am a self-taught, self-confessed simpleton, so a simple explanation would be fantastic!

Cheers.

Oh, and thanks to everyone on this forum who has - unknowingly - helped me to set up my first secure site with forum. Simple for you all, a major achievement for me...

erskie
Back to top View user's profile Send private message
iNaNimAtE
-


Joined: 05 Nov 2003
Posts: 2381
Location: Everywhere you're not.

PostPosted: Thu May 27, 2004 5:36 am    Post subject: Reply with quote

Depending on how your work network is set up, this may or may not work:

Make a page on Abyss, and put this script in it.

Like I said, this may or may not work--so I promise no guarantee.
_________________
Bienvenidos!
Back to top View user's profile Send private message Send e-mail Visit poster's website AIM Address Yahoo Messenger MSN Messenger ICQ Number
erskie
-


Joined: 16 Jan 2004
Posts: 31
Location: ALL over

PostPosted: Thu May 27, 2004 7:38 pm    Post subject: Reply with quote

Thks for the response. Will try.
Back to top View user's profile Send private message
erskie
-


Joined: 16 Jan 2004
Posts: 31
Location: ALL over

PostPosted: Mon May 31, 2004 11:55 pm    Post subject: Reply with quote

The code works, but updates the main address in the window, so it does not solve my problem. However, when I placed the code in a frame the effect was much better ... will try it tomorrow at work!
Back to top View user's profile Send private message
erskie
-


Joined: 16 Jan 2004
Posts: 31
Location: ALL over

PostPosted: Wed Jun 02, 2004 1:37 am    Post subject: No luck.... Reply with quote

Does not seem to work. Although the address in the bar stays constant, it still seems to use the local port 80...... any ideas?
Back to top View user's profile Send private message
Anonymoose
-


Joined: 09 Sep 2003
Posts: 2192

PostPosted: Wed Jun 02, 2004 2:00 am    Post subject: Reply with quote

All that script does is load the other site in a frame - it doesn't proxy it through your home server or obfusicate the URL. The addresses which are seen by your work proxy will be exactly the same as before and so still blocked.

You need something a bit more complex. You could use CGI-Proxy but afaik that doesn't mangle the URLs so if your company has url filtering as well as site filtering, it still won't work perfectly.
Back to top View user's profile Send private message
erskie
-


Joined: 16 Jan 2004
Posts: 31
Location: ALL over

PostPosted: Wed Jun 02, 2004 4:05 am    Post subject: Reply with quote

Yes, they do have URL filtering too, in the form of a piece of software nastiness known as 'Websense'. However, am very interested in the CGI solution you recommend - could you give me some pointers? Assume total ignorance - and that is not much of an assumption :)
Back to top View user's profile Send private message
TRUSTAbyss
-


Joined: 29 Oct 2003
Posts: 3752
Location: USA, GA

PostPosted: Wed Jun 02, 2004 4:20 am    Post subject: Reply with quote

If all your looking for is a proxy , try
http://www.the-cloak.com , its free !
Back to top View user's profile Send private message Visit poster's website
Anonymoose
-


Joined: 09 Sep 2003
Posts: 2192

PostPosted: Wed Jun 02, 2004 9:18 am    Post subject: Reply with quote

TRUSTpunk most content filtering solutions will already have a known list of web proxies in their filter list, and also filter anything that looks like being a web proxy. I'd bet that the-cloak is already blocked - and if it isn't, it's going to look pretty suspicious in the log files when they're reviewed.

erskie, I literally meant a program called 'CGI-Proxy'

http://www.jmarshall.com/tools/cgiproxy/

Basically after setting it up, your machine at work will never make a request to any blocked site - your machine at home will be making the requests and then passing the result on to you. See the demo on the site above. However, as I said, that version doesn't mangle the urls by default - so for example when you visit slashdot, you'll see yoursite.com/blahblahbla/http/slashdot.org which will probably still get caught up in your filter.

You can turn on url encoding, but you will need a little bit of understanding of Perl to fix it...
Back to top View user's profile Send private message
erskie
-


Joined: 16 Jan 2004
Posts: 31
Location: ALL over

PostPosted: Sun Jun 13, 2004 6:16 pm    Post subject: Apologies for the delay .... Reply with quote

I have just moved into my first house, which accounts for the delay in responding here ... apologies to those of you kind enough to continue taking an interest. I have to admit that it is nice to finally be able to drill holes, run cabling, etc. to be able to set up the network where I want it, instead of being restricted by apartment rentals....

I will take a look at the proposed solutions, but I would of course be interested in the URL mangler. Please let me know if the understanding of PERL required to do this is too much to address over this forum. I, sadly, know absolutely nothing about PERL.

Thks....
Back to top View user's profile Send private message
iNaNimAtE
-


Joined: 05 Nov 2003
Posts: 2381
Location: Everywhere you're not.

PostPosted: Sun Jun 13, 2004 8:00 pm    Post subject: Re: Apologies for the delay .... Reply with quote

erskie wrote:
I will take a look at the proposed solutions, but I would of course be interested in the URL mangler. Please let me know if the understanding of PERL required to do this is too much to address over this forum. I, sadly, know absolutely nothing about PERL.

It depends if you are able to find a script or not. If you can't find one on www.hotscripts.com or by searching, then you are probably going to have to write your own. You can write it in Perl, yes, however I (and others) would recommend PHP. It is easier, nicer to beginners, and the syntax isn't screwed up like it is in Perl.
_________________
Bienvenidos!
Back to top View user's profile Send private message Send e-mail Visit poster's website AIM Address Yahoo Messenger MSN Messenger ICQ Number
Anonymoose
-


Joined: 09 Sep 2003
Posts: 2192

PostPosted: Sun Jun 13, 2004 8:13 pm    Post subject: Reply with quote

The URL obfusication in CGI Proxy is just a matter of uncommenting a couple of lines on closer examination.

iNaNimAtE, was it you who found some small change had to be made to CGI Proxy to get it to run on Abyss ?
Back to top View user's profile Send private message
Axis
-


Joined: 29 Sep 2003
Posts: 336

PostPosted: Sun Jun 13, 2004 9:26 pm    Post subject: Reply with quote

Hi all--

Since I am running cgi-proxy on my abyss site I thought I would jump in. There is one configuration option that should be set. The "$NOT_RUNNING_AS_NPH= 1 ;" flag should be set. The proxy actually runs on abyss without this flag being set, however IE (at least 6) will not work unless the option above is chosen (though opera and mozilla will...funny, eh?)

Regards,
Axis
Back to top View user's profile Send private message
Anonymoose
-


Joined: 09 Sep 2003
Posts: 2192

PostPosted: Sun Jun 13, 2004 10:05 pm    Post subject: Reply with quote

Ah! Did you post about this before? I could remember someone mentioning it...
Back to top View user's profile Send private message
Axis
-


Joined: 29 Sep 2003
Posts: 336

PostPosted: Mon Jun 14, 2004 2:26 am    Post subject: Reply with quote

Hi Anonymoose--

Yes, in fact I did, though it was someone else here (on the forums) who helped me out..

Regards,
Axis
Back to top View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Aprelium Forum Index -> General Questions All times are GMT + 1 Hour
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB phpBB Group