go-stare
A fast & light web screenshot without headless browser but Chrome DevTools Protocol!
Resources
Installation
from Binary
The installation is easy. You can download a prebuilt binary from releases page, unpack and run! or with
▶ curl -sSfL https://git.io/go-stare | sh -s -- -b /usr/local/bin
from Source
If you have go1.14+ compiler installed and configured:
▶ GO111MODULE=on go get -v github.com/dwisiswant0/go-stare
In order to update the tool, you can use -u
flag with go get command.
from GitHub
▶ git clone https://github.com/dwisiswant0/go-stare
▶ cd go-stare
▶ go build .
▶ mv go-stare /usr/local/bin
Usage
Basic Usage
Simply, go-stare can be run with:
▶ go-stare -t "http://domain.tld"
Flags
▶ go-stare -h
This will display help for the tool. Here are all the switches it supports.
Flag | Description |
---|---|
-t, --target | Target to captures (single target URL or list) |
-c, --concurrency | Set the concurrency level (default: 5) |
-o, --output | Screenshot directory output results (default: ./out) |
-q, --quality | Image quality to produce (default: 75) |
-T, --timeout | Maximum time (seconds) allowed for connection (default: 10) |
-v, --verbose | Verbose mode |
Target
You can define a target in 3 ways:
Single URL
▶ go-stare -t "http://domain.tld"
URLs from list
▶ go-stare -t /path/to/urls.txt
from Stdin
In case you want to chained with other tools.
▶ subfinder -d domain.tld -silent | httpx -silent | go-stare -o ./out
# or
▶ gau domain.tld | go-stare -o ./out -q 50
Help & Bugs
If you are still confused or found a bug, please open the issue. All bug reports are appreciated, some features have not been tested yet due to lack of free time.
License
go-stare released under MIT. See LICENSE
for more details.
Version
Current version is 0.0.2 and still development.