Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: Re: Re: Re: Re: Hide real IP

by blue_cowdawg (Monsignor)
on May 05, 2004 at 19:27 UTC ( [id://350892]=note: print w/replies, xml ) Need Help??


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

      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.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (3)
As of 2024-04-24 02:29 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found