Skip to content
KitploitKITPLOIT
ToolsBlog
Einreichen
ToolsBlog
Einreichen

Hacking-, PenTest- und Cybersicherheits-Tools für Ihr Sicherheitsarsenal!

Kitploit ist ein Verzeichnis von Hacking-, Cybersicherheits- und Pentesting-Tools. Entdecken Sie die neuesten Projekt-Updates, um Schwachstellen zu finden, Systeme zu analysieren, Tests zu automatisieren und Ihre Sicherheit zu stärken.

··Feeds·Kontakt·Datenschutz·© 2026 Kitploit

Tool-Verzeichnis

Kategorien

Alle Kategorien anzeigen
Loading categories
Afuzz — Automatisiertes Web-Pfad-Fuzzing-Tool, das versteckte Verzeichnisse, Dateien und Endpunkte mithilfe intelligenter Spracherkennung, Blacklist-/Whitelist-Filterung und statistischer Analyse für Bug Bounty und Penetrationstests erkennt. | Kitploit
Tools/GitHubGitHub/rapiddns/afuzz
AufklärungSchwachstellenscannerInformationsbeschaffungWebsicherheitFuzzing
GitHubrapiddns/afuzz

Afuzz

Automatisiertes Web-Pfad-Fuzzing-Tool, das versteckte Verzeichnisse, Dateien und Endpunkte mithilfe intelligenter Spracherkennung, Blacklist-/Whitelist-Filterung und statistischer Analyse für Bug Bounty und Penetrationstests erkennt.

Repository anzeigen
31024vor 3 JahrenVon Kitploit geprüft

Beliebteste

Alle anzeigen →

Entdecken Sie die meistgenutzten Tools unserer Community.

Alle Tools erkunden

Durchsuchen Sie unsere Tool-Sammlung

Alle Tools anzeigen →
Teilen

Afuzz - Ein automatisiertes Web-Pfad-Fuzzing-Tool

=======

Afuzz ist ein automatisiertes Web-Pfad-Fuzzing-Tool für Bug-Bounty-Projekte.

Build Stars Tweet

Afuzz wird aktiv entwickelt von @rapiddns

Features

  • Afuzz erkennt automatisch die verwendete Entwicklungssprache der Website und generiert Erweiterungen entsprechend der Sprache
  • Verwendet eine Blacklist, um ungültige Seiten zu filtern
  • Verwendet eine Whitelist, um Inhalte zu finden, die für Bug-Bounty-Jäger auf der Seite interessant sind
  • Filtert zufällige Inhalte auf der Seite
  • Bewertet 404-Fehlerseiten auf verschiedene Weise
  • Führt nach dem Scannen eine statistische Analyse der Ergebnisse durch, um das endgültige Ergebnis zu erhalten
  • Unterstützt HTTP2

Installation

root@kitploit:~
git clone https://github.com/rapiddns/Afuzz.git
cd Afuzz
python setup.py install

ODER

root@kitploit:~
pip install afuzz

Ausführung

root@kitploit:~
afuzz -u http://testphp.vulnweb.com -t 30

Ergebnis

Tabelle

