├── .gitignore ├── MS_Exchange_password_spray.png ├── README.md ├── exchange_password_spray.py ├── password.txt ├── proxy.txt ├── requirements.txt └── userlist.txt /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | __init__.py 3 | .idea 4 | .DS_Store -------------------------------------------------------------------------------- /MS_Exchange_password_spray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/PyExchangePasswordSpray/HEAD/MS_Exchange_password_spray.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/PyExchangePasswordSpray/HEAD/README.md -------------------------------------------------------------------------------- /exchange_password_spray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/PyExchangePasswordSpray/HEAD/exchange_password_spray.py -------------------------------------------------------------------------------- /password.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/PyExchangePasswordSpray/HEAD/password.txt -------------------------------------------------------------------------------- /proxy.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/PyExchangePasswordSpray/HEAD/requirements.txt -------------------------------------------------------------------------------- /userlist.txt: -------------------------------------------------------------------------------- 1 | user1 2 | user2 --------------------------------------------------------------------------------