Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/karapetianash/pscan
This CLI tool executes a TCP port scan on a list of hosts similarly to the Nmap command.
https://github.com/karapetianash/pscan
cobra viper
Last synced: about 2 months ago
JSON representation
This CLI tool executes a TCP port scan on a list of hosts similarly to the Nmap command.
- Host: GitHub
- URL: https://github.com/karapetianash/pscan
- Owner: karapetianash
- License: mit
- Created: 2024-04-28T09:27:41.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-05-11T20:23:28.000Z (8 months ago)
- Last Synced: 2024-05-11T21:25:11.090Z (8 months ago)
- Topics: cobra, viper
- Language: Go
- Homepage:
- Size: 83 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Description
pScan - short for Port Scanner - executes TCP port scan
on a list of hosts.
pScan allows you to add, list, and delete hosts from the list.
pScan executes a port scan on specified TCP ports. You can customize the
target ports using a command line flag.
The utility also supports autocompletion.Full documentation is also available [here](docs/pScan.md).
## Usage
To build the app, run the following command in the root folder:```
$ go build .
```
Above command will generate `pScan` file. This name is defined in the `go.mod` file, and it will be the initialized module name.After that you can run the program using the cmd.\
Example of adding a new host to list:```
$ ./pScan.exe hosts add 168.168.0.192"
```### Options
```
--config string config file (default is $HOME/.pScan.yaml)
-h, --help help for pScan
-f, --hosts-file string pScan hosts file (default "pScan.hosts")
```