我将其发布为 php/curl,但我对任何可行的解决方案持开放态度。
example.com/login.asp
在登录表单中有一个隐藏值:
input type="hidden" name="security" value="123456789abcdef"
我尝试使用 curl 来获取这个额外的安全值并将其包含到另一个 curl 调用中,但是在第一次 curl 之后该值发生了变化。我已经阅读了一篇相关的帖子,其中建议使用 php file_get_contents
,但它不适用于特定的网站。
当前的 php curl 如下所示:
function curling ($websitehttps,$postfields,$cookie,$ref,$follow) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $websitehttps);
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/x-www-form-urlencoded', 'Connection: Close'));
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1");
curl_setopt($ch, CURLOPT_TIMEOUT, 60);
curl_setopt($ch, CURLOPT_MAXREDIRS, 10);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
if ($cookie != "") {
curl_setopt($ch, CURLOPT_COOKIE,$cookie);
}
if ($postfields != "") {
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS,$postfields);
}
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, $follow);
curl_setopt($ch, CURLOPT_AUTOREFERER,TRUE);
curl_setopt($ch, CURLOPT_REFERER, $ref);
curl_setopt($ch, CURLOPT_FAILONERROR, TRUE);
$data = curl_exec($ch);
curl_close($ch);
return $data;
}
我需要在帖子字段 ($postfields) 中使用额外的安全代码,它应该类似于以下内容:
ref=https%3A%2F%2Fexample.com%2F&security=123456789abcdef
有没有办法做到这一点?