Skip to content
/ doopla Public

URL De-duplicator for pentesting and bug bounty

License

Notifications You must be signed in to change notification settings

affix/doopla

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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 '"><script>alert(1)</script>' | airixss -payload '"><script>alert(1)</script>'

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

About

URL De-duplicator for pentesting and bug bounty

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages