Networking Forums

Networking Forums > Computer Networking > Linux Networking > anonymizing proxy solution

Reply
Thread Tools Display Modes

anonymizing proxy solution

 
 
Magnus Warker
Guest
Posts: n/a

 
      07-06-2008, 12:58 AM
Hi,

I am looking for a solution for an anonymizer problem. This is the
situation:

1. I regularly access arbitrary internet sites from unsecure working
stations, i. e. working stations located in networks that I do not know, e.
g. public internet access stations.

2. I have an own server in the internet.

Now I would like to use my own server as a proxy to the internet sites I
access from the unsecure networks:

1. The local web browser should access my proxy using an encrypted
connection.

2. My proxy should forward the requests coming from my browser to the final
recipients.

3. In effect, only the encrypted connection to my own server will be visible
in the unsecure network.

My question: How can I realize this? I prefer open source software running
on linux.

The only proxy I know is squid. Can I use it in my scenario?

Thanks,
Magnus
 
Reply With Quote
 
 
 
 
Allan
Guest
Posts: n/a

 
      07-06-2008, 02:42 AM
Magnus Warker <(E-Mail Removed)> writes:

> Hi,
>
> I am looking for a solution for an anonymizer problem. This is the
> situation:
>
> 1. I regularly access arbitrary internet sites from unsecure working
> stations, i. e. working stations located in networks that I do not know, e.
> g. public internet access stations.
>
> 2. I have an own server in the internet.
>
> Now I would like to use my own server as a proxy to the internet sites I
> access from the unsecure networks:
>
> 1. The local web browser should access my proxy using an encrypted
> connection.
>
> 2. My proxy should forward the requests coming from my browser to the final
> recipients.
>
> 3. In effect, only the encrypted connection to my own server will be visible
> in the unsecure network.
>
> My question: How can I realize this? I prefer open source software running
> on linux.
>
> The only proxy I know is squid. Can I use it in my scenario?

Yes, squid is already used by some anonymizing network
applications. But what is so anonymous about your server if it is visible?

--
Allan
 
Reply With Quote
 
Magnus Warker
Guest
Posts: n/a

 
      07-06-2008, 03:02 AM
>> The only proxy I know is squid. Can I use it in my scenario?
> Yes, squid is already used by some anonymizing network
> applications. But what is so anonymous about your server if it is visible?


The communication with the web sites behind it is invisible. Isn't it?

Magnus
 
Reply With Quote
 
James T.
Guest
Posts: n/a

 
      07-06-2008, 05:06 AM
On Sun, 06 Jul 2008 02:58:08 +0200, Magnus Warker wrote:

> Hi,
>
> I am looking for a solution for an anonymizer problem. This is the
> situation:
>
> 1. I regularly access arbitrary internet sites from unsecure working
> stations, i. e. working stations located in networks that I do not know,
> e. g. public internet access stations.
>
> 2. I have an own server in the internet.
>
> Now I would like to use my own server as a proxy to the internet sites I
> access from the unsecure networks:
>
> 1. The local web browser should access my proxy using an encrypted
> connection.
>
> 2. My proxy should forward the requests coming from my browser to the
> final recipients.
>
> 3. In effect, only the encrypted connection to my own server will be
> visible in the unsecure network.
>
> My question: How can I realize this? I prefer open source software
> running on linux.
>
> The only proxy I know is squid. Can I use it in my scenario?
>
> Thanks,
> Magnus


Take a look at Privoxy (http://www.privoxy.org/). This is what I use &
its also a good web content filter (banners, pop-ups, etc...).
 
Reply With Quote
 
John Thompson
Guest
Posts: n/a

 
      07-06-2008, 09:43 PM
On 2008-07-06, Magnus Warker <(E-Mail Removed)> wrote:

> I am looking for a solution for an anonymizer problem. This is the
> situation:
>
> 1. I regularly access arbitrary internet sites from unsecure working
> stations, i. e. working stations located in networks that I do not know, e.
> g. public internet access stations.
>
> 2. I have an own server in the internet.
>
> Now I would like to use my own server as a proxy to the internet sites I
> access from the unsecure networks:
>
> 1. The local web browser should access my proxy using an encrypted
> connection.
>
> 2. My proxy should forward the requests coming from my browser to the final
> recipients.
>
> 3. In effect, only the encrypted connection to my own server will be visible
> in the unsecure network.
>
> My question: How can I realize this? I prefer open source software running
> on linux.
>
> The only proxy I know is squid. Can I use it in my scenario?


What degree of anonymity are you after? You might consider "tor"
(http://tor.eff.org), an anonymizing network of servers. If you run tor
and privoxy on your machine, anything routed through tor will be
encrypted before it leaves your machine, and is essentially untracable
back to your machine.

--

John ((E-Mail Removed))
** Posted from http://www.teranews.com **
 
Reply With Quote
 
Allan
Guest
Posts: n/a

 
      07-07-2008, 11:55 PM
Magnus Warker <(E-Mail Removed)> writes:

>>> The only proxy I know is squid. Can I use it in my scenario?

>> Yes, squid is already used by some anonymizing network
>> applications. But what is so anonymous about your server if it is visible?

>
> The communication with the web sites behind it is invisible. Isn't
> it?

Whether you use Privoxy, as mentioned in another post, or squid your
anonymity can be compromised by attacking the proxy itself. If this is
enough privacy for your purposes, fine. No anonymity scheme is
perfect and even if it was it would be impractical and unusable.

--
Allan
 
Reply With Quote
 
Kadin2048
Guest
Posts: n/a

 
      07-09-2008, 01:49 PM
On 2008-07-06, Magnus Warker <(E-Mail Removed)> wrote:
> Hi,
>
> I am looking for a solution for an anonymizer problem. This is the
> situation:

[Protect machine on untrusted network using remote machine at home]
> My question: How can I realize this? I prefer open source software running
> on linux.
>
> The only proxy I know is squid. Can I use it in my scenario?


Just as a different solution, what I do is forgo the HTTP proxy
altogether and use the SOCKS forwarding feature of SSH instead.

As long as you have sshd running on your remote machine (the one in
your house, which is on a 'trusted' connection), and your travel
machine (the one you're using in the 'untrusted' network, like an
Internet cafe) has an SSH client -- available for basically every
platform -- you just open an SSH connection with the "-D {port}" flag,
and then point your browser at "localhost {port}", telling it to use a
SOCKS proxy.

This is in many ways a lot nicer than using an HTTP proxy. All web
traffic is forwarded from the browser to the port on the localhost,
and from there across the SSH tunnel to the remote machine, which
actually makes the connections for you.

It's dead simple to set up and works for web traffic, instant
messaging, and virtually any other application that can use a SOCKS
proxy (pretty much everything).

Googling "ssh socks forwarding" will turn up lots of HOWTOs for
various platforms. Here's just one, for Debian:
<http://www.debian-administration.org/articles/449>

I like this because it doesn't require installing or running anything
on your remote machine besides sshd, which chances are you're already
running as it is.

-Kadin.
 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
*New Proxy -- QUICK LOADING Proxy* SurfHide.us Wireless Internet 0 09-26-2008 05:50 AM
Proxy configuration - tool for identifying what proxy is being use =?Utf-8?B?Q2hyaXMgQg==?= Windows Networking 0 03-21-2005 08:31 PM
Cisco CW Campus Manager, CW Common Service, CW Device Fault Manager, CW Recource Manager Essentials, NGenious RealTime Monitor, CiscoWorks Routed WAN Management Solution v1.3 [3 CDs], CiscoWorks VPN_Security Management Solution v2.2, CiscoWorks QoS P astra35 Wireless Internet 0 05-21-2004 05:48 PM
Cisco CW Campus Manager, CW Common Service, CW Device Fault Manager, CW Recource Manager Essentials, NGenious RealTime Monitor, CiscoWorks Routed WAN Management Solution v1.3 [3 CDs], CiscoWorks VPN_Security Management Solution v2.2, CiscoWorks QoS P astra35 Windows Networking 0 05-19-2004 01:04 PM
Proxy / Firewall solution with VPN possibilities Marcus Linux Networking 2 09-16-2003 11:27 AM



1 2 3 4 5 6 7 8 9 10 11