Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/MindPatch/pmg

Extract parameters/paths from urls
https://github.com/MindPatch/pmg

bugbounty bugbounty-tool bughunting python regex security

Last synced: 21 days ago
JSON representation

Extract parameters/paths from urls

Awesome Lists containing this project

README

        

# pmg
Extract parameters/paths from urls

## usage :
* `$ cat urls.txt | python3 PmG.py`
#### results

* Save results
`$ cat urls.txt | python3 PmG.py ResultsFile.txt`

here you can add more parameters/paths using regex :D

```python
wordlist = [
r'(url=|password=|link=|u=|word=|username=|link_id=)',
r'\+CSCOU+', # CVE-2020-3452
r'\.(sql|db|tar|backup|bak|zip|git|php)'
]

```