Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
endsfuzzer — Fuzz a list of domains for specific endpoints | Kitploit
Tools/GitHubGitHub/ameenalkerdy/endsfuzzer
Information GatheringWeb SecurityFuzzing
GitHubameenalkerdy/endsfuzzer

endsfuzzer

Fuzz a list of domains for specific endpoints

View Repository
3 years agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

endsfuzzer

Go Report Card

endsfuzzer is a simple tool used to fuzz a list of domains for specific endpoints. It will check all the domains in a list for a single endpoint, then moves on to the next endpoint to check for.

Features

  • Fast. Makes use of go routines.
  • Gentler to servers. Fuzzes all hosts for one endpoint at a time.
  • Thorough. Checks HTTPS (port 443) and HTTP (port 80).

Installation

endsfuzzer requires Golang to run.

root@kitploit:~
go get -u github.com/ameenalkurdy/endsfuzzer

Usage

root@kitploit:~
Usage of endsfuzzer:
  -dL string
        Path to domains list (required)
  -eL string
        Path to endpoints list (required)
  -threads int
        Threads Number (default 40)
  -timeout int
        Connection timeout in seconds (default 15)

The fuzzed hosts in the file must not have a scheme (https/http).

root@kitploit:~
endsfuzzer -dL domains.txt -eL quickhits.txt
root@kitploit:~
endsfuzzer -dL domains.txt -eL quickhits.txt -timeout 20 -threads 50

Output:

root@kitploit:~
https://about.example.com/admin 403
http://dev.example.com/admin 302 -> https://www.example.com/
https://secure.example.com/admin 200
https://about.example.com/cgi-bin 403
http://dev.example.com/cgi-bin 302 -> https://www.example.com/
https://secure.example.com/cgi-bin 403
Download Tool