One-Lin3r: herramienta para generar comandos de una sóla línea para pentesting

One-Lin3r es un framework simple y liviano inspirado en el módulo web-delivery de Metasploit. Genera varios comandos en una única línea o one-liners que ayudan en las operaciones de pentesting:
- Reverser: dale una IP y puerto y te devolverá un comando para una shell inversa listo para copiar y pegar.
- Dropper: dale una URL donde tengas un backdoor y te devolverá un comando de descarga y ejecución listo para copiar y pegar.
- Otro: tiene one-liners de propósito general para ayudar en tests de intrusión (por ejemplo: Mimikatz, Powerup, etc.) en los sistemas operativos más comunes (Windows, Linux y macOS) "También se pueden agregar más sistemas operativos".

Además permite añadir tus propios comandos siguiendo estos sencillos pasos: https://github.com/D4Vinci/One-Lin3r/wiki

Instalación 

 Para windows:
cd One-Lin3r-master
python -m pip install -r win_requirements.txt
python One-Lin3r.py -h

Para Linux:
git clone https://github.com/D4Vinci/One-Lin3r.git
chmod 777 -R One-Lin3r
cd One-Lin3r
pip install -r requirements.txt
python One-Lin3r.py -h

Uso

Argumentos:
usage: One-Lin3r.py [-h] [-r R] [-x X] [-q]

optional arguments:
  -h, --help  show this help message and exit
  -r          Execute a resource file (history file).
  -x          Execute a specific command (use ; for multiples).
  -q          Quit mode (no banner).

Comandos posibles:
Command             Description
--------            -------------
help/?              Show this help menu
list/show           List payloads you can use in the attack.
search  <Keyword>   Search payloads for a specific one
use     <payload>   Use an available payload
info    <payload>   Get information about an available payload
banner              Display banner
reload/refresh      Reload the payloads database
check               Prints the core version and database version then check for them online.
history             Display command line most important history from the beginning
save_history        Save command line history to a file
exit/quit           Exit the framework

Demo:
Fuente: https://github.com/D4Vinci/One-Lin3r

Comentarios