root@kitploit:~
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|                                                                                    http://testphp.vulnweb.com/                                                                                    |
+-----------------------------+---------------------+--------+-----------------------------------+-----------------------+--------+--------------------------+-------+-------+-----------+----------+
|            target           |         path        | status |              redirect             |         title         | length |       content-type       | lines | words |    type   |   mark   |
+-----------------------------+---------------------+--------+-----------------------------------+-----------------------+--------+--------------------------+-------+-------+-----------+----------+
| http://testphp.vulnweb.com/ | .idea/workspace.xml |  200   |                                   |                       | 12437  |         text/xml         |  217  |  774  |   check   |          |
| http://testphp.vulnweb.com/ |        admin        |  301   | http://testphp.vulnweb.com/admin/ | 301 Moved Permanently |  169   |        text/html         |   8   |   11  |   folder  |   30x    |
| http://testphp.vulnweb.com/ |      login.php      |  200   |                                   |       login page      |  5009  |        text/html         |  120  |  432  |   check   |          |
| http://testphp.vulnweb.com/ |     .idea/.name     |  200   |                                   |                       |   6    | application/octet-stream |   1   |   1   |   check   |          |
| http://testphp.vulnweb.com/ |    .idea/vcs.xml    |  200   |                                   |                       |  173   |         text/xml         |   8   |   13  |   check   |          |
| http://testphp.vulnweb.com/ |        .idea/       |  200   |                                   |    Index of /.idea/   |  937   |        text/html         |   14  |   46  | whitelist | index of |
| http://testphp.vulnweb.com/ |       cgi-bin/      |  403   |                                   |     403 Forbidden     |  276   |        text/html         |   10  |   28  |   folder  |   403    |
| http://testphp.vulnweb.com/ | .idea/encodings.xml |  200   |                                   |                       |  171   |         text/xml         |   6   |   11  |   check   |          |
| http://testphp.vulnweb.com/ |      search.php     |  200   |                                   |         search        |  4218  |        text/html         |  104  |  364  |   check   |          |
| http://testphp.vulnweb.com/ |     product.php     |  200   |                                   |    picture details    |  4576  |        text/html         |  111  |  377  |   check   |          |
| http://testphp.vulnweb.com/ |        admin/       |  200   |                                   |    Index of /admin/   |  248   |        text/html         |   8   |   16  | whitelist | index of |
| http://testphp.vulnweb.com/ |        .idea        |  301   | http://testphp.vulnweb.com/.idea/ | 301 Moved Permanently |  169   |        text/html         |   8   |   11  |   folder  |   30x    |
+-----------------------------+---------------------+--------+-----------------------------------+-----------------------+--------+--------------------------+-------+-------+-----------+----------+

JSON

