Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 days 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 (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-23T03:02:45.000Z (6 months ago)
- Last Synced: 2024-05-23T03:17:24.279Z (6 months ago)
- Topics: bug, directory, direnumerate, enumerator, hacking, pentesting, web
- Language: Python
- Homepage: https://direnumerate.readthedocs.io
- Size: 727 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Direnumerate
![PyPI - Downloads](https://img.shields.io/pypi/dm/direnumerate)
![PyPI - License](https://img.shields.io/pypi/l/direnumerate)
[![Documentation Status](https://readthedocs.org/projects/direnumerate/badge/?version=latest)](https://direnumerate.readthedocs.io/en/latest/?badge=latest)
![GitHub Tag](https://img.shields.io/github/v/tag/JuanBindez/direnumerate?include_prereleases&link=https%3A%2F%2Fgithub.com%2FJuanBindez%2Fdirenumerate%2Ftags)## 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]))```
----------