https://github.com/affix/doopla
URL De-duplicator for pentesting and bug bounty
https://github.com/affix/doopla
Last synced: about 1 year ago
JSON representation
URL De-duplicator for pentesting and bug bounty
- Host: GitHub
- URL: https://github.com/affix/doopla
- Owner: affix
- License: mit
- Created: 2022-08-23T22:43:10.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-08-23T23:04:01.000Z (almost 4 years ago)
- Last Synced: 2025-01-14T14:59:35.606Z (over 1 year ago)
- Language: Go
- Size: 3.91 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
Doopla
======
Using a URL list for security testing can be painful as there are a lot of URLs that have uninteresting/duplicate content, doopla aims to make your life easier.
Doopla cleans up :
* Human Content
* Duplicate URLs based on parameters
* Removal of static content
Doopla is simple, It doesn't connect or verify your URLs.
installation :
```
$ go get -u github.com/affix/doopla
```
usage :
```
$ cat urls.txt | doopla
```
You can even chain doopla with other tools to create powerful one liners
```
$ waybackurls example.com | doopla | qsreplace '">alert(1)' | airixss -payload '">alert(1)'
```
Before :
```
https://example.com/test.php?u=hello&p=doopla
https://example.com/test.php?u=hello&s=doopla
https://example.com/test.php?u=hello
https://example.com/test.php?u=world
https://example.com/test.php?u=hello&p=world
https://example.com/test.png
https://example.com/test/this/is/12345-a-blog-post
https://example.com/test.php?u=hello&p=world&d=oopla
```
After :
```
https://example.com/test.php?u=hello&p=doopla
https://example.com/test.php?u=hello&s=doopla
https://example.com/test.php?u=hello
https://example.com/test.php?u=world
https://example.com/test.php?u=hello&p=world&d=oopla
```