0

我将其发布为 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

有没有办法做到这一点?

4

1 回答 1

0

在两个单独的 curl 会话中添加一些额外的行解决了这个问题。

添加到第一个 curl 会话的行:

curl_setopt ($ch, CURLOPT_COOKIEJAR, '/tmp/cookie.txt');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, true);

这些添加在 tmp 文件夹中创建了一个 cookie 文件。

添加到第二个 curl 会话的行:

curl_setopt ($ch, CURLOPT_COOKIEFILE, '/tmp/cookie.txt');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, true);

在这里,使用 cookie 文件中的信息在登录页面上获取相同的安全代码。

另一个网站上描述的解决方案也可能有效。就我而言,服务器设置不允许我使用它。

于 2013-05-18T18:48:59.207 回答