root@kitploit:~
{
    "result": [
        {
            "target": "http://testphp.vulnweb.com/",
            "path": ".idea/workspace.xml",
            "status": 200,
            "redirect": "",
            "title": "",
            "length": 12437,
            "content_type": "text/xml",
            "lines": 217,
            "words": 774,
            "type": "check",
            "mark": "",
            "subdomain": "testphp.vulnweb.com",
            "depth": 0,
            "url": "http://testphp.vulnweb.com/.idea/workspace.xml"
        },
        {
            "target": "http://testphp.vulnweb.com/",
            "path": "admin",
            "status": 301,
            "redirect": "http://testphp.vulnweb.com/admin/",
            "title": "301 Moved Permanently",
            "length": 169,
            "content_type": "text/html",
            "lines": 8,
            "words": 11,
            "type": "folder",
            "mark": "30x",
            "subdomain": "testphp.vulnweb.com",
            "depth": 0,
            "url": "http://testphp.vulnweb.com/admin"
        },
        {
            "target": "http://testphp.vulnweb.com/",
            "path": "login.php",
            "status": 200,
            "redirect": "",
            "title": "login page",
            "length": 5009,
            "content_type": "text/html",
            "lines": 120,
            "words": 432,
            "type": "check",
            "mark": "",
            "subdomain": "testphp.vulnweb.com",
            "depth": 0,
            "url": "http://testphp.vulnweb.com/login.php"
        },
        {
            "target": "http://testphp.vulnweb.com/",
            "path": ".idea/.name",
            "status": 200,
            "redirect": "",
            "title": "",
            "length": 6,
            "content_type": "application/octet-stream",
            "lines": 1,
            "words": 1,
            "type": "check",
            "mark": "",
            "subdomain": "testphp.vulnweb.com",
            "depth": 0,
            "url": "http://testphp.vulnweb.com/.idea/.name"
        },
        {
            "target": "http://testphp.vulnweb.com/",
            "path": ".idea/vcs.xml",
            "status": 200,
            "redirect": "",
            "title": "",
            "length": 173,
            "content_type": "text/xml",
            "lines": 8,
            "words": 13,
            "type": "check",
            "mark": "",
            "subdomain": "testphp.vulnweb.com",
            "depth": 0,
            "url": "http://testphp.vulnweb.com/.idea/vcs.xml"
        },
        {
            "target": "http://testphp.vulnweb.com/",
            "path": ".idea/",
            "status": 200,
            "redirect": "",
            "title": "Index of /.idea/",
            "length": 937,
            "content_type": "text/html",
            "lines": 14,
            "words": 46,
            "type": "whitelist",
            "mark": "index of",
            "subdomain": "testphp.vulnweb.com",
            "depth": 0,
            "url": "http://testphp.vulnweb.com/.idea/"
        },
        {
            "target": "http://testphp.vulnweb.com/",
            "path": "cgi-bin/",
            "status": 403,
            "redirect": "",
            "title": "403 Forbidden",
            "length": 276,
            "content_type": "text/html",
            "lines": 10,
            "words": 28,
            "type": "folder",
            "mark": "403",
            "subdomain": "testphp.vulnweb.com",
            "depth": 0,
            "url": "http://testphp.vulnweb.com/cgi-bin/"
        },
        {
            "target": "http://testphp.vulnweb.com/",
            "path": ".idea/encodings.xml",
            "status": 200,
            "redirect": "",
            "title": "",
            "length": 171,
            "content_type": "text/xml",
            "lines": 6,
            "words": 11,
            "type": "check",
            "mark": "",
            "subdomain": "testphp.vulnweb.com",
            "depth": 0,
            "url": "http://testphp.vulnweb.com/.idea/encodings.xml"
        },
        {
            "target": "http://testphp.vulnweb.com/",
            "path": "search.php",
            "status": 200,
            "redirect": "",
            "title": "search",
            "length": 4218,
            "content_type": "text/html",
            "lines": 104,
            "words": 364,
            "type": "check",
            "mark": "",
            "subdomain": "testphp.vulnweb.com",
            "depth": 0,
            "url": "http://testphp.vulnweb.com/search.php"
        },
        {
            "target": "http://testphp.vulnweb.com/",
            "path": "product.php",
            "status": 200,
            "redirect": "",
            "title": "picture details",
            "length": 4576,
            "content_type": "text/html",
            "lines": 111,
            "words": 377,
            "type": "check",
            "mark": "",
            "subdomain": "testphp.vulnweb.com",
            "depth": 0,
            "url": "http://testphp.vulnweb.com/product.php"
        },
        {
            "target": "http://testphp.vulnweb.com/",
            "path": "admin/",
            "status": 200,
            "redirect": "",
            "title": "Index of /admin/",
            "length": 248,
            "content_type": "text/html",
            "lines": 8,
            "words": 16,
            "type": "whitelist",
            "mark": "index of",
            "subdomain": "testphp.vulnweb.com",
            "depth": 0,
            "url": "http://testphp.vulnweb.com/admin/"
        },
        {
            "target": "http://testphp.vulnweb.com/",
            "path": ".idea",
            "status": 301,
            "redirect": "http://testphp.vulnweb.com/.idea/",
            "title": "301 Moved Permanently",
            "length": 169,
            "content_type": "text/html",
            "lines": 8,
            "words": 11,
            "type": "folder",
            "mark": "30x",
            "subdomain": "testphp.vulnweb.com",
            "depth": 0,
            "url": "http://testphp.vulnweb.com/.idea"
        }
    ],
    "total": 12,
    "target": "http://testphp.vulnweb.com/"
}

Wortlisten (WICHTIG)

Zusammenfassung:

  • Die Wortliste ist eine Textdatei, jede Zeile ist ein Pfad.
  • Bezüglich der Erweiterungen ersetzt Afuzz das Schlüsselwort %EXT% durch Erweiterungen aus dem -e-Flag. Wenn kein -e-Flag angegeben ist, wird der Standard verwendet.
  • Generiert ein Wörterbuch basierend auf Domainnamen. Afuzz ersetzt %subdomain% durch host, %rootdomain% durch die Root-Domain, %sub% durch die Subdomain und %domain% durch die Domain. Und wird gemäß %ext% generiert.

