Re: question about "get" function of LWP::Simple (a possible reason)
Keary Suska <[email protected]>
| Newsgroups | gmane.comp.lang.perl.modules.lwp |
|---|---|
| Message-ID | <[email protected]> |
On May 19, 2009, at 8:07 PM, zmerry wrote: > > Hi, > > I found 'get' function can't retrieve a nonstandard webpage (I > mean the retrieved webpage excludes some kinds of > tags,e.g.<HTML> ,<BODY> ). > > The malicious url,hxxp://ibalefo.net/?click=D1E863, only includes > a <iframe> tag,so I guess that is the reason why 'get' function > can't work . > > Does anyone know how to solve it ? I am not able to access this URL using other tools, so the problem has to do with the URL. Keary Suska > Date: Tue, 19 May 2009 18:14:10 +0800 > Subject: Re: question about "get" function of LWP::Simple > From: [email protected] > To: [email protected] > > Everybody: > > Be careful. It seems to be a harmful URL. > > ---------------------------------- > [email protected] > [email protected] > > > 2009/5/19 zmerry <[email protected]> > > hi, > > I want to analyze a malicious url,and the malicious url exists ,but > I always can't get it using LWP::Simple . > > ps. using http://www.google.com repalces the malicious url, it can > work. > > --------------------------------------------------- > use LWP::Simple; > $content = get("http://ibalefo.net/?click=D1E863"); > die "Couldn't get it!" unless defined $content; > --------------------------------------------------- > > Could someone give me a hand?