Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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)
```
---