Skip to content

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.

License

Notifications You must be signed in to change notification settings

JuanBindez/direnumerate

Repository files navigation

Direnumerate

PyPI - Downloads PyPI - License Documentation Status GitHub Tag

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:

from direnumerate import Scan

url = "testphp.vulnweb.com"
wordlist = "wordlist.txt"

enum = Scan(url)
print(enum.dirs(log=True, wordlist_file=wordlist))

Port Scan:

from direnumerate import Scan

ip = '44.228.249.3'

enum = Scan(ip)
print(enum.ports(ports=[22, 443, 8080, 8280, 80, 25]))

About

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.

Topics

Resources

License

Stars

Watchers

Forks

Sponsor this project

 

Packages

No packages published