mirror of
https://github.com/tennc/webshell
synced 2024-11-10 05:44:11 +00:00
add caidao plug and update caidao readme.md
This commit is contained in:
parent
ec8d786aaf
commit
170c6ea7ab
11 changed files with 26 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
|||
这个是菜刀一句话客户端集合,如需要标准的,菜刀工具里是自带的。
|
||||
|
||||
需要菜刀原程序的请自行百度 or google
|
||||
|
||||
还有一点就是 菜刀最后的版本是caidao-20111116
|
||||
|
||||
zip压缩包的md5: 04A4980C9E86B5BA267F8E55CEAC2119
|
||||
|
||||
"一句话"的艺术——简单的编码和变形绕过检测 url: http://drops.wooyun.org/tips/839
|
||||
|
|
BIN
caidao-shell/caidao-plug/ASP读终端端口.ccc
Normal file
BIN
caidao-shell/caidao-plug/ASP读终端端口.ccc
Normal file
Binary file not shown.
BIN
caidao-shell/caidao-plug/Aspx文件搜索.ccc
Normal file
BIN
caidao-shell/caidao-plug/Aspx文件搜索.ccc
Normal file
Binary file not shown.
BIN
caidao-shell/caidao-plug/Aspx设置权限.ccc
Normal file
BIN
caidao-shell/caidao-plug/Aspx设置权限.ccc
Normal file
Binary file not shown.
BIN
caidao-shell/caidao-plug/PHP批量挂马.ccc
Normal file
BIN
caidao-shell/caidao-plug/PHP批量挂马.ccc
Normal file
Binary file not shown.
3
caidao-shell/caidao-plug/README.md
Normal file
3
caidao-shell/caidao-plug/README.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
这个是菜刀插件包,比较早,各位就将就用吧~
|
||||
前人种树,后人乘凉。
|
||||
谢谢各位大牛 ^_^
|
BIN
caidao-shell/caidao-plug/asp目录写权限检测.ccc
Normal file
BIN
caidao-shell/caidao-plug/asp目录写权限检测.ccc
Normal file
Binary file not shown.
BIN
caidao-shell/caidao-plug/php_HTTP代理.ccc
Normal file
BIN
caidao-shell/caidao-plug/php_HTTP代理.ccc
Normal file
Binary file not shown.
BIN
caidao-shell/caidao-plug/phpspy2011.ccc
Normal file
BIN
caidao-shell/caidao-plug/phpspy2011.ccc
Normal file
Binary file not shown.
BIN
caidao-shell/caidao-plug/php端口转向.ccc
Normal file
BIN
caidao-shell/caidao-plug/php端口转向.ccc
Normal file
Binary file not shown.
17
caidao-shell/caidao-plug/扫描端口_php.ccc
Normal file
17
caidao-shell/caidao-plug/扫描端口_php.ccc
Normal file
|
@ -0,0 +1,17 @@
|
|||
for ($i=1; $i<255; $i++)
|
||||
{
|
||||
|
||||
$strHost = "192.168.1.{$i}";
|
||||
$fp = @fsockopen($strHost, 80, $errno, $errstr, 1);
|
||||
if (!$fp)
|
||||
{
|
||||
print "{$i}.{$errstr}\n";
|
||||
}
|
||||
else
|
||||
{
|
||||
print "{$i}.open\n";
|
||||
}
|
||||
|
||||
fclose($fp);
|
||||
|
||||
}
|
Loading…
Reference in a new issue