Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lccodder/port-scanner
Simple CLI port scanning tool written in Go
https://github.com/lccodder/port-scanner
go golang portscanner
Last synced: 20 days ago
JSON representation
Simple CLI port scanning tool written in Go
- Host: GitHub
- URL: https://github.com/lccodder/port-scanner
- Owner: LCcodder
- License: mit
- Created: 2024-10-19T20:17:23.000Z (27 days ago)
- Default Branch: main
- Last Pushed: 2024-10-20T06:59:13.000Z (26 days ago)
- Last Synced: 2024-10-20T12:02:52.392Z (26 days ago)
- Topics: go, golang, portscanner
- Language: Go
- Homepage:
- Size: 1.79 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# **CLI app for server ports scanning**
### **Command line interface tool that allows to scan for opened ports on remoted server**
+ Makes TPC requests concurrently
+ Works with local ports scanning
+ Scans single port or ports range
## Usage
+ Build the app
```Shell
cd cmd && go build .
```
+ Launch with -h flag to see allowed arguments
```
Usage of cmd.exe:
-h string
Target hostname (can be IPv4 or domain address), for ex. 'google.com' (default "0.0.0.0")
-p string
Ports range or single port (from 0 to 65535), for ex. '80:100' or '443' (default "0-65535")
-t uint
Timeout duration (in milliseconds) (default 500)
```
---