Menu

Post image 1
Post image 2
1 / 2
0

I built a CLI session manager for web hacking. I'm tired of copy-pasting auth tokens 50 times a day

DEV Community·lucap123·23 days ago
#LRmhtMEf
#cli#security#showdev#tooling#scope#target
Reading 0:00
15s threshold
Cover image for I built a CLI session manager for web hacking. I'm tired of copy-pasting auth tokens 50 times a day

lucap123

Every pentest I do the same thing: copy the same Authorization header
into curl, then ffuf, then nuclei. Token refreshes? Update everything.
Two targets at once? Constant confusion.

So I built scope, a lightweight CLI tool that remembers your session
(base URL, headers, proxy) and injects it automatically into whatever
tool you run.

scope new target --url https://api.target.com
scope set header "Authorization: Bearer eyJ..."
scope use target

scope curl /users # headers auto-injected
scope ffuf -w words.txt -u /FUZZ
scope nuclei -t exposures/

No GUI, no account, no cloud. Single binary, sessions stored as plain
JSON in ~/.scope/

GitHub: https://github.com/lucap123/Scope

Read More