Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/urakesh661/port-checker
Script for checking connection to ports using nc.
https://github.com/urakesh661/port-checker
Last synced: 3 months ago
JSON representation
Script for checking connection to ports using nc.
- Host: GitHub
- URL: https://github.com/urakesh661/port-checker
- Owner: urakesh661
- Created: 2020-05-09T13:46:14.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-05-09T13:58:03.000Z (over 4 years ago)
- Last Synced: 2024-05-31T09:37:09.291Z (5 months ago)
- Language: Shell
- Size: 3.91 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-hacking-lists - urakesh661/port-checker - Script for checking connection to ports using nc. (Shell)
README
# port-checker
Script for checking connection to ports using nc.The script checks for open ports on the provided list of host names.By default the script checks for ports 22,80,443.
A specific port number or a range of port numbers can also be provided.Usage:
1.Check for only default ports:
./port-checker.sh /home/rakesh/Documents/data/domains.txt
2.Check for a specific port:
./port-checker.sh /home/rakesh/Documents/data/domains.txt 80
3.Check for range of ports:
./port-checker.sh /home/rakesh/Documents/data/domains.txt 21-80
Credit:
The tool is inspired by @gwen001 https://bit.ly/2zqoC08 script.