365-Stealer
Table of Contents
About
365-Stealer is a Python3-based tool designed to automate illicit consent grant attacks. When a target user unknowingly grants permission to an attacker's application, the attacker gains access to the victim's refresh token. This refresh token can then be used to generate other tokens, allowing the attacker to access sensitive data such as emails, files on OneDrive, and notes—without needing further input from the victim. Manually exploiting this can be time-consuming, but 365-Stealer simplifies and automates the process.
365-Stealer comes with 2 interfaces:
- CLI (Command Line Interface) - Built entirely in Python3, the CLI provides direct access to the tool’s features.
- Web UI - The Web User Interface is developed using PHP, while Python3 operates in the background to execute commands.
Understanding the Illicit Consent Grant Attack
An illicit consent grant attack occurs when an attacker registers a malicious application within Azure, requesting access to sensitive data like contacts, emails, or documents. The attacker deceives a user into consenting to the app, usually by presenting it as legitimate. Once the victim clicks "Accept," they unknowingly provide access to the attacker, allowing them to act on behalf of the victim without needing the victim’s organizational credentials.
To explain more clearly, once the user grants permission, Entra ID sends a token to the attacker's server. This token gives the attacker the ability to read emails, send emails, access files on OneDrive, and perform other malicious activities using the victim's credentials. Unlike phishing attacks that rely on stealing passwords, illicit consent grant attacks bypass authentication entirely by abusing the permissions system of cloud applications.
Key Features of 365-Stealer
- Steals Refresh Tokens: The tool captures refresh tokens from victims, which can be used to generate new access tokens for at least 90 days, providing ongoing access to their accounts..
- Send Emails on Behalf of Victims: 365-Stealer can send emails with attachments from the victim’s account to other users without their knowledge.
- Create Malicious Outlook Rules: It can create harmful rules in the victim’s Outlook, such as forwarding any incoming mail to an attacker-controlled email.
- Upload Files to OneDrive: The tool can upload any file into the victim's OneDrive account.
- Steal Data from OneDrive, OneNote, and Email: 365-Stealer can extract files from OneDrive, OneNote, and dump all emails, including attachments, from the victim’s account.
- Manage Stolen Data: The 365-Stealer Management Portal allows attackers to manage all compromised data, including refresh tokens, emails, files, and users.
- Backdoor OneDrive Documents: The tool can backdoor a .docx file stored in OneDrive by injecting malicious macros and replacing the file extension with .doc.
- Store Compromised Data: All collected information, such as refresh tokens, emails, files, and user data from the victim’s tenant, along with configurations, are stored in a database.
- Customizable Delay for Data Theft: Attackers can delay requests by specifying a time in seconds to avoid detection while stealing data.
- Host a Phishing Application: The tool can host a fake application for performing illicit consent grant attacks using the
--run-app command in the terminal or via the 365-Stealer Management portal.
- Selective Token Theft: Using the
--no-stealing flag, the tool can steal only the tokens without further actions, allowing attackers to exploit them later.
- Request New Access Tokens: The tool allows attackers to request new access tokens for all users or specific users within the compromised tenant.
- Generate Access Tokens Using Credentials: With the --refresh-token,
--client-id, and --client-secret flags, attackers can easily obtain new access tokens.
- Automate Azure App Registration: The
--app-registration flag automates the process of Azure app registration, making it easier to set up the attack infrastructure without manual intervention.
- Selective Data Theft: With the
--custom-steal flag, attackers can selectively steal data from specific sources like OneDrive, Outlook, etc.
- Shared Data: All compromised data is saved in a database.db file, which can be shared with our team to leverage the existing stolen tokens and data.
- Search and Filter Emails: Attackers can search for specific emails by keyword, subject, user’s email address, or filter emails with attachments using the 365-Stealer Management portal.
- Export User Data: The tool allows attackers to dump user information from the compromised tenant and export the data to a CSV file for further analysis or use.
Setting Up the Attack Environment
Automated Azure App Registration
To automatically register an application in Azure using the provided Python script, follow these steps:
Ensure you have Python3 installed on your machine.
Clone the 365-Stealer repository:
git clone https://github.com/AlteredSecurity/365-Stealer.git
cd 365-Stealer
Install the required Python modules:
pip install -r requirements.txt
Run the automated Azure app registration script:
python 365-Stealer.py --app-registration
- The script will prompt you to provide your Azure tenant ID, the desired application name, and the redirect URI.
- You will also choose an authentication method (OAuth with Client Secret or Device Code Flow) and set API permissions (either default, LowImpact or custom permissions).
- Follow the prompts to complete the app registration process.
Manual Azure App Registration
If you prefer to manually register an Azure application, follow these steps:
- Log in to the Azure Portal: Go to
https://portal.azure.com and sign in to your account.
- Navigate to Microsoft Entra ID: From the portal, navigate to Microsoft Entra ID.
- Go to App Registrations: Click on
App registrations in the left-hand menu.`
- Create a New Registration: Click on
New registration to begin the process of registering a new application.
- Provide Application Details:
- Name: Enter a name for your application. This name will be shown to the user during the consent process.
- Supported Account Types: Select
Accounts in any organizational directory (Any Microsoft Entra ID tenant - Multitenant).
- Set the Redirect URI:
- Provide the redirect URI that points to your 365-Stealer phishing page. The format should be
https://:/login/authorized, where your domain or IP corresponds to where you will host the 365-Stealer application.
- Complete the Registration:
- Once all details are entered, click
Register to create the application.
Configuring the Application
Creating Client Secrets
- Navigate to Certificates & Secrets:
- In the Azure portal, go to the
Certificates & secrets section under your registered application.
- Create a New Client Secret:
- Click on
New client secret, provide a description for the secret, and then click Add.
- Save the Secret Value:
- Once created, copy and store the secret's value in a safe location, as you won’t be able to retrieve it again after you leave the page.
Adding API Permissions
- Go to API Permissions:
- In the Azure portal, click on the
API permissions tab under your application.
- Add Permissions:
- Click
Add a permission to begin selecting the necessary permissions.
- Select Microsoft Graph:
- Under the available APIs, select
Microsoft Graph.
- Choose Delegated Permissions:
- In the next step, click on
Delegated permissions to assign permissions that will act on behalf of the signed-in user.
- Select Required Permissions:
- Contacts.Read
- Mail.Read
- Notes.Read.All
- Mailboxsettings.ReadWrite
- Files.ReadWrite.All
- Mail.Send
- User.ReadBasic.All
Setting Up 365-Stealer
Step-by-Step Instructions
Clone the 365-Stealer Repository:
git clone https://github.com/AlteredSecurity/365-Stealer.git
Install Required Applications:
Python3
XAMPP
Extract and Save the Files:
- After cloning, copy the 365-Stealer folder and place them in
C:\\xampp\htdocs\ that allows you to host the PHP application and run Python.
Install Python Dependencies: Run the following command to install the necessary Python libraries.
cd C:\\xampp\htdocs\365-Stealer
pip install -r requirements.txt
Follow Additional Setup Instructions: After installing the required applications and dependencies, make sure to follow the instructions provided in the yoursVictims/Readme.md file. This will guide you through setting up the necessary databases and tables for 365-Stealer to function properly.
Configuring the 365-Stealer Management Portal
Modifying Paths
Adjust the Script Paths:
- If necessary, modify the paths for
365-Stealer.py, the database, and python3 in the index.php file located at C:/xampp/htdocs/yourvictims/.
Handling Spaces in File Paths:
- If Python is installed in a directory with spaces in the path (e.g., "Program Files"), make sure to enclose the path in quotes. For example:
"C:/Program Files/Python/python.exe"
Enabling IP Whitelisting for the 365-Stealer Management Portal
Default Whitelisting:
- By default, IP whitelisting is enabled, and the Management Portal can only be accessed from localhost.
Adding Remote IPs:
- If you want to allow access from a remote IP, you can add the desired IP address in the configuration.
Disabling IP Whitelisting:
- If you wish to disable IP whitelisting entirely, set $enableIpWhiteList = false; in the configuration file.
OPSEC Consideration
Access Restrictions: For security reasons, always restrict access to the 365-Stealer Management Portal to infrastructure that you control.
Avoid Public Exposure: Never expose the 365-Stealer Management Portal directly to the internet. Ensure it is only accessible through secure, private networks to avoid potential compromise.
Command Line Help
…
Blog
Blog post for the new version of 365-stealder, which is a ground-up rewrite of the older one. This post explores how Illici