238 lines
12 KiB
C#
238 lines
12 KiB
C#
namespace AsyncRAT_Sharp
|
|
{
|
|
partial class Form1
|
|
{
|
|
/// <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(Form1));
|
|
this.listView1 = new System.Windows.Forms.ListView();
|
|
this.lv_ip = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.lv_user = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.lv_os = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
|
|
this.cLIENTOPTIONSToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.cLOSEToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.uPDATEToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.uNISTALLToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
|
|
this.sENDMESSAGEBOXToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.sENDFILEToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.sENDFILETOMEMORYToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
|
|
this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
|
|
this.ping = new System.Windows.Forms.Timer(this.components);
|
|
this.UpdateUI = new System.Windows.Forms.Timer(this.components);
|
|
this.lv_hwid = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.contextMenuStrip1.SuspendLayout();
|
|
this.statusStrip1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// listView1
|
|
//
|
|
this.listView1.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
|
this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
|
this.lv_ip,
|
|
this.lv_hwid,
|
|
this.lv_user,
|
|
this.lv_os});
|
|
this.listView1.ContextMenuStrip = this.contextMenuStrip1;
|
|
this.listView1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.listView1.FullRowSelect = true;
|
|
this.listView1.GridLines = true;
|
|
this.listView1.Location = new System.Drawing.Point(0, 0);
|
|
this.listView1.Name = "listView1";
|
|
this.listView1.Size = new System.Drawing.Size(915, 342);
|
|
this.listView1.TabIndex = 0;
|
|
this.listView1.UseCompatibleStateImageBehavior = false;
|
|
this.listView1.View = System.Windows.Forms.View.Details;
|
|
this.listView1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.listView1_KeyDown);
|
|
this.listView1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.listView1_MouseMove);
|
|
//
|
|
// lv_ip
|
|
//
|
|
this.lv_ip.Text = "IP";
|
|
this.lv_ip.Width = 150;
|
|
//
|
|
// lv_user
|
|
//
|
|
this.lv_user.Text = "USER";
|
|
this.lv_user.Width = 150;
|
|
//
|
|
// lv_os
|
|
//
|
|
this.lv_os.Text = "OS";
|
|
this.lv_os.Width = 350;
|
|
//
|
|
// contextMenuStrip1
|
|
//
|
|
this.contextMenuStrip1.ImageScalingSize = new System.Drawing.Size(24, 24);
|
|
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.cLIENTOPTIONSToolStripMenuItem,
|
|
this.toolStripSeparator1,
|
|
this.sENDMESSAGEBOXToolStripMenuItem,
|
|
this.sENDFILEToolStripMenuItem,
|
|
this.sENDFILETOMEMORYToolStripMenuItem});
|
|
this.contextMenuStrip1.Name = "contextMenuStrip1";
|
|
this.contextMenuStrip1.Size = new System.Drawing.Size(275, 130);
|
|
//
|
|
// cLIENTOPTIONSToolStripMenuItem
|
|
//
|
|
this.cLIENTOPTIONSToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.cLOSEToolStripMenuItem,
|
|
this.uPDATEToolStripMenuItem,
|
|
this.uNISTALLToolStripMenuItem});
|
|
this.cLIENTOPTIONSToolStripMenuItem.Name = "cLIENTOPTIONSToolStripMenuItem";
|
|
this.cLIENTOPTIONSToolStripMenuItem.Size = new System.Drawing.Size(274, 30);
|
|
this.cLIENTOPTIONSToolStripMenuItem.Text = "CLIENT OPTIONS";
|
|
//
|
|
// cLOSEToolStripMenuItem
|
|
//
|
|
this.cLOSEToolStripMenuItem.Name = "cLOSEToolStripMenuItem";
|
|
this.cLOSEToolStripMenuItem.Size = new System.Drawing.Size(173, 30);
|
|
this.cLOSEToolStripMenuItem.Text = "CLOSE";
|
|
this.cLOSEToolStripMenuItem.Click += new System.EventHandler(this.cLOSEToolStripMenuItem_Click);
|
|
//
|
|
// uPDATEToolStripMenuItem
|
|
//
|
|
this.uPDATEToolStripMenuItem.Name = "uPDATEToolStripMenuItem";
|
|
this.uPDATEToolStripMenuItem.Size = new System.Drawing.Size(173, 30);
|
|
this.uPDATEToolStripMenuItem.Text = "UPDATE";
|
|
this.uPDATEToolStripMenuItem.Click += new System.EventHandler(this.uPDATEToolStripMenuItem_Click);
|
|
//
|
|
// uNISTALLToolStripMenuItem
|
|
//
|
|
this.uNISTALLToolStripMenuItem.Name = "uNISTALLToolStripMenuItem";
|
|
this.uNISTALLToolStripMenuItem.Size = new System.Drawing.Size(173, 30);
|
|
this.uNISTALLToolStripMenuItem.Text = "UNISTALL";
|
|
this.uNISTALLToolStripMenuItem.Click += new System.EventHandler(this.uNISTALLToolStripMenuItem_Click);
|
|
//
|
|
// toolStripSeparator1
|
|
//
|
|
this.toolStripSeparator1.Name = "toolStripSeparator1";
|
|
this.toolStripSeparator1.Size = new System.Drawing.Size(271, 6);
|
|
//
|
|
// sENDMESSAGEBOXToolStripMenuItem
|
|
//
|
|
this.sENDMESSAGEBOXToolStripMenuItem.Name = "sENDMESSAGEBOXToolStripMenuItem";
|
|
this.sENDMESSAGEBOXToolStripMenuItem.Size = new System.Drawing.Size(274, 30);
|
|
this.sENDMESSAGEBOXToolStripMenuItem.Text = "SEND MESSAGEBOX";
|
|
this.sENDMESSAGEBOXToolStripMenuItem.Click += new System.EventHandler(this.sENDMESSAGEBOXToolStripMenuItem_Click);
|
|
//
|
|
// sENDFILEToolStripMenuItem
|
|
//
|
|
this.sENDFILEToolStripMenuItem.Name = "sENDFILEToolStripMenuItem";
|
|
this.sENDFILEToolStripMenuItem.Size = new System.Drawing.Size(274, 30);
|
|
this.sENDFILEToolStripMenuItem.Text = "SEND FILE TO DISK";
|
|
this.sENDFILEToolStripMenuItem.Click += new System.EventHandler(this.sENDFILEToolStripMenuItem_Click_1);
|
|
//
|
|
// sENDFILETOMEMORYToolStripMenuItem
|
|
//
|
|
this.sENDFILETOMEMORYToolStripMenuItem.Name = "sENDFILETOMEMORYToolStripMenuItem";
|
|
this.sENDFILETOMEMORYToolStripMenuItem.Size = new System.Drawing.Size(274, 30);
|
|
this.sENDFILETOMEMORYToolStripMenuItem.Text = "SEND FILE TO MEMORY";
|
|
this.sENDFILETOMEMORYToolStripMenuItem.Click += new System.EventHandler(this.sENDFILETOMEMORYToolStripMenuItem_Click);
|
|
//
|
|
// statusStrip1
|
|
//
|
|
this.statusStrip1.ImageScalingSize = new System.Drawing.Size(24, 24);
|
|
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.toolStripStatusLabel1});
|
|
this.statusStrip1.Location = new System.Drawing.Point(0, 342);
|
|
this.statusStrip1.Name = "statusStrip1";
|
|
this.statusStrip1.Size = new System.Drawing.Size(915, 30);
|
|
this.statusStrip1.TabIndex = 1;
|
|
this.statusStrip1.Text = "statusStrip1";
|
|
//
|
|
// toolStripStatusLabel1
|
|
//
|
|
this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
|
|
this.toolStripStatusLabel1.Size = new System.Drawing.Size(24, 25);
|
|
this.toolStripStatusLabel1.Text = "...";
|
|
//
|
|
// ping
|
|
//
|
|
this.ping.Enabled = true;
|
|
this.ping.Interval = 50000;
|
|
this.ping.Tick += new System.EventHandler(this.ping_Tick);
|
|
//
|
|
// UpdateUI
|
|
//
|
|
this.UpdateUI.Enabled = true;
|
|
this.UpdateUI.Interval = 1000;
|
|
this.UpdateUI.Tick += new System.EventHandler(this.UpdateUI_Tick);
|
|
//
|
|
// lv_hwid
|
|
//
|
|
this.lv_hwid.Text = "HWID";
|
|
this.lv_hwid.Width = 150;
|
|
//
|
|
// Form1
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(915, 372);
|
|
this.Controls.Add(this.listView1);
|
|
this.Controls.Add(this.statusStrip1);
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.Name = "Form1";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "AsyncRAT-Sharp // NYAN CAT";
|
|
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.Form1_FormClosed);
|
|
this.Load += new System.EventHandler(this.Form1_Load);
|
|
this.contextMenuStrip1.ResumeLayout(false);
|
|
this.statusStrip1.ResumeLayout(false);
|
|
this.statusStrip1.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
public System.Windows.Forms.ListView listView1;
|
|
private System.Windows.Forms.ColumnHeader lv_ip;
|
|
private System.Windows.Forms.ColumnHeader lv_user;
|
|
private System.Windows.Forms.ColumnHeader lv_os;
|
|
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
|
|
private System.Windows.Forms.StatusStrip statusStrip1;
|
|
private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel1;
|
|
private System.Windows.Forms.Timer ping;
|
|
private System.Windows.Forms.Timer UpdateUI;
|
|
private System.Windows.Forms.ToolStripMenuItem cLIENTOPTIONSToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem cLOSEToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem uPDATEToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem uNISTALLToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
|
|
private System.Windows.Forms.ToolStripMenuItem sENDMESSAGEBOXToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem sENDFILEToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem sENDFILETOMEMORYToolStripMenuItem;
|
|
private System.Windows.Forms.ColumnHeader lv_hwid;
|
|
}
|
|
}
|
|
|