-Added report window -Added save keylogger -Added save remote desktop images -Added PC options -Updated password recovery -Updated ProcessCritical -Updated UI to remote shell -Updated disable defender -Updated anti VM -Updated client ID method -Fixed chat -Fixed send to memory -Specail thanks to @MrDevBot and @Thoxy67
128 lines
5.8 KiB
C#
128 lines
5.8 KiB
C#
namespace AsyncRAT_Sharp.Forms
|
|
{
|
|
partial class FormKeylogger
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.components = new System.ComponentModel.Container();
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormKeylogger));
|
|
this.timer1 = new System.Windows.Forms.Timer(this.components);
|
|
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
|
|
this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
|
|
this.toolStripTextBox1 = new System.Windows.Forms.ToolStripTextBox();
|
|
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
|
|
this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
|
|
this.richTextBox1 = new System.Windows.Forms.RichTextBox();
|
|
this.toolStrip1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// timer1
|
|
//
|
|
this.timer1.Enabled = true;
|
|
this.timer1.Interval = 1000;
|
|
this.timer1.Tick += new System.EventHandler(this.Timer1_Tick);
|
|
//
|
|
// toolStrip1
|
|
//
|
|
this.toolStrip1.ImageScalingSize = new System.Drawing.Size(24, 24);
|
|
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.toolStripLabel1,
|
|
this.toolStripTextBox1,
|
|
this.toolStripSeparator1,
|
|
this.toolStripButton1});
|
|
this.toolStrip1.Location = new System.Drawing.Point(0, 0);
|
|
this.toolStrip1.Name = "toolStrip1";
|
|
this.toolStrip1.Size = new System.Drawing.Size(731, 32);
|
|
this.toolStrip1.TabIndex = 0;
|
|
this.toolStrip1.Text = "toolStrip1";
|
|
//
|
|
// toolStripLabel1
|
|
//
|
|
this.toolStripLabel1.Name = "toolStripLabel1";
|
|
this.toolStripLabel1.Size = new System.Drawing.Size(64, 29);
|
|
this.toolStripLabel1.Text = "Search";
|
|
//
|
|
// toolStripTextBox1
|
|
//
|
|
this.toolStripTextBox1.Name = "toolStripTextBox1";
|
|
this.toolStripTextBox1.Size = new System.Drawing.Size(100, 32);
|
|
this.toolStripTextBox1.Text = "...";
|
|
this.toolStripTextBox1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ToolStripTextBox1_KeyDown);
|
|
//
|
|
// toolStripSeparator1
|
|
//
|
|
this.toolStripSeparator1.Name = "toolStripSeparator1";
|
|
this.toolStripSeparator1.Size = new System.Drawing.Size(6, 32);
|
|
//
|
|
// toolStripButton1
|
|
//
|
|
this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
|
|
this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
|
|
this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
|
|
this.toolStripButton1.Name = "toolStripButton1";
|
|
this.toolStripButton1.Size = new System.Drawing.Size(53, 29);
|
|
this.toolStripButton1.Text = "Save";
|
|
this.toolStripButton1.Click += new System.EventHandler(this.ToolStripButton1_Click);
|
|
//
|
|
// richTextBox1
|
|
//
|
|
this.richTextBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
|
this.richTextBox1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.richTextBox1.Location = new System.Drawing.Point(0, 32);
|
|
this.richTextBox1.Name = "richTextBox1";
|
|
this.richTextBox1.Size = new System.Drawing.Size(731, 378);
|
|
this.richTextBox1.TabIndex = 1;
|
|
this.richTextBox1.Text = "";
|
|
//
|
|
// FormKeylogger
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(731, 410);
|
|
this.Controls.Add(this.richTextBox1);
|
|
this.Controls.Add(this.toolStrip1);
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.Name = "FormKeylogger";
|
|
this.Text = "Keylogger";
|
|
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.Keylogger_FormClosed);
|
|
this.toolStrip1.ResumeLayout(false);
|
|
this.toolStrip1.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
private System.Windows.Forms.Timer timer1;
|
|
private System.Windows.Forms.ToolStrip toolStrip1;
|
|
private System.Windows.Forms.ToolStripLabel toolStripLabel1;
|
|
private System.Windows.Forms.ToolStripTextBox toolStripTextBox1;
|
|
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
|
|
private System.Windows.Forms.ToolStripButton toolStripButton1;
|
|
public System.Windows.Forms.RichTextBox richTextBox1;
|
|
}
|
|
} |