add caidao plug and update caidao readme.md

This commit is contained in:
tennc 2014-11-04 11:29:23 +08:00
parent ec8d786aaf
commit 170c6ea7ab
11 changed files with 26 additions and 0 deletions

View file

@ -1,3 +1,9 @@
这个是菜刀一句话客户端集合,如需要标准的,菜刀工具里是自带的。
需要菜刀原程序的请自行百度 or google
还有一点就是 菜刀最后的版本是caidao-20111116
zip压缩包的md5: 04A4980C9E86B5BA267F8E55CEAC2119
"一句话"的艺术——简单的编码和变形绕过检测 url: http://drops.wooyun.org/tips/839

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1,3 @@
这个是菜刀插件包,比较早,各位就将就用吧~
前人种树,后人乘凉。
谢谢各位大牛 ^_^

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View 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);
}