Possible to use timeout in WWW::Mechanize on https?

浪尽此生 提交于 2019-12-07 20:43:29

Use LWPx::ParanoidAgent and mix it into Mech.

$ua->timeout(10);

this is 10 seconds overall, from start to finish. not just between socket reads. and it includes all redirects. so attackers telling you to download from a malicious tarpit webserver can only stall you for $n seconds

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!