Crates.io | m365check |
lib.rs | m365check |
version | 0.2.0 |
source | src |
created_at | 2023-11-30 20:09:17.079198 |
updated_at | 2023-11-30 20:11:27.712003 |
description | An easy to use, lighweight Microsoft 365 Account checker for use by red teams |
homepage | |
repository | https://github.com/affix/m365check |
max_upload_size | |
id | 1054449 |
size | 42,147 |
m365check is a command-line interface (CLI) application designed to verify the validity of Microsoft365 user accounts without making login requests. This tool provides a fast and efficient way to check if Microsoft365 user accounts are active, without the need to authenticate each user.
Single Email Check: Quickly check the validity of a single Microsoft365 user account by providing an email address.
Bulk Email Check: Verify multiple accounts simultaneously by providing a file containing a list of email addresses.
No Login Requests: Safely verify user accounts without triggering login requests or authentication processes.
Easy-to-Use: A simple CLI interface makes it accessible for users of all technical levels.
cargo install m365check
The basic usage of m365check is outlined below:
Usage: m365check [OPTIONS]
Options:
-e, --email <EMAIL> E-mail address of a single user to check if no option is provided, the program will read from stdin [default: ]
-f, --file <FILE> File containing a list of e-mail addresses to check One e-mail address per line [default: ]
-h, --help Print help
-V, --version Print version
To check a single E-mail address
m365check -e user@mail.com
To check a list of E-mail addresses
m365check -f /path/to/file.txt
To check an e-mail from stdin
echo "user@mail.com" | m365check