
Login Area Finder: escanea host/s en busca de paneles de inicio de sesión.
Un script en Python que escanea en busca de paneles de administración/inicio de sesión en un host o lista de hosts determinada.
usage: laf.py [-h] [-d host] [-l hostfile|-] [-sys system] [-c cookie]
[-u user] [-da] [-p pass] [-ic] [-k] [-v]
Find admin/login panel for a single host (-d) or a list of hosts (-l).
optional arguments:
-h, --help show this help message and exit
-d host host to scan
-l hostfile|- list of hosts, one per line (- instead of a file to read from
stdin)
-sys system comma seperated list of dirs|php|cfm|asp|pl|html|pma
(default: dirs)
-c cookie cookie
-u user http authentication username
-da use digest auth instead of basic
-p pass http authentication password
-ic ignore invalid tls certificate
-k halt on first valid path
-v enable verbosity
Escaneo de un solo host:
./laf.py -d google.de
Escaneo de una lista de hosts:
./laf.py -l hostlist.txt
Escaneo de una lista de hosts desde stdin:
cat hostlist.txt | ./laf.py -l -