Skip to content
KitploitKITPLOIT
उपकरणएक्सप्लॉइटब्लॉग
Log in
जमा करें
उपकरणएक्सप्लॉइटब्लॉग
जमा करें

हैकिंग, पेनटेस्ट और साइबर सुरक्षा उपकरण आपके सुरक्षा शस्त्रागार के लिए!

Kitploit हैकिंग, साइबर सुरक्षा और पेंटेस्टिंग टूल्स की एक निर्देशिका है। कमजोरियों को खोजने, सिस्टम का विश्लेषण करने, परीक्षण को स्वचालित करने और अपनी सुरक्षा को मजबूत करने के लिए नवीनतम प्रोजेक्ट अपडेट खोजें।

··फ़ीड·संपर्क·गोपनीयता·© 2026 Kitploit

टूल निर्देशिका

श्रेणियाँ

सभी श्रेणियाँ देखें
Loading categories
godirb — Fast and easy-to-use directory brute-forcer written in Go. | Kitploit
उपकरण/GitHubGitHub/mycode83/godirb
Vulnerability ScannersWeb Vulnerability ScannersInformation GatheringWeb SecurityFuzzingPenetration Testing
GitHubmycode83/godirb

godirb

Fast and easy-to-use directory brute-forcer written in Go.

रिपॉजिटरी देखें
57010 दिन पहलेअभी तक समीक्षित नहीं

सबसे लोकप्रिय

सभी देखें →

हमारे समुदाय द्वारा सबसे अधिक उपयोग किए जाने वाले उपकरण खोजें।

सभी उपकरण खोजें

हमारे उपकरणों का संग्रह ब्राउज़ करें

सभी उपकरण देखें →
साझा करें
अनुरोधित भाषा में सामग्री उपलब्ध नहीं है। अंग्रेज़ी संस्करण दिखाया जा रहा है।

godirb

Fast, modern directory, file, port and FUZZ brute-forcer written in Go.

Built for quick scans where you want a modern dirb-like tool: run it, get useful results, tune the obvious flags, and avoid dragging a full fuzzing framework into a simple job.

License Release Go Stars

📦 Installation

Go

root@kitploit:~
go install github.com/MyCode83/godirb@latest

Homebrew

root@kitploit:~
brew install MyCode83/godirb/godirb

Winget

टूल डाउनलोड करें
root@kitploit:~
winget install MyCode83.godirb

Binary

Download the latest release for your platform from the Releases page and add it to your PATH.


🚀 Quick Start

Basic scan

root@kitploit:~
godirb -u https://example.com

Recursive

root@kitploit:~
godirb -u https://example.com -r

Recursive with a depth limit

root@kitploit:~
godirb -u https://example.com -r --depth 2

Custom wordlist

root@kitploit:~
godirb -u https://example.com -w paths.txt

JSON output

root@kitploit:~
godirb -u https://example.com --json -o results.json

✨ Why godirb?

godirb is designed for the common case: you want to enumerate directories and files quickly, without configuring a large fuzzing framework.

Highlights

  • ⚡ Fast native Go binary
  • 📦 Single executable
  • 📚 Embedded wordlists
  • 🔄 Recursive scanning
  • 📂 Directory and file discovery
  • 🎯 Wildcard filtering / response calibration
  • 🌐 Port fuzzing (http://host:FUZZ)
  • 📄 JSON & CSV output
  • 🧩 Simple CLI

📊 godirb vs DirSearch

DirSearch is a mature and feature-rich web path scanner.

godirb intentionally focuses on the most common workflow: install, run and get useful results with minimal setup.

FeaturegodirbDirSearch
Find files and folders✅✅
Recursive scan✅✅
Custom wordlists✅✅
Written in Go✅❌
Single binary✅❌
Embedded default wordlists✅❌
Works without runtime wordlist files✅❌
Port fuzzing (http://host:FUZZ)✅❌

📦 Features

Scanning

  • Directory and file brute-forcing
  • Recursive mode (-r, --recursive)
  • Recursive depth limit (--depth, default: 2)
  • Extensions (-x, --ext)
  • Custom wordlists (-w, --wordlist)
  • FUZZ placeholder mode

Embedded Wordlists

  • small
  • medium (default)
  • big
  • ports
  • payloads
  • xss
  • lfi

Output

  • Standard text
  • Quiet mode
  • JSON
  • CSV
  • File output

Control

  • Threads (-t, --threads)
  • Ignore status codes (-i, --ignore)
  • Default ignored codes: 404,400,405,408
  • Wildcard filtering / response calibration

💻 Examples

Basic scan

root@kitploit:~
godirb -u https://example.com

Recursive

root@kitploit:~
godirb -u https://example.com -r

Recursive with one nested level

root@kitploit:~
godirb -u https://example.com -r --depth 1

Custom wordlist

root@kitploit:~
godirb -u https://example.com -w paths.txt

Extensions

root@kitploit:~
godirb -u https://example.com -x php,txt,bak

FUZZ parameter

root@kitploit:~
godirb -u "https://example.com/search?q=FUZZ" -w payloads

Port fuzzing

root@kitploit:~
godirb -u https://example.com:FUZZ

Export JSON

root@kitploit:~
godirb -u https://example.com --json -o results.json

Export CSV

root@kitploit:~
godirb -u https://example.com --csv -o results.csv

📋 Example Output

root@kitploit:~
DIR       200      1234 B  https://example.com/admin
FILE      200       842 B  https://example.com/login.php
DIR       403       795 B  https://example.com/uploads

📖 Embedded wordlists
NamePurpose
smallcommon.txt from SecLists
mediumDefault raft-medium-directories
bigLarger enumeration DirBuster big
portsPort fuzzing
payloadsGeneric payloads
xssXSS payloads
lfiLFI payloads

⚠️ Disclaimer

Use godirb only for authorized security testing, labs and CTFs.

You are responsible for obtaining permission before scanning any target.


📄 License

Licensed under the MIT License. See LICENSE for details.