
Login Area Finder: लॉगिन पैनल के लिए होस्ट/होस्ट्स को स्कैन करता है
एक python स्क्रिप्ट जो किसी दिए गए होस्ट या होस्ट की सूची पर admin/login पैनल स्कैन करती है।
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
एकल होस्ट स्कैन करें:
./laf.py -d google.de
होस्ट की सूची स्कैन करें:
./laf.py -l hostlist.txt
stdin से होस्ट की सूची स्कैन करें:
cat hostlist.txt | ./laf.py -l -