Advertisement
Guest User

Margus Martsepp (Stackoverflow:How to build a wordlist)

a guest
Sep 19th, 2010
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 17.22 KB | None | 0 0
  1.    namespace Reader
  2.     {
  3.         partial class Form1
  4.         {
  5.             /// <summary>
  6.             /// Required designer variable.
  7.             /// </summary>
  8.             private System.ComponentModel.IContainer components = null;
  9.  
  10.             /// <summary>
  11.             /// Clean up any resources being used.
  12.             /// </summary>
  13.             /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14.             protected override void Dispose(bool disposing)
  15.             {
  16.                 if (disposing && (components != null))
  17.                 {
  18.                     components.Dispose();
  19.                 }
  20.                 base.Dispose(disposing);
  21.             }
  22.  
  23.             #region Windows Form Designer generated code
  24.  
  25.             /// <summary>
  26.             /// Required method for Designer support - do not modify
  27.             /// the contents of this method with the code editor.
  28.             /// </summary>
  29.             private void InitializeComponent()
  30.             {
  31.                 System.Windows.Forms.ListViewGroup listViewGroup1 = new System.Windows.Forms.ListViewGroup("ListViewGroup", System.Windows.Forms.HorizontalAlignment.Left);
  32.                 System.Windows.Forms.ListViewGroup listViewGroup2 = new System.Windows.Forms.ListViewGroup("ListViewGroup", System.Windows.Forms.HorizontalAlignment.Left);
  33.                 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
  34.                 this.button1 = new System.Windows.Forms.Button();
  35.                 this.label1 = new System.Windows.Forms.Label();
  36.                 this.label5 = new System.Windows.Forms.Label();
  37.                 this.output = new System.Windows.Forms.TextBox();
  38.                 this.listView1 = new System.Windows.Forms.ListView();
  39.                 this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  40.                 this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  41.                 this.label2 = new System.Windows.Forms.Label();
  42.                 this.label3 = new System.Windows.Forms.Label();
  43.                 this.label4 = new System.Windows.Forms.Label();
  44.                 this.label6 = new System.Windows.Forms.Label();
  45.                 this.text2 = new System.Windows.Forms.Label();
  46.                 this.time1 = new System.Windows.Forms.Label();
  47.                 this.time2 = new System.Windows.Forms.Label();
  48.                 this.text1 = new System.Windows.Forms.Label();
  49.                 this.openoutput = new System.Windows.Forms.Button();
  50.                 this.progresslabel = new System.Windows.Forms.Label();
  51.                 this.loading = new System.Windows.Forms.Label();
  52.                 this.SuspendLayout();
  53.                 //
  54.                 // button1
  55.                 //
  56.                 this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  57.                 this.button1.Location = new System.Drawing.Point(497, 297);
  58.                 this.button1.Name = "button1";
  59.                 this.button1.Size = new System.Drawing.Size(75, 59);
  60.                 this.button1.TabIndex = 0;
  61.                 this.button1.Text = "Start reading";
  62.                 this.button1.UseVisualStyleBackColor = true;
  63.                 this.button1.Click += new System.EventHandler(this.starter);
  64.                 //
  65.                 // label1
  66.                 //
  67.                 this.label1.AutoSize = true;
  68.                 this.label1.Location = new System.Drawing.Point(12, 8);
  69.                 this.label1.Name = "label1";
  70.                 this.label1.Size = new System.Drawing.Size(145, 18);
  71.                 this.label1.TabIndex = 2;
  72.                 this.label1.Text = "Drag And Drop files to read:";
  73.                 //
  74.                 // label5
  75.                 //
  76.                 this.label5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  77.                 this.label5.AutoSize = true;
  78.                 this.label5.Location = new System.Drawing.Point(343, 305);
  79.                 this.label5.Name = "label5";
  80.                 this.label5.Size = new System.Drawing.Size(63, 18);
  81.                 this.label5.TabIndex = 7;
  82.                 this.label5.Text = "Output file:";
  83.                 //
  84.                 // output
  85.                 //
  86.                 this.output.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  87.                 this.output.Location = new System.Drawing.Point(346, 332);
  88.                 this.output.Name = "output";
  89.                 this.output.Size = new System.Drawing.Size(145, 24);
  90.                 this.output.TabIndex = 8;
  91.                 this.output.Text = "wordlist.csv";
  92.                 //
  93.                 // listView1
  94.                 //
  95.                 this.listView1.Activation = System.Windows.Forms.ItemActivation.OneClick;
  96.                 this.listView1.AllowColumnReorder = true;
  97.                 this.listView1.AllowDrop = true;
  98.                 this.listView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  99.                             | System.Windows.Forms.AnchorStyles.Left)
  100.                             | System.Windows.Forms.AnchorStyles.Right)));
  101.                 this.listView1.BackColor = System.Drawing.Color.Lavender;
  102.                 this.listView1.CheckBoxes = true;
  103.                 this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
  104.                 this.columnHeader1,
  105.                 this.columnHeader4});
  106.                 this.listView1.Cursor = System.Windows.Forms.Cursors.Default;
  107.                 this.listView1.ForeColor = System.Drawing.SystemColors.ControlText;
  108.                 this.listView1.FullRowSelect = true;
  109.                 this.listView1.GridLines = true;
  110.                 listViewGroup1.Header = "ListViewGroup";
  111.                 listViewGroup1.Name = "listViewGroup1";
  112.                 listViewGroup2.Header = "ListViewGroup";
  113.                 listViewGroup2.Name = "listViewGroup2";
  114.                 this.listView1.Groups.AddRange(new System.Windows.Forms.ListViewGroup[] {
  115.                 listViewGroup1,
  116.                 listViewGroup2});
  117.                 this.listView1.LabelWrap = false;
  118.                 this.listView1.Location = new System.Drawing.Point(18, 29);
  119.                 this.listView1.Name = "listView1";
  120.                 this.listView1.RightToLeft = System.Windows.Forms.RightToLeft.No;
  121.                 this.listView1.ShowItemToolTips = true;
  122.                 this.listView1.Size = new System.Drawing.Size(557, 262);
  123.                 this.listView1.TabIndex = 9;
  124.                 this.listView1.UseCompatibleStateImageBehavior = false;
  125.                 this.listView1.View = System.Windows.Forms.View.Details;
  126.                 this.listView1.ItemChecked += new System.Windows.Forms.ItemCheckedEventHandler(this.listView1_ItemChecked);
  127.                 this.listView1.DragDrop += new System.Windows.Forms.DragEventHandler(this.listView1_DragDrop);
  128.                 this.listView1.DragEnter += new System.Windows.Forms.DragEventHandler(this.listView1_DragEnter);
  129.                 //
  130.                 // columnHeader1
  131.                 //
  132.                 this.columnHeader1.Text = "File Name";
  133.                 this.columnHeader1.Width = 200;
  134.                 //
  135.                 // columnHeader4
  136.                 //
  137.                 this.columnHeader4.Text = "Size";
  138.                 this.columnHeader4.Width = 350;
  139.                 //
  140.                 // label2
  141.                 //
  142.                 this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  143.                 this.label2.AutoSize = true;
  144.                 this.label2.Location = new System.Drawing.Point(15, 335);
  145.                 this.label2.Name = "label2";
  146.                 this.label2.Size = new System.Drawing.Size(32, 18);
  147.                 this.label2.TabIndex = 10;
  148.                 this.label2.Text = "Size:";
  149.                 //
  150.                 // label3
  151.                 //
  152.                 this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  153.                 this.label3.AutoSize = true;
  154.                 this.label3.Location = new System.Drawing.Point(12, 305);
  155.                 this.label3.Name = "label3";
  156.                 this.label3.Size = new System.Drawing.Size(35, 18);
  157.                 this.label3.TabIndex = 11;
  158.                 this.label3.Text = "Files:";
  159.                 //
  160.                 // label4
  161.                 //
  162.                 this.label4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  163.                 this.label4.AutoSize = true;
  164.                 this.label4.Location = new System.Drawing.Point(169, 305);
  165.                 this.label4.Name = "label4";
  166.                 this.label4.Size = new System.Drawing.Size(48, 18);
  167.                 this.label4.TabIndex = 12;
  168.                 this.label4.Text = "Started:";
  169.                 //
  170.                 // label6
  171.                 //
  172.                 this.label6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  173.                 this.label6.AutoSize = true;
  174.                 this.label6.Location = new System.Drawing.Point(164, 335);
  175.                 this.label6.Name = "label6";
  176.                 this.label6.Size = new System.Drawing.Size(53, 18);
  177.                 this.label6.TabIndex = 13;
  178.                 this.label6.Text = "Finished:";
  179.                 //
  180.                 // text2
  181.                 //
  182.                 this.text2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  183.                 this.text2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  184.                 this.text2.Location = new System.Drawing.Point(53, 334);
  185.                 this.text2.Name = "text2";
  186.                 this.text2.Size = new System.Drawing.Size(109, 20);
  187.                 this.text2.TabIndex = 16;
  188.                 //
  189.                 // time1
  190.                 //
  191.                 this.time1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  192.                 this.time1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  193.                 this.time1.Location = new System.Drawing.Point(223, 304);
  194.                 this.time1.Name = "time1";
  195.                 this.time1.Size = new System.Drawing.Size(110, 20);
  196.                 this.time1.TabIndex = 17;
  197.                 //
  198.                 // time2
  199.                 //
  200.                 this.time2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  201.                 this.time2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  202.                 this.time2.Location = new System.Drawing.Point(224, 334);
  203.                 this.time2.Name = "time2";
  204.                 this.time2.Size = new System.Drawing.Size(109, 20);
  205.                 this.time2.TabIndex = 18;
  206.                 //
  207.                 // text1
  208.                 //
  209.                 this.text1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  210.                 this.text1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  211.                 this.text1.Location = new System.Drawing.Point(53, 304);
  212.                 this.text1.Name = "text1";
  213.                 this.text1.Size = new System.Drawing.Size(109, 20);
  214.                 this.text1.TabIndex = 19;
  215.                 //
  216.                 // openoutput
  217.                 //
  218.                 this.openoutput.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  219.                 this.openoutput.Location = new System.Drawing.Point(416, 297);
  220.                 this.openoutput.Name = "openoutput";
  221.                 this.openoutput.Size = new System.Drawing.Size(75, 29);
  222.                 this.openoutput.TabIndex = 20;
  223.                 this.openoutput.Text = "Open";
  224.                 this.openoutput.UseVisualStyleBackColor = true;
  225.                 this.openoutput.Click += new System.EventHandler(this.button2_Click);
  226.                 //
  227.                 // progresslabel
  228.                 //
  229.                 this.progresslabel.AutoSize = true;
  230.                 this.progresslabel.Location = new System.Drawing.Point(354, 8);
  231.                 this.progresslabel.Name = "progresslabel";
  232.                 this.progresslabel.Size = new System.Drawing.Size(56, 18);
  233.                 this.progresslabel.TabIndex = 22;
  234.                 this.progresslabel.Text = "Progress:";
  235.                 this.progresslabel.Visible = false;
  236.                 //
  237.                 // loading
  238.                 //
  239.                 this.loading.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  240.                             | System.Windows.Forms.AnchorStyles.Left)
  241.                             | System.Windows.Forms.AnchorStyles.Right)));
  242.                 this.loading.BackColor = System.Drawing.Color.Lavender;
  243.                 this.loading.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  244.                 this.loading.Enabled = false;
  245.                 this.loading.Font = new System.Drawing.Font("HelveticaNeueLT Com 57 Cn", 36F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(186)));
  246.                 this.loading.Location = new System.Drawing.Point(18, 53);
  247.                 this.loading.Name = "loading";
  248.                 this.loading.Size = new System.Drawing.Size(557, 238);
  249.                 this.loading.TabIndex = 24;
  250.                 this.loading.Text = "Loading ...";
  251.                 this.loading.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  252.                 this.loading.Visible = false;
  253.                 //
  254.                 // Form1
  255.                 //
  256.                 this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  257.                 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  258.                 this.ClientSize = new System.Drawing.Size(584, 362);
  259.                 this.Controls.Add(this.loading);
  260.                 this.Controls.Add(this.progresslabel);
  261.                 this.Controls.Add(this.openoutput);
  262.                 this.Controls.Add(this.text1);
  263.                 this.Controls.Add(this.time2);
  264.                 this.Controls.Add(this.time1);
  265.                 this.Controls.Add(this.text2);
  266.                 this.Controls.Add(this.label6);
  267.                 this.Controls.Add(this.label4);
  268.                 this.Controls.Add(this.label3);
  269.                 this.Controls.Add(this.label2);
  270.                 this.Controls.Add(this.listView1);
  271.                 this.Controls.Add(this.output);
  272.                 this.Controls.Add(this.label5);
  273.                 this.Controls.Add(this.label1);
  274.                 this.Controls.Add(this.button1);
  275.                 this.Font = new System.Drawing.Font("HelveticaNeueLT Com 57 Cn", 9.749999F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(186)));
  276.                 this.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(32)))), ((int)(((byte)(32)))));
  277.                 this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  278.                 this.Name = "Form1";
  279.                 this.Text = "MM Wordlist Creator";
  280.                 this.ResumeLayout(false);
  281.                 this.PerformLayout();
  282.  
  283.             }
  284.  
  285.             #endregion
  286.  
  287.             private System.Windows.Forms.Button button1;
  288.             private System.Windows.Forms.Label label1;
  289.             private System.Windows.Forms.Label label5;
  290.             private System.Windows.Forms.TextBox output;
  291.             private System.Windows.Forms.ColumnHeader columnHeader1;
  292.             private System.Windows.Forms.ListView listView1;
  293.             private System.Windows.Forms.ColumnHeader columnHeader4;
  294.             private System.Windows.Forms.Label label2;
  295.             private System.Windows.Forms.Label label3;
  296.             private System.Windows.Forms.Label label4;
  297.             private System.Windows.Forms.Label label6;
  298.             private System.Windows.Forms.Label time2;
  299.             private System.Windows.Forms.Label time1;
  300.             private System.Windows.Forms.Label text2;
  301.             private System.Windows.Forms.Label text1;
  302.             private System.Windows.Forms.Button openoutput;
  303.             private System.Windows.Forms.Label progresslabel;
  304.             private System.Windows.Forms.Label loading;
  305.  
  306.             public System.EventHandler Form1Load { get; set; }
  307.         }
  308.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement