Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/roma-glushko/magento2-dir-buster
https://github.com/roma-glushko/magento2-dir-buster
dirbuster fuzzing magento2 security
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/roma-glushko/magento2-dir-buster
- Owner: roma-glushko
- License: mit
- Created: 2020-03-08T13:56:44.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T11:35:56.000Z (almost 2 years ago)
- Last Synced: 2024-10-10T19:39:44.469Z (26 days ago)
- Topics: dirbuster, fuzzing, magento2, security
- Language: Python
- Homepage:
- Size: 6.84 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
README
# Magento2 Dir Buster
A list of well-know Magento places that normally should be hidden or protected by server configurations.
## Usage
This list is compatible with commonly-used tools for webfuzzing like GoBuster:
```bash
gobuster dir -u https://www.magento.com/ -w magento2-dir-list.txt -k
```Also, you can use prepare-sitemap.py util to prepare sitemap.xml to GoBuster scan:
```bash
python utils/sitemap/prepare-sitemap.py -u https://www.example.com/sitemap.xml -bu https://www.example.com/
```You will get sitemap-urls.txt file with the ready to use urls. To get the report with accessible or not accessible urls:
```bash
gobuster dir -u https://www.example.com/ -w sitemap-urls.txt -v -o gobuster-report.txt
```