Collection of my made tools used for bug bounty π
- Installation:
go get github.com/virenpawar/Bug-Bounty-Toolz/forwardx
- Forwards request at provided url in parameter. Usage:
Request:
curl 0.0.0.0:88/?url=https://domain.com/path/you/want/to/visit
Response:
HTTP/1.1 302 Found
...
Location: https://domain.com/path/you/want/to/visit
...
<a href="https://domain.com/path/you/want/to/visit">Found</a>.
-
Use-case:
- Use this with the burp's intruder to request multiple urls and read source code of every request
- You can filter, sort and even grep any specific words in response.
- No more visiting each domain and doing view-source
- Can be used to work as
ffuf
and/ormeg
- Using intruder's cluster-bomb, multiple domain's multiple path can be visited and logged at same time.
-
Idea credit:
- Zseano's tweet regarding this methodology.
-
Suggestions and feedbacks are welcomed.