Beispiele:

  • Normale Erweiterungen
root@kitploit:~
index.%EXT%

Übergabe der Erweiterungen asp und aspx generiert das folgende Wörterbuch:

root@kitploit:~
index
index.asp
index.aspx
  • host
root@kitploit:~
%subdomain%.%ext%
%sub%.bak
%domain%.zip
%rootdomain%.zip

Übergabe von https://test-www.hackerone.com und der Erweiterung php generiert das folgende Wörterbuch:

root@kitploit:~
test-www.hackerone.com.php
test-www.zip
test.zip
www.zip
testwww.zip
hackerone.zip
hackerone.com.zip

Optionen

root@kitploit:~
    #     ###### ### ###  ######  ######
    #      #   #  #   #   #   #   #   #
   # #     # #    #   #   #  #    #  #
   # #     ###    #   #     #       #
  #  #    #  #   #   #      #       #
  #####   #      #   #     #  #    #  #
 #    #   #      #   #    #   #   #   #
###  ### ###      ###    ######  ######



Verwendung: afuzz [Optionen]

Ein automatisiertes Web-Pfad-Fuzzing-Tool.
Von RapidDNS (https://rapiddns.io)

options:
  -h, --help            zeigt diese Hilfemeldung an und beendet
  -u URL, --url URL     Ziel-URL
  -o OUTPUT, --output OUTPUT
                        Ausgabedatei
  -e EXTENSIONS, --extensions EXTENSIONS
                        Erweiterungsliste, durch Kommata getrennt (Beispiel: php,aspx,jsp)
  -t THREAD, --thread THREAD
                        Anzahl der Threads
  -d DEPTH, --depth DEPTH
                        Maximale Rekursionstiefe
  -w WORDLIST, --wordlist WORDLIST
                        Wortliste
  -f, --fullpath        vollständiger Pfad
  -p PROXY, --proxy PROXY
                        Proxy, (z.B. http://127.0.0.1:8080)

Verwendung

Einige Beispiele zur Verwendung von Afuzz – dies sind die gängigsten Argumente. Wenn Sie alle benötigen, verwenden Sie einfach das Argument -h.

Einfache Verwendung

root@kitploit:~
afuzz -u https://target
root@kitploit:~
afuzz -e php,html,js,json -u https://target
root@kitploit:~
afuzz -e php,html,js -u https://target -d 3

Threads

Die Thread-Anzahl (-t | --threads) spiegelt die Anzahl der getrennten Brute-Force-Prozesse wider. Je größer die Thread-Anzahl, desto schneller läuft Afuzz. Standardmäßig beträgt die Thread-Anzahl 10, aber Sie können sie erhöhen, wenn Sie den Fortschritt beschleunigen möchten.

Trotzdem hängt die Geschwindigkeit stark von der Antwortzeit des Servers ab. Und als Warnung raten wir Ihnen, die Thread-Anzahl nicht zu groß zu wählen, da dies einen DoS verursachen kann.

root@kitploit:~
afuzz -e aspx,jsp,php,htm,js,bak,zip,txt,xml -u https://target -t 50

Blacklist

Die Dateien blacklist.txt und bad_string.txt im Verzeichnis /db sind Blacklists, die einige Seiten filtern können.

Die Datei blacklist.txt ist die gleiche wie bei dirsearch.

Die Datei bad_string.txt ist eine Textdatei, eine pro Zeile. Das Format ist position==content. Mit == als Trennzeichen, position hat die folgenden Optionen: header, body, regex, title


Spracherkennung

Die Datei language.txt ist die Erkennungsregel für die Sprache, das Format ist konsistent mit bad_string.txt. Erkennung der Entwicklungssprache für die Website-Nutzung.

Referenzen

Dank an Open-Source-Projekte für die Inspiration

  • Dirsearch von Shubham Sharma
  • wfuzz von Xavi Mendez
  • arjun von Somdev Sangwan
Tool herunterladen