Skip to content

azuax/go-simple-http-dir-fuzzer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simple HTTP directory fuzzer

Introduction

A simple implementation of an HTTP directory fuzzer using goroutines.

Usage

Direct execution

go run functions.go dirfuzzer.go -u <URL> -w <WORDLIST> [-t <number of threads>]

Where: -u Base url which will be tested. Example: https://www.github.com -w Wordlist file where every line is a path. Example: /api -t Number of concurrent goroutines (similar to threads in other languages)

Compiling

go build -o binary/dir-fuzzer functions.go dirfuzzer.go

And can be executed as:

./binary/dir-fuzzer -u <URL> -w <WORDLIST> [-t <number of threads>]

TODO

  • Save results to a file

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages