├── LICENSE ├── README.md ├── config.json ├── headers.py ├── input ├── combolist.txt └── proxies.txt ├── login.py ├── main.py ├── output ├── VALID.txt ├── VALID_pendingSecurity.txt └── others │ ├── failed.txt │ ├── invalid.txt │ ├── locked.txt │ ├── not_exist.txt │ ├── recovery.txt │ └── wrong_password.txt ├── requirements.txt └── utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/occursive/outlook-account-checker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/occursive/outlook-account-checker/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/occursive/outlook-account-checker/HEAD/config.json -------------------------------------------------------------------------------- /headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/occursive/outlook-account-checker/HEAD/headers.py -------------------------------------------------------------------------------- /input/combolist.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /input/proxies.txt: -------------------------------------------------------------------------------- 1 | username:password@host:port -------------------------------------------------------------------------------- /login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/occursive/outlook-account-checker/HEAD/login.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/occursive/outlook-account-checker/HEAD/main.py -------------------------------------------------------------------------------- /output/VALID.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /output/VALID_pendingSecurity.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /output/others/failed.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /output/others/invalid.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /output/others/locked.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /output/others/not_exist.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /output/others/recovery.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /output/others/wrong_password.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | httpx==0.28.1 2 | colorama==0.4.6 -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/occursive/outlook-account-checker/HEAD/utils.py --------------------------------------------------------------------------------