mikorym has asked for the wisdom of the Perl Monks concerning the following question:
The question is perhaps too general, but let my try to be specific. Suppose I extract from a URL the website content such as:
my $response = HTTP::Tiny->new->get($url);
Suppose further that for whatever reason this is a malicious URL. What is the internal workings of HTTP:Tiny and would some of the more common malware that one encounters exhibit their malicious activity through such a scraping command?
My intuition tells me that if targeting scrapers specifically, there would be a risk. For other types of malware that execute in browsers, would the script return the source without triggering the malicious code in the website?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Malware on Webpages Visited by Crawlers
by LanX (Saint) on Mar 19, 2019 at 10:23 UTC |