Add Scripts/Bash/Open Port Checker.md

This commit is contained in:
2024-07-26 15:29:13 -06:00
parent fc234b9737
commit d44de958b9

View File

@ -0,0 +1,7 @@
**Purpose**:
If you want to check if a certain TCP port is open on a server.
## Netcat Command
``` sh
netcat -z -n -v <IP ADDRESS>1 <PORT>
```