Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/MindPatch/pmg
- Owner: knassar702
- License: apache-2.0
- Created: 2020-07-30T19:40:37.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-08-02T15:57:23.000Z (over 4 years ago)
- Last Synced: 2024-05-08T01:34:07.023Z (7 months ago)
- Topics: bugbounty, bugbounty-tool, bughunting, python, regex, security
- Language: Python
- Homepage:
- Size: 185 KB
- Stars: 18
- Watchers: 1
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-hacking-lists - knassar702/pmg - Extract parameters/paths from urls (Python)
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)'
]```