
Login Area Finder: durchsucht Host(s) nach Login-Panels
Ein Python-Skript, das nach Admin-/Login-Panels auf einem bestimmten Host oder einer Liste von Hosts sucht.
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
Einen einzelnen Host scannen:
./laf.py -d google.de
Liste von Hosts scannen:
./laf.py -l hostlist.txt
Liste von Hosts von stdin scannen:
cat hostlist.txt | ./laf.py -l -