Skip to content

Commit b075c80

Browse files
authored
Update README.md
1 parent 280dddc commit b075c80

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,22 @@ nmap -p445 10.11.1.0 --script smb-vuln-ms17-010
106106
nmap -v -sn -PE -n --min-hostgroup 1024 --min-parallelism 1024 -oG tmp -iL ip.txt | awk '{print $5}' | grep -v "latency)." >ok_ip.txt
107107
```
108108

109+
## masscan
110+
注意速率问题,根据带宽调整。100m带宽可调3000,注意是vps,不是家庭宽带。
111+
112+
关于编译,直接git拉下来,make就行。生成的文件在bin下面。
113+
扫描单ip
114+
```
115+
masscan 192.168.1.110 -p 1-65535 --rate=1000
116+
```
117+
扫描列表
118+
```
119+
masscan -iL ip.txt -p1-65535 --rate=1000 -oL port.txt
120+
```
121+
122+
123+
124+
109125
## 端口列表
110126

111127
```

0 commit comments

Comments
 (0)