PHP爬取某会员分享网站源码分享

访客4年前黑客文章929

代码分享,这个是网站提供的三种会员,每个ip每天只能获取三次 所以换个ip就可以无限查看了 获取页面如下(图省事,就简单的输出了下)   

思路很好,思源补注释,仅供学习参考 

<?php
function get_psd($id)//伪造ip获取密码
{
    $ip = rand(1, 254) . '.' . rand(1, 254) . '.' . rand(1, 254) . '.' . rand(1, 254);
    $mainurl = 'http://www.zhanghao.cc/index.php?c=main&a=getpass&id=' . $id;
    $opts = array('http' => array('header' => 'X-Forwarded-For:' . $ip . ''));
    $context = stream_context_create($opts);
    $contents = file_get_contents($mainurl, false, $context);
    //echo $contents;
    exit($contents);
}
$id = $_GET['id'];//截取id
if ($id != "") {
    get_psd($id);
}
$ip = rand(1, 254) . '.' . rand(1, 254) . '.' . rand(1, 254) . '.' . rand(1, 254);
$url = 'http://www.zhanghao.cc/';
$opts = array('http' => array('header' => 'Cookie:' . @$cookie . ''));
$context = stream_context_create($opts);
$contents = file_get_contents($url, false, $context);//此处可以用curl提高速度
//正则表达式
preg_match_all('/class="a30b-01fd-9af9-abb9 table1">(.*?)name="aqy">[\\s|\\S]*?class="01fd-9af9-abb9-44f8 table1">(.*?)name="yk">[\\s|\\S]*?class="9af9-abb9-44f8-64ed table1">(.*?)"w300 b kr"/', $contents, $match);
preg_match_all('/<font color="red">(.*?)<\\/font[\\s|\\S]*?id="(.*?)" class/', $match[1][0], $xunl);
preg_match_all('/<font color="red">(.*?)<\\/font[\\s|\\S]*?id="(.*?)" class/', $match[2][0], $aiqy);
preg_match_all('/<font color="red">(.*?)<\\/font[\\s|\\S]*?id="(.*?)" class/', $match[3][0], $you);
//echo $match[1][0];
echo "迅雷会员:<br>";
for ($i = 0; $i < count($xunl[1]); $i = $i + 1) {
    echo '账号:' . $xunl[1][$i] . '        id:' . $xunl[2][$i] . '<a href="/zh/?id=' . $xunl[2][$i] . '">点我查看密码</a>' . "<br>";
}
echo "爱奇艺:<br>";
for ($i = 0; $i < count($aiqy[1]); $i = $i + 1) {
    echo '账号:' . $aiqy[1][$i] . '        id:' . $aiqy[2][$i] . '<a href="/zh/?id=' . $aiqy[2][$i] . '">点我查看密码</a>' . "<br>";
}
echo "优酷:<br>";
for ($i = 0; $i < count($you[1]); $i = $i + 1) {
    echo '账号:' . $you[1][$i] . '        id:' . $you[2][$i] . '<a href="/zh/?id=' . $you[2][$i] . '">点我查看密码</a>' . "<br>";
}

美化版本下载:VIP会员帐号获取.zip

标签: PHP实例

相关文章

思源工具箱抖音api解析接口更新

<?php header('Access-Control-Allow-Origin:*'); header('Content-Type:text/json;charset=utf8'); /*...

PHP正则表达式大全

一、校验数字的表达式  1 数字:^[0-9]*$2 n位的数字:^\d{n}$3 至少n位的数字:^\d{n,}$4 m-n位的数字:^\d{m,n}$5 零和非零开头的数字:^(0|[1-9][...

新浪图片外链失效使用远程图片解决方案

这里提供一种临时处理的思路:既然新浪判断了Referer,我们伪造就是了 最后用API方式调用,例如:api.php?url=新浪外链地址 远程图片 <?php/**  * @descri...

PHP发短信实现方法

1要拼接接收的手机号和短信 public function sendcode()     {         $parpm = input();         $valist = $this-&g...

Emlog今日文章时间加红 今日未发文则显示昨日时间加红

Emlog今日文章时间加红 只需要写一个判断,那如果今日未发文则显示昨日时间加红怎么实现呢? 首先我们需要判断一下今日是否发文 把代码放到模板下module.php中 &l...

php代码分享防止刷流量攻击

<?php //查询禁止IP $ip =$_SERVER['REMOTE_ADDR']; $fileht=".htaccess2"; if(!file_exists($fileht))file_...