Skip to content

Latest commit

 

History

History
62 lines (50 loc) · 1.17 KB

README.md

File metadata and controls

62 lines (50 loc) · 1.17 KB

procel

Is a tiny network CLI made in Go with urfave/cli package, which can quickly look up IPs addresses, hosts, DNS NS, MX, TXT and scan ports. Mainly made to train the Go language and the implementation of your packages and project organization.


Installation

go get github.com/yabamiah/procel

Examples

Get a IP addresses by a host link

myapp ips --host wikipedia.org

Get a Host name by IP addresses

myapp host --ip 5.255.255.50

Get a DNS NS by a host link

myapp ns --host wikipedia.org

DNS MX

myapp mx --host wikipedia.org

DNS TXT

myapp txt --host wikipedia.org

Scan one port

myapp scan --host localhost --protocol tcp --port 8080

Scan all tcp ports

myapp scan --host localhost --protocol tcp --all

Injects random characters in a file

myapp archive --file file.txt --size 100

Quick Starting

git clone https://github.com/yabamiah/procel
cd procel
./build/myapp

Contributing

I'm still new to Go, and I appreciate any kind of help!