OWA Password Sprayer
该 Python 脚本用于针对 Outlook Web Access(OWA)端点执行密码喷洒。密码喷洒是一种使用单个密码对多个用户名进行测试的技术,旨在找到可用于访问 OWA 的有效凭据。
target:OWA 端点的 URL。password:要针对用户列表喷洒的密码。userfile:包含用户名的文件(每行一个)。--threads:要使用的并发线程数(默认:3)。--debug:启用调试模式以进行详细日志记录。bash
python3 owa_password_sprayer.py owa owa http://autodiscover.example.com Password /home/kali/Tools/user.txt --threads 3 --debug
完成后,脚本会提供成功身份验证尝试的摘要(如有),以及每个身份验证请求的详细日志。
该脚本由 h3x0v3rl0rd 开发。