An open API service indexing awesome lists of open source software.

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

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
```