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
monsoon — Fast HTTP enumerator | Kitploit
Tools/GitHubGitHub/redteampentesting/monsoon
Information GatheringWeb SecurityFuzzingPenetration Testing
GitHubredteampentesting/monsoon

monsoon

Fast HTTP enumerator

View Repository
497411 month agoReviewed by Kitploit

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

monsoon

A fast HTTP enumerator that allows you to execute a large number of HTTP requests, filter the responses and display them in real-time

Release GitHub Action: Check Software License

monsoon is a fast and flexible HTTP fuzzer that can be used for a wide variety of actions ranging from content discovery to credential bruteforcing. You can read about the various use cases in our blog posts "Introducing monsoon - a lean and versatile HTTP enumerator" and "Bringing Monsoon to the Next Level".

In the following example, an HTTP GET request is sent for each entry in filenames.txt, ignoring all responses with the status code 404:

basic demo

Installation

As monsoon is a single statically linked binary, you can simply download a pre-build binary for your operating system from the releases page.

Building from source

These instructions will get you a compiled version of the code in the main branch. First, you'll need a recent version of the Go compiler, at least version 1.18. If your compiler is set up, clone the monsoon repository and run the following command from within the checkout:

root@kitploit:~
$ go build

Afterwards you'll find a monsoon binary in the current directory. It can be for other operating systems such as Windows as follows:

root@kitploit:~
$ GOOS=windows GOARCH=amd64 go build -o monsoon.exe

Documentation

The program has several subcommands, the most important one is fuzz which contains the main functionality. You can display a list of commands as follows:

root@kitploit:~
$ ./monsoon -h
Usage:
  monsoon command [options]

Available Commands:
  completion  Generate the autocompletion script for the specified shell
  fuzz        Execute and filter HTTP requests
  help        Help about any command
  list        List and filter previous runs of 'fuzz'
  show        Construct and display an HTTP request
  test        Execute and filter HTTP requests
  version     Print the current version

Options:
  -h, --help   help for monsoon

Use "monsoon [command] --help" for more information about a command.

For each command, calling it with --help (e.g. monsoon fuzz --help) will display a description of all the options, and calling monsoon help fuzz also shows an extensive list of examples.

Wordlists

The SecLists Project collects wordlists that can be used with monsoon.

Download Tool