> php教程 > php手册 > php 模拟用户自动在qq空间发表文章

php 模拟用户自动在qq空间发表文章

WBOY
풀어 주다: 2016-05-25 16:39:04
원래의
1482명이 탐색했습니다.

我们这里是一个简单的利用php来php 模拟登录后再到QQ空间发送文章的一个简单的程序,有需要的朋友可以参考,或改进可以给我意见,代码如下:

<?php
//模拟get post请求函数
/*
函数说明: 
功能:请求方式可以get,post,可以发送的cookie,保存的cookiefile文件 
参数:$url-----请求url    $referer---来源url    $postdata----------用于post请求的数据,&#39;&#39;为get请求 
$cookie---------发送的cookie     $cookiefile-----保存的cookiefile文件 
返回值:返回获取的源码 
*/
function request($url, $referer = &#39;&#39;, $postdata = &#39;&#39;, $cookie = &#39;&#39;, $cookiefile = &#39;&#39;) {
    //header设置
    $header = &#39;&#39;;
    $header.= "Content-Type: application/x-www-form-urlencodedrn"; //内容请求类型
    $header.= "User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0)rn"; //浏览器字段
    $header.= "Referer:" . $referer . "rn"; //设置来源地址
    $header.= "Cookie:" . $cookie; //设置cookie,默认空
    //请求方法get post,通过$postdata空---get,非空----post
    if ($postdata == &#39;&#39;) $method = &#39;GET&#39;;
    else $method = &#39;POST&#39;;
    //定义用于创建流的数组
    $opts = array();
    $opts[&#39;http&#39;] = array(
        &#39;method&#39; => $method,
        &#39;header&#39; => $header,
        &#39;content&#39; => $postdata
    );
    //生成流
    $context = stream_context_create($opts);
    //发送请求,获取源码
    $yuanma = file_get_contents($url, false, $context);
    //是否需要保存cookie到文件,$cookiefile不空时
    if ($cookiefile != &#39;&#39;) {
        echo &#39;需要保存cookie<br>&#39;;
        //判断保存文件存在,不存在创建
        if (!file_exists($cookiefile)) {
            file_put_contents($cookiefile, &#39;&#39;);
        }
        //获取cookie,保存起来
        $response = implode("rn", $http_response_header);
        //用正则匹配cookie
        $zengze = "/Set-Cookie:(.*?)rn/";
        preg_match_all($zengze, $response, $cookie_arr);
        //存在匹配,保存
        if (!emptyempty($cookie_arr[1])) {
            $cookiestr = implode(&#39;;&#39;, $cookie_arr[1]);
            file_put_contents($cookiefile, $cookiestr);
            echo &#39;成功保存cookie<br>&#39;;
        } else echo &#39;没有匹配到cookie<br>&#39;;
    } //end if($cookiefile!=&#39;&#39;)
    //返回源码
    return $yuanma;
} //end function request($url,$referer,$postdata,$cookie,$cookiefile)
//获得当前的脚本网址
function GetCurUrl() {
    if (!emptyempty($_SERVER["REQUEST_URI"])) {
        $scriptName = $_SERVER["REQUEST_URI"];
        $nowurl = $scriptName;
    } else {
        $scriptName = $_SERVER["PHP_SELF"];
        if (emptyempty($_SERVER["QUERY_STRING"])) {
            $nowurl = $scriptName;
        } else {
            $nowurl = $scriptName . "?" . $_SERVER["QUERY_STRING"];
        }
    }
    return $nowurl;
}
//获得当前文件名
$nowurl = GetCurUrl();
//echo $nowurl;
//表单输出,没有提交时
if (!isset($_POST[&#39;qq&#39;])) {
    echo &#39;<form method="post" action="&#39; . $nowurl . &#39;"> 
qq号码:<input type="text" name="qq"><br> 
g_tk:<input type="text" name="g_tk"><br> 
标题:<input type="text" name="title"><br> 
内容:<input type="text" name="content"><br> 
<input type="submit" value="发表文章"> 
</form>&#39;;
    die();
}
/*
提交参数说明: 
$_POST[&#39;qq&#39;]---用户QQ 
$_POST[&#39;g_tk&#39;]--这个参数很关键,获得这个参数,需要抓下发表时提交的post地址后面调用的g_tk=1276354485, 
路POST http://b1.qzone.qq.com/cgi-bin/blognew/blog_add?g_tk=1276354485里的g_tk=1276354485 
$_POST[&#39;title&#39;]---文章标题,不得空 
$_POST[&#39;content&#39;]---文章内容,不得空 
*/
header(&#39;Content-Type:text/html;charset=gb2312&#39;);
set_time_limit(0);
//ob_end_clean();
//ob_start();
//获取cookie文件,不存在创建,并退出程序
$cookiefile = dirname(__FILE__) . &#39;qq_cookie.txt&#39;;
if (!file_exists($cookiefile)) {
    echo &#39;qq_cookie.txt不存在,自动创建,请填写抓包的cookie<br>&#39;;
    file_put_contents($cookiefile, &#39;&#39;);
    die(&#39;程序退出&#39;);
}
//存在,读取cookie
else {
    $cookie = file_get_contents($cookiefile); //登录cookie
    //$cookie=urlencode($cookie);
    
}
//echo &#39;cookie:&#39;.$cookie.&#39;<br>&#39;;
//构成发表页,post数据等的重要信息
//qq号码
if (emptyempty($_POST[&#39;qq&#39;]) || preg_match(&#39;/[^0-9]/is&#39;, $_POST[&#39;qq&#39;])) die(&#39;qq号码有误,必须数字&#39;);
else $qq = $_POST[&#39;qq&#39;]; //qq号
if (emptyempty($_POST[&#39;g_tk&#39;]) || preg_match(&#39;/[^0-9]/is&#39;, $_POST[&#39;g_tk&#39;])) die(&#39;post重要参数g_tk不合法,必须数字,请使用抓包的值&#39;);
$g_tk = $_POST[&#39;g_tk&#39;];
$title = emptyempty($_POST[&#39;title&#39;]) ? die(&#39;标题不得空&#39;) : $_POST[&#39;title&#39;]; //文章标题
$content = emptyempty($_POST[&#39;content&#39;]) ? die(&#39;内容不得空&#39;) : $_POST[&#39;content&#39;]; //内容
$category = &#39;个人日记&#39;; //分类
$fabiao = &#39;http://b1.qzone.qq.com/cgi-bin/blognew/blog_add?g_tk=&#39; . $g_tk; //发表处理页
$referer = &#39;http://ctc.qzs.qq.com/qzone/v5/toolpages/fp_gbk.html&#39;; //来源页
$r1 = &#39;http://user.qzone.qq.com/&#39; . $qq . &#39;/infocenter&#39;; //列表访问来源页
$postdata = &#39;uin=&#39; . $qq . &#39;&category=&#39; . urlencode($category) . &#39;&title=&#39; . urlencode($title) . &#39;&content=&#39; . urlencode($content) . &#39;&html=&#39; . urlencode(&#39;<div class="blog_details_20110920">&#39; . $content . &#39;</div>&#39;) . &#39;&tweetflag=0&cb_autograph=1&topflag=0&needfeed=0&g_tk=&#39; . $g_tk . &#39;&_fp_refer=http%3A%2F%2Fctc.qzs.qq.com%2Fqzone%2Fnewblog%2Fv5%2Feditor.html%3Fsource%3D1%7Chttp%3A%2F%2Fctc.qzs.qq.com%2Fqzone%2Fnewblog%2Fv5%2Feditor.html%3Fsource%3D1%3Chttp%3A%2F%2Fuser.qzone.qq.com%2F&#39; . $qq . &#39;%2Fmain&#39;; //post数据
//$postdata=urlencode($postdata);
//echo $postdata;
//发送请求,获取源码
$yuanma = request($fabiao, $r1, $postdata, $cookie, &#39;&#39;);
if (strpos($yuanma, &#39;发表成功&#39;)) echo $title . &#39;  发表成功<br>&#39;;
else echo &#39;发表失败:右键查看源码,可以看到具体错误&#39; . $yuanma;
?>
로그인 후 복사

php脚本:注意需要保存命名随意已经自动识别,我是命名为qq_fabiao.php,然后设置提交地址,cookie文件qq_cookie.txt需要填写抓包获取的空间登录cookie,以通过登录验证,qq_cookie.txt与php文件同目录.

提交参数说明:

$_POST['qq']---用户QQ

$_POST['g_tk']--这个参数很关键,获得这个参数,需要抓下发表时提交的post地址后面调用的g_tk=1276354485,POST http://b1.qzone.qq.com/cgi-bin/blognew/blog_add?g_tk=1276354485里的g_tk=1276354485

$_POST['title']---文章标题,不得空

$_POST['content']---文章内容,不得空


本文地址:

转载随意,但请附上文章地址:-)

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 추천
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