Static task
static1
Behavioral task
behavioral1
Sample
import random import string import requests import time Function to generate random strings def gen.ps1
Resource
win7-20240221-en
Behavioral task
behavioral2
Sample
import random import string import requests import time Function to generate random strings def gen.ps1
Resource
win10v2004-20240226-en
General
-
Target
import random import string import requests import time Function to generate random strings def generate_string(): return ''.join(random.choices(string.ascii_letters + string.digits, k=18)) Function to send get request and process response def process_string(string_to_process): url = f"https://discordapp.com/api/v9/entitle..." response = requests.get(url) if response.status_code == 200: send_to_discord(string_to_process) Function to send string to Discord webhook def send_to_discord(string_to_send): webhook_url = "https://discord.com/api/webhooks/1220..." data = {"content": string_to_send} requests.post(webhook_url, json=data) Infinite loop to generate strings and process them while True: generated_string = generate_string() process_string(generated_string) time.sleep(1) # Adjust the delay as needed to control the rate of generation.ps1
-
Size
923B
-
MD5
9e19b30d055c7cb5e0de801eef3b7535
-
SHA1
85a90e564a6e458ba1c6a5c5d0f1d8fe388949d2
-
SHA256
103fdc66fd7c28c721ef24c76c64ec20f8930def53373a9068008a7a5861adce
-
SHA512
de373c16a6a015feb951bf6ee9f8baf1c4f636e15d60f31196c96c9f5db169e6d941ebbf39e373b3faee3e53114dfaf2e7998e6dfc36b723ee37ca1930c1ede2
Malware Config
Signatures
Files
-
import random import string import requests import time Function to generate random strings def generate_string(): return ''.join(random.choices(string.ascii_letters + string.digits, k=18)) Function to send get request and process response def process_string(string_to_process): url = f"https://discordapp.com/api/v9/entitle..." response = requests.get(url) if response.status_code == 200: send_to_discord(string_to_process) Function to send string to Discord webhook def send_to_discord(string_to_send): webhook_url = "https://discord.com/api/webhooks/1220..." data = {"content": string_to_send} requests.post(webhook_url, json=data) Infinite loop to generate strings and process them while True: generated_string = generate_string() process_string(generated_string) time.sleep(1) # Adjust the delay as needed to control the rate of generation.ps1