This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import argparse | |
| import threading | |
| import requests | |
| import queue | |
| import sys | |
| from colorama import init, Fore | |
| # Disable SSL warnings | |
| requests.packages.urllib3.disable_warnings() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import requests | |
| from concurrent.futures import ThreadPoolExecutor | |
| import argparse | |
| from colorama import init, Fore, Style | |
| # Initialize colorama for cross-platform ANSI support | |
| init(autoreset=True) | |
| # Azure-related domain suffixes | |
| AZURE_DOMAINS = [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <AppLockerPolicy Version="1"> | |
| <RuleCollection Type="Exe" EnforcementMode="NotConfigured"> | |
| <FilePathRule Id="9d86e76a-1a51-4328-bdb4-d6c89be61727" Name="Block CMD" Description="" UserOrGroupSid="S-1-1-0" Action="Deny"> | |
| <Conditions> | |
| <FilePathCondition Path="%SYSTEM32%\cmd.exe" /> | |
| </Conditions> | |
| </FilePathRule> | |
| <FilePathRule Id="921cc481-6e17-4653-8f75-050b80acca20" Name="(Default Rule) All files located in the Program Files folder" Description="Allows members of the Everyone group to run applications that are located in the Program Files folder." UserOrGroupSid="S-1-1-0" Action="Allow"> | |
| <Conditions> | |
| <FilePathCondition Path="%PROGRAMFILES%\*" /> |