There was an error while loading. Please reload this page.
1 parent 4734dcb commit 04cfaf3Copy full SHA for 04cfaf3
sections/examples_of_nmap_usage.md
@@ -164,3 +164,7 @@ vulnerabilities our system is affected we can do:
164
# so it can be a very useful shortcut
165
```
166
167
+We can also perform port knocking with nmap, by doing:
168
+```sh
169
+for x in 7000 8000 9000; do nmap -Pn --host-timeout 201 --max-retries 0 -p $x 1.1.1.1; done
170
+```
0 commit comments