in reply to LWP:Simple bypass problem

I think you can get past basic auth by adding your username and password to the url:
$request = HTTP::Request->new( GET => ’http://user:passwd@www.example.com/' );
But, my memory may have failed since I last did it.

Phil