Metadata-Version: 2.1
Name: uro
Version: 0.0.2
Summary: declutters url lists
Home-page: https://github.com/s0md3v/uro
Author: Somdev Sangwan
Author-email: s0md3v@gmail.com
License: Apache-2.0 License
Download-URL: https://github.com/s0md3v/uro/archive/v0.0.2.zip
Keywords: crawling,fuzzing
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Operating System :: OS Independent
Classifier: Topic :: Security
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3.4
Description-Content-Type: text/markdown

# uro
Using a URL list for security testing can be painful as there are a lot of URLs that have uninteresting/duplicate content; `uro` aims to solve that.

It doesn't make any http requests to the URLs and removes:
- human written content e.g. blog posts
- urls with same path but parameter value difference
- incremental urls e.g. `/cat/1/` and `/cat/2/`
- image, js, css and other static files

#### Usage
First, install uro with pip:
```
pip3 install uro
```
Now, there's just one way to use it, no args, no bullshit.
```
cat urls.txt | uro
```

![uro-demo](https://i.ibb.co/x2tWCC5/uro-demo.png)


