Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tty47/tcpscan
Tcp ports scanner tool
https://github.com/tty47/tcpscan
go golang network network-analysis network-analyzer networking scan scanner security tools
Last synced: 5 days ago
JSON representation
Tcp ports scanner tool
- Host: GitHub
- URL: https://github.com/tty47/tcpscan
- Owner: tty47
- Created: 2021-10-22T16:09:17.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-10-27T22:40:05.000Z (over 3 years ago)
- Last Synced: 2024-12-22T03:32:48.718Z (about 2 months ago)
- Topics: go, golang, network, network-analysis, network-analyzer, networking, scan, scanner, security, tools
- Language: Go
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TCP Ports Scanner
#
## How to use:
```go
-host string Host or ip to scan...
-range string Range port to scan: 80,443,1-65535,1000-2000, ...
-threads int Number of threads
-timeout Seconds per threads
```Example:
go run main.go -host 192.168.0.12 -threads 1000## Build
In order to build the project into a binary tool, execute the following commands:
```go
go build -ldflags "-s -w" -o bin/tcpScan
```---
Jose Ramón Mañes