Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re: Re: Re: Re: Hide real IP

by freak (Initiate)
on May 05, 2004 at 14:17 UTC ( [id://350784]=note: print w/replies, xml ) Need Help??


in reply to Re: Re: Re: Hide real IP
in thread Hide real IP

This node falls below the community's threshold of quality. You may see it by logging in.

Replies are listed 'Best First'.
Re: Re: Re: Re: Re: Hide real IP
by blue_cowdawg (Monsignor) on May 05, 2004 at 19:27 UTC

        is there a difference if i connect to a website with LWP::UserAgent OR if i open a browser and enter that website ?

    Sure there is. Using LWP::UserAgent looks like:

    use LWP::UserAgent; my $ua=LWP::UserAgent->new; my $result=$ua->get('http://www.perlmonks.org');
    and using the browser looks like:
    open PIPE,"/usr/bin/lynx -source http://www.perlmonks.org|" or die $!;
    either way you get the same approximate result. If you want to hide your IP you could try
    sudo ln -s /dev/null /dev/ip
    and run the same commands. Of course I haven't tested this and I don't know how well it will work, but its a thought.

Re: Re: Re: Re: Re: Hide real IP
by Steve_p (Priest) on May 05, 2004 at 16:11 UTC

    What do you mean by browser? I'm really confused.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://350784]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (4)
As of 2024-04-25 06:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found