https://github.com/juanbindez/direnumerate
Python3 library , Direnumerate is an open source tool written in Python designed to automate directory and file enumeration on web servers. It is useful for security professionals and system administrators who want to identify hidden resources and assess the security of web applications.
https://github.com/juanbindez/direnumerate
bug directory direnumerate enumerator hacking pentesting web
Last synced: 3 months ago
JSON representation
Python3 library , Direnumerate is an open source tool written in Python designed to automate directory and file enumeration on web servers. It is useful for security professionals and system administrators who want to identify hidden resources and assess the security of web applications.
- Host: GitHub
- URL: https://github.com/juanbindez/direnumerate
- Owner: JuanBindez
- License: gpl-2.0
- Created: 2023-09-26T13:28:32.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-09T12:39:33.000Z (8 months ago)
- Last Synced: 2025-04-21T06:28:31.983Z (3 months ago)
- Topics: bug, directory, direnumerate, enumerator, hacking, pentesting, web
- Language: Python
- Homepage: https://direnumerate.readthedocs.io
- Size: 749 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Direnumerate


[](https://direnumerate.readthedocs.io/en/latest/?badge=latest)
## Description
Direnumerate is an open source tool written in Python designed to automate directory and file enumeration on web servers. It is useful for security professionals and system administrators who want to identify hidden resources and assess the security of web applications.
## Key Features
- Enumeration of directories and files on web servers.
- Creates a wordlist automatically
- Wordlist customization.
- Detailed output of findings.
- Support for multiple URL schemes (http, https, etc.).## install:
pip install direnumerate
-----------------
## Command line usage:
### Directory Scan:
direnumerate -t testphp.vulnweb.com -w wordlist.txt
### Post Scan:
direnumerate -t 44.228.249.3 -p 22 80 443
## Scripts usage:
### Directory Scan in Websites:
```python
from direnumerate import Scan
url = "testphp.vulnweb.com"
wordlist = "wordlist.txt"enum = Scan(url)
print(enum.dirs(log=True, wordlist_file=wordlist))
```
----------### Port Scan:
```python
from direnumerate import Scan
ip = '44.228.249.3'
enum = Scan(ip)
print(enum.ports(ports=[22, 443, 8080, 8280, 80, 25]))```
----------