VenomRat
This commit is contained in:
29
Program.cs
Normal file
29
Program.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Windows.Forms;
|
||||
using Server.Forms;
|
||||
using Server.Handle_Packet;
|
||||
|
||||
namespace Server;
|
||||
|
||||
internal static class Program
|
||||
{
|
||||
public static FormMain mainform;
|
||||
|
||||
public static HVNCListener hvnc_listner = new HVNCListener();
|
||||
|
||||
public static HandleReverseProxy ReverseProxyHandler = new HandleReverseProxy();
|
||||
|
||||
[STAThread]
|
||||
private static void Main()
|
||||
{
|
||||
Application.EnableVisualStyles();
|
||||
Application.SetCompatibleTextRenderingDefault(defaultValue: false);
|
||||
mainform = new FormMain
|
||||
{
|
||||
Name = "MainForm"
|
||||
};
|
||||
Directory.CreateDirectory("ClientsFolder");
|
||||
Application.Run(mainform);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user