1
0
mirror of https://github.com/tennc/webshell.git synced 2026-01-03 13:19:09 +00:00

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

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