Maison > php教程 > php手册 > 用PHP模拟登陆

用PHP模拟登陆

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Libérer: 2016-05-22 18:38:36
original
891 Les gens l'ont consulté

经常会有人问模拟登陆的问题,其实原理很简单,只要把SessionID保存下来就可以了,今天花了一个小时的时间写了一个函数,供大家参考,网站返回的头信息,具体网站具体分析。

源代码:

<?php
/*
 * 得到网页内容
 * 参数:$host [in] string
 * 主机名称(例如: www.etoow.com)
 * 参数:$method [in] string
 * 提交方法:POST, GET, HEAD ... 并加上相应的参数( 具体语法参见 RFC1945,RFC2068 )
 * 参数:$str [in] string
 * 提交的内容
 * 参数:$sessid [in] string
 * PHP的SESSIONID
 *
 * @返回 网页内容 string
*/
function GetWebContent($host, $method, $str, $sessid = &#39;&#39;) {
    $ip = gethostbyname($host);
    $fp = fsockopen($ip, 80);
    if (!$fp) return;
    fputs($fp, "$methodrn");
    fputs($fp, "Host: $hostrn");
    if (!empty($sessid)) {
        fputs($fp, "Cookie: PHPSESSID=$sessid; path=/;rn");
    }
    if (substr(trim($method) , 0, 4) == "POST") {
        fputs($fp, "Content-Length: " . strlen($str) . "rn"); // 别忘了指定长度
        
    }
    fputs($fp, "Content-Type: application/x-www-form-urlencodedrnrn");
    if (substr(trim($method) , 0, 4) == "POST") {
        fputs($fp, $str . "rn");
    }
    while (!feof($fp)) {
        $response.= fgets($fp, 1024);
    }
    $hlen = strpos($response, " "); // LINUX下是 " "
    $header = substr($response, 0, $hlen);
    $entity = substr($response, $hlen4);
    if (preg_match(&#39;/PHPSESSID=([0-9a-z] );/i&#39;, $header, $matches)) {
        $a[&#39;sessid&#39;] = $matches[1];
    }
    if (preg_match(&#39;/Location: ([0-9a-z_?=&#.] )/i&#39;, $header, $matches)) {
        $a[&#39;location&#39;] = $matches[1];
    }
    $a[&#39;content&#39;] = $entity;
    fclose($fp);
    return $a;
}
/* 构造用户名,密码字符串 */
$str = ("username=test&password=test");
$response = GetWebContent("localhost", "POST /login.php HTTP/1.0", $str);
echo $response[&#39;location&#39;] . $response[&#39;content&#39;] . "<br>";
echo $response[&#39;sessid&#39;] . "<br>";
if (preg_match(&#39;/error.php/i&#39;, $response[&#39;location&#39;])) {
    echo "登陆失败<br>";
} else {
    echo "登陆成功<br>";
    // 不可以访问user.php,因为不带sessid参数
    $response = GetWebContent("localhost", "GET /user.php HTTP/1.0", &#39;&#39;, &#39;&#39;);
    echo $response[&#39;location&#39;] . "<br>"; // 结果:error.php?errcode=2
    // 可以访问user.php
    $response = GetWebContent("localhost", "GET /user.php HTTP/1.0", &#39;&#39;, $response[&#39;sessid&#39;]);
    echo $response[&#39;location&#39;] . "<br>"; // 结果:user.php
    
}
?>
Copier après la connexion


source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Recommandations populaires
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal