Skip to content

Commit

Permalink
version 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
etherialdev committed Feb 2, 2025
1 parent f714965 commit dac27c8
Show file tree
Hide file tree
Showing 15 changed files with 2,459 additions and 3,988 deletions.
98 changes: 62 additions & 36 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,61 +3,87 @@
</div>

<div id="title" align="center">

# Outlook Account Checker


# Outlook Account Checker
</div>

<div id="title" align="center">

![showcase](https://github.com/user-attachments/assets/e71d7cb2-bd14-4585-8026-ca00d0049a15)

![showcase](https://github.com/user-attachments/assets/d68cbed8-112d-48fc-b766-9256468a9595)

⚠️ Use high-quality proxies ⚠️
<br>
⚠️ The tool was tested with IPRoyal sticky residential proxies ⚠️
</div>

<p align="center">

## 🔥 Features:

- **Request based**
- **Lightning fast: up to 500 threads**
- **Low Proxy Usage**
- **Retry mechanism: 5 retries, if request failed**
- **99.8% detect rate**
[![FREE VERSION](https://img.shields.io/badge/FREE%20VERSION-%23FF0000.svg?style=for-the-badge&logo=YouTube&logoColor=white)](https://youtube.com)
[![PAID VERSION](https://img.shields.io/badge/PAID%20VERSION-%23FF0000.svg?style=for-the-badge&logo=YouTube&logoColor=white)](https://youtube.com)
<br>
&nbsp;&nbsp;[![Discord](https://img.shields.io/badge/Discord-%235865F2.svg?style=for-the-badge&logo=discord&logoColor=white)](https://discord.gg/sm38JmvVey)
[![Telegram](https://img.shields.io/badge/Telegram-2CA5E0?style=for-the-badge&logo=telegram&logoColor=white)](https://t.me/etherialdev)
<br>
[![Channel](https://img.shields.io/badge/Channel-2CA5E0?style=for-the-badge&logo=telegram&logoColor=white)](https://t.me/etherialhub)
</p>



## 💻 Usage:

</div>

## 🔓 Free Version
🔥 **Features:**
- **Request-based processing**
- **Recordnotice** bypass
- Supports up to **500 threads** for high-speed operations
- **Efficient** proxy usage, supporting HTTP, SOCKS4, and SOCKS5 proxies
- **Accurate detection** of locked, 2FA-protected, invalid, and valid accounts (**99.9% detection rate**)

## 🔒 Paid Version
💰 **Pricing:**
- **Lifetime license key:** $99
- **Full source code:** $250
- **Free** release at **200** stars

🔥 **Features:**
- **Includes all free version features**
- **IMAP enabler** using the **Thunderbird Mobile API**
- **Inbox filter** with custom domain input in the config file

## 📑 File Structure

```
📁 input/
├── 📄 combolist.txt # Microsoft Outlook accounts, email:password format
└── 📄 proxies.txt # Proxies, username:password@hostname:port or ip:port format
📁 output/
├── 📄 valid.txt # Valid outlook accounts
├── 📄 hits.txt # Inbox filtered accounts (Paid version)
├── 📄 locked.txt # Accounts, that are locked (recovery and other scenarios)
├── 📄 phone_locked.txt # Phone locked accounts
├── 📄 2fa.txt # 2fa protected accounts
├── 📄 invalid.txt # Invalid accounts
└── 📄 failed_check.txt # Failed to check these accounts
```
## ⚙️ Configuration
```js
module.exports = {
threads: 100, // Thread count
retry_limit: 1, // Number of retries if check fails
proxy_type: "HTTP", // Proxy type: HTTP | SOCKS4 | SOCKS5
inbox_filter: ["example.com", "", ""] // Domain input, for the inbox filter
};

```

## 💻 Usage (Source Code)
- **Install nodejs: [[click]](https://nodejs.org/en/download/prebuilt-installer)**
- **Install all dependencies: <code>npm install</code>**
- **Put your proxies in <code>input/proxies.txt</code> | <code>username:password@hostname:port</code>**
- **Put your accounts in <code>input/combolist.txt</code> | <code>email:password</code>**
- **Start the program with: <code>node index.js</code>**


## ✨ Stars to unlock:

- **⭐️ 25 stars | inbox checker and filter**
- **⭐️ 30 stars | imap enabler**

## 📝 Changelog

<details>
<summary style="cursor: pointer;">Click to see the Changelog</summary>

2024/09/14
- added config file
- moved thread_num into the config file
- added proxy checker

</details>

## ❗ Legal & Contact:
## ❗ Legal & Contact:

- **For support contact: [Telegram](https://t.me/etherialdev)**

- **This tool is for educational purposes only. By using it, you acknowledge that I am not liable for any consequences resulting from its use.**

10 changes: 5 additions & 5 deletions config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module.exports = {
threads: 500, // How many threads should the tool run?
proxy_type: "HTTP", // HTTP | SOCKS4 | SOCKS5
proxy_check: false, // check proxies before the tool starts
inbox_filter: ["", "", ""] // coming soon! (when the repo reaches 25 stars)
};
threads: 100,
retry_limit: 1,
proxy_type: "SOCKS5", // HTTP | SOCKS4 | SOCKS5
inbox_filter: ["", "", ""] // Paid option, contact: https://t.me/etherialdev
};
Loading

0 comments on commit dac27c8

Please sign in to comment.