Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Add External Module: office365userenum.py #10607

Merged
merged 3 commits into from
Nov 13, 2018

Commits on Sep 6, 2018

  1. Add office365userenum.py as external module

    External python module compatible with v2 and v3.
    
    Enumerate valid usernames (email addresses) from Office 365 using
    ActiveSync.
    Differences in the HTTP Response code and HTTP Headers can be used to
    differentiate between:
    
     - Valid Username (Response code 401)
    
     - Valid Username and Password without 2FA (Response Code 200)
    
     - Valid Username and Password with 2FA (Response Code 403)
    
     - Invalid Username (Response code 404 with Header X-CasErrorCode: UserNotFound)
    
    Note this behaviour appears to be limited to Office365, MS Exchange
    does not appear to be affected.
    
    Microsoft Security Response Center stated on 2017-06-28 that this issue
    does not "meet the bar for security servicing". As such it is not
    expected to be fixed any time soon.
    
    This script is maintaing the ability to run independently of MSF.
    GrimHacker committed Sep 6, 2018
    Configuration menu
    Copy the full SHA
    ac144e0 View commit details
    Browse the repository at this point in the history

Commits on Sep 7, 2018

  1. Make Output and Log Files Optional

    Change the 'required' attribute of the output and logfile options to
    False.
    Open output file for appending immediately before use and only if output
    file name is configured.
    GrimHacker committed Sep 7, 2018
    Configuration menu
    Copy the full SHA
    56cb853 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7604712 View commit details
    Browse the repository at this point in the history