https://github.com/affix/m365check
A lightweight, easy to use Microsoft 365 Account checker written in rust
https://github.com/affix/m365check
Last synced: about 1 year ago
JSON representation
A lightweight, easy to use Microsoft 365 Account checker written in rust
- Host: GitHub
- URL: https://github.com/affix/m365check
- Owner: affix
- License: mit
- Created: 2023-11-30T19:49:05.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-30T20:11:10.000Z (over 2 years ago)
- Last Synced: 2025-03-25T16:46:19.983Z (over 1 year ago)
- Language: Rust
- Size: 14.6 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Microsoft365 User Verification CLI
## Overview
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.
## Features
- 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.
# Installation
```
cargo install m365check
```
# Usage
The basic usage of m365check is outlined below:
```
Usage: m365check [OPTIONS]
Options:
-e, --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 containing a list of e-mail addresses to check One e-mail address per line [default: ]
-h, --help Print help
-V, --version Print version
```
## Example Usage
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
```
## License
[MIT](https://choosealicense.com/licenses/mit/)