Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 501 Bytes

File metadata and controls

30 lines (22 loc) · 501 Bytes

pathslapper

Tool to append a path to each URL from stdin. Useful for quick enumeration.

Installation:

Using go:

go install github.com/ayushkr12/pathslapper@latest

Usage:

$ cat urls.txt
https://example.com
https://test.io/

$ cat urls.txt | pathslapper "/admin"
https://example.com/admin
https://test.io/admin

$ cat paths.txt
/api/v1/admin
/test/db

$ cat paths.txt | pathslapper "https://example.org"
https://example.org/api/v1/admin
https://example.org/test/db