forked from NewEraCracker/LOIC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
frmMain.Designer.cs
839 lines (833 loc) · 43 KB
/
frmMain.Designer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
namespace LOIC
{
partial class frmMain
{
/// <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();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.label2 = new System.Windows.Forms.Label();
this.cmdTargetIP = new System.Windows.Forms.Button();
this.txtTargetIP = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.cmdTargetURL = new System.Windows.Forms.Button();
this.txtTargetURL = new System.Windows.Forms.TextBox();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.txtTarget = new System.Windows.Forms.TextBox();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.chkAllowGzip = new System.Windows.Forms.CheckBox();
this.label18 = new System.Windows.Forms.Label();
this.chkAllowRandom = new System.Windows.Forms.CheckBox();
this.label17 = new System.Windows.Forms.Label();
this.label9 = new System.Windows.Forms.Label();
this.label7 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.label6 = new System.Windows.Forms.Label();
this.label20 = new System.Windows.Forms.Label();
this.chkWaitReply = new System.Windows.Forms.CheckBox();
this.txtData = new System.Windows.Forms.TextBox();
this.txtSubsite = new System.Windows.Forms.TextBox();
this.txtTimeout = new System.Windows.Forms.TextBox();
this.txtThreads = new System.Windows.Forms.TextBox();
this.cbMethod = new System.Windows.Forms.ComboBox();
this.txtPort = new System.Windows.Forms.TextBox();
this.tbSpeed = new System.Windows.Forms.TrackBar();
this.groupBox4 = new System.Windows.Forms.GroupBox();
this.cmdAttack = new System.Windows.Forms.Button();
this.groupBox5 = new System.Windows.Forms.GroupBox();
this.label19 = new System.Windows.Forms.Label();
this.lbFailed = new System.Windows.Forms.Label();
this.lbRequested = new System.Windows.Forms.Label();
this.label22 = new System.Windows.Forms.Label();
this.label23 = new System.Windows.Forms.Label();
this.lbDownloaded = new System.Windows.Forms.Label();
this.lbDownloading = new System.Windows.Forms.Label();
this.lbRequesting = new System.Windows.Forms.Label();
this.lbConnecting = new System.Windows.Forms.Label();
this.lbIdle = new System.Windows.Forms.Label();
this.label12 = new System.Windows.Forms.Label();
this.label13 = new System.Windows.Forms.Label();
this.label14 = new System.Windows.Forms.Label();
this.label15 = new System.Windows.Forms.Label();
this.label16 = new System.Windows.Forms.Label();
this.TTip = new System.Windows.Forms.ToolTip(this.components);
this.label24 = new System.Windows.Forms.Label();
this.tShowStats = new System.Windows.Forms.Timer(this.components);
this.disableHive = new System.Windows.Forms.RadioButton();
this.enableHive = new System.Windows.Forms.RadioButton();
this.label25 = new System.Windows.Forms.Label();
this.txtIRCserver = new System.Windows.Forms.TextBox();
this.txtIRCport = new System.Windows.Forms.TextBox();
this.txtIRCchannel = new System.Windows.Forms.TextBox();
this.pBanner = new System.Windows.Forms.PictureBox();
this.label8 = new System.Windows.Forms.Label();
this.label26 = new System.Windows.Forms.Label();
this.label27 = new System.Windows.Forms.Label();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.groupBox3.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.tbSpeed)).BeginInit();
this.groupBox4.SuspendLayout();
this.groupBox5.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pBanner)).BeginInit();
this.SuspendLayout();
//
// groupBox1
//
this.groupBox1.Controls.Add(this.label2);
this.groupBox1.Controls.Add(this.cmdTargetIP);
this.groupBox1.Controls.Add(this.txtTargetIP);
this.groupBox1.Controls.Add(this.label1);
this.groupBox1.Controls.Add(this.cmdTargetURL);
this.groupBox1.Controls.Add(this.txtTargetURL);
this.groupBox1.ForeColor = System.Drawing.Color.LightBlue;
this.groupBox1.Location = new System.Drawing.Point(212, 42);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(488, 75);
this.groupBox1.TabIndex = 1;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "1. Select your target";
//
// label2
//
this.label2.Location = new System.Drawing.Point(3, 50);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(30, 14);
this.label2.TabIndex = 5;
this.label2.Text = "IP";
this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// cmdTargetIP
//
this.cmdTargetIP.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(64)))), ((int)(((byte)(96)))));
this.cmdTargetIP.ForeColor = System.Drawing.Color.Azure;
this.cmdTargetIP.Location = new System.Drawing.Point(410, 46);
this.cmdTargetIP.Name = "cmdTargetIP";
this.cmdTargetIP.Size = new System.Drawing.Size(71, 22);
this.cmdTargetIP.TabIndex = 4;
this.cmdTargetIP.Text = "Lock on";
this.cmdTargetIP.UseVisualStyleBackColor = false;
this.cmdTargetIP.Click += new System.EventHandler(this.cmdTargetIP_Click);
//
// txtTargetIP
//
this.txtTargetIP.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(24)))), ((int)(((byte)(48)))), ((int)(((byte)(64)))));
this.txtTargetIP.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.txtTargetIP.ForeColor = System.Drawing.Color.Azure;
this.txtTargetIP.Location = new System.Drawing.Point(39, 48);
this.txtTargetIP.Name = "txtTargetIP";
this.txtTargetIP.Size = new System.Drawing.Size(365, 20);
this.txtTargetIP.TabIndex = 3;
this.TTip.SetToolTip(this.txtTargetIP, "If you know your target\'s IP, enter the IP here and click \"Lock on\"");
//
// label1
//
this.label1.Location = new System.Drawing.Point(3, 23);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(30, 14);
this.label1.TabIndex = 2;
this.label1.Text = "URL";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// cmdTargetURL
//
this.cmdTargetURL.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(64)))), ((int)(((byte)(96)))));
this.cmdTargetURL.ForeColor = System.Drawing.Color.Azure;
this.cmdTargetURL.Location = new System.Drawing.Point(410, 19);
this.cmdTargetURL.Name = "cmdTargetURL";
this.cmdTargetURL.Size = new System.Drawing.Size(71, 22);
this.cmdTargetURL.TabIndex = 2;
this.cmdTargetURL.Text = "Lock on";
this.cmdTargetURL.UseVisualStyleBackColor = false;
this.cmdTargetURL.Click += new System.EventHandler(this.cmdTargetURL_Click);
//
// txtTargetURL
//
this.txtTargetURL.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(24)))), ((int)(((byte)(48)))), ((int)(((byte)(64)))));
this.txtTargetURL.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.txtTargetURL.ForeColor = System.Drawing.Color.Azure;
this.txtTargetURL.Location = new System.Drawing.Point(39, 20);
this.txtTargetURL.Name = "txtTargetURL";
this.txtTargetURL.Size = new System.Drawing.Size(365, 20);
this.txtTargetURL.TabIndex = 1;
this.TTip.SetToolTip(this.txtTargetURL, "If you don\'t know your target\'s IP, enter a URL here and click \"Lock on\"");
//
// groupBox2
//
this.groupBox2.Controls.Add(this.txtTarget);
this.groupBox2.ForeColor = System.Drawing.Color.LightBlue;
this.groupBox2.Location = new System.Drawing.Point(212, 138);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(758, 96);
this.groupBox2.TabIndex = 3;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "Selected target";
//
// txtTarget
//
this.txtTarget.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(24)))), ((int)(((byte)(48)))), ((int)(((byte)(64)))));
this.txtTarget.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.txtTarget.Font = new System.Drawing.Font("Arial", 42F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
this.txtTarget.ForeColor = System.Drawing.Color.Azure;
this.txtTarget.Location = new System.Drawing.Point(6, 17);
this.txtTarget.Name = "txtTarget";
this.txtTarget.Size = new System.Drawing.Size(746, 72);
this.txtTarget.TabIndex = 1;
this.txtTarget.TabStop = false;
this.txtTarget.Text = "N O N E !";
this.txtTarget.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.TTip.SetToolTip(this.txtTarget, "The currently selected target");
this.txtTarget.Enter += new System.EventHandler(this.txtTarget_Enter);
//
// groupBox3
//
this.groupBox3.Controls.Add(this.chkAllowGzip);
this.groupBox3.Controls.Add(this.label18);
this.groupBox3.Controls.Add(this.chkAllowRandom);
this.groupBox3.Controls.Add(this.label17);
this.groupBox3.Controls.Add(this.label9);
this.groupBox3.Controls.Add(this.label7);
this.groupBox3.Controls.Add(this.label4);
this.groupBox3.Controls.Add(this.label6);
this.groupBox3.Controls.Add(this.label20);
this.groupBox3.Controls.Add(this.chkWaitReply);
this.groupBox3.Controls.Add(this.txtData);
this.groupBox3.Controls.Add(this.txtSubsite);
this.groupBox3.Controls.Add(this.txtTimeout);
this.groupBox3.Controls.Add(this.txtThreads);
this.groupBox3.Controls.Add(this.cbMethod);
this.groupBox3.Controls.Add(this.txtPort);
this.groupBox3.Controls.Add(this.tbSpeed);
this.groupBox3.ForeColor = System.Drawing.Color.LightBlue;
this.groupBox3.Location = new System.Drawing.Point(212, 253);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Size = new System.Drawing.Size(758, 136);
this.groupBox3.TabIndex = 4;
this.groupBox3.TabStop = false;
this.groupBox3.Text = "2. Attack options";
//
// chkAllowGzip
//
this.chkAllowGzip.Checked = true;
this.chkAllowGzip.CheckState = System.Windows.Forms.CheckState.Checked;
this.chkAllowGzip.Location = new System.Drawing.Point(640, 101);
this.chkAllowGzip.Name = "chkAllowGzip";
this.chkAllowGzip.Size = new System.Drawing.Size(114, 18);
this.chkAllowGzip.TabIndex = 29;
this.chkAllowGzip.Text = "Use Gzip (HTTP)";
this.TTip.SetToolTip(this.chkAllowGzip, "Enable Gzip support for HTTP method");
//
// label18
//
this.label18.Location = new System.Drawing.Point(116, 19);
this.label18.Name = "label18";
this.label18.Size = new System.Drawing.Size(124, 16);
this.label18.TabIndex = 25;
this.label18.Text = "TCP / UDP message";
this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// chkAllowRandom
//
this.chkAllowRandom.AutoSize = true;
this.chkAllowRandom.Location = new System.Drawing.Point(65, 110);
this.chkAllowRandom.Name = "chkAllowRandom";
this.chkAllowRandom.Size = new System.Drawing.Size(255, 18);
this.chkAllowRandom.TabIndex = 28;
this.chkAllowRandom.Text = "Append random chars to the subsite / message";
this.TTip.SetToolTip(this.chkAllowRandom, "Enable appending random chars to the subsite / message every request");
this.chkAllowRandom.UseVisualStyleBackColor = true;
//
// label17
//
this.label17.Location = new System.Drawing.Point(136, 65);
this.label17.Name = "label17";
this.label17.Size = new System.Drawing.Size(89, 17);
this.label17.TabIndex = 24;
this.label17.Text = "HTTP Subsite";
this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// label9
//
this.label9.Location = new System.Drawing.Point(573, 106);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(50, 15);
this.label9.TabIndex = 23;
this.label9.Text = "Timeout";
this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// label7
//
this.label7.Location = new System.Drawing.Point(511, 106);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(56, 15);
this.label7.TabIndex = 22;
this.label7.Text = "Threads";
this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// label4
//
this.label4.Location = new System.Drawing.Point(370, 107);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(75, 15);
this.label4.TabIndex = 21;
this.label4.Text = "Method";
this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// label6
//
this.label6.Location = new System.Drawing.Point(451, 106);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(54, 15);
this.label6.TabIndex = 20;
this.label6.Text = "Port";
this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// label20
//
this.label20.Location = new System.Drawing.Point(370, 52);
this.label20.Name = "label20";
this.label20.Size = new System.Drawing.Size(374, 15);
this.label20.TabIndex = 18;
this.label20.Text = "<= faster Speed slower =>";
this.label20.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// chkWaitReply
//
this.chkWaitReply.AutoSize = true;
this.chkWaitReply.Checked = true;
this.chkWaitReply.CheckState = System.Windows.Forms.CheckState.Checked;
this.chkWaitReply.Location = new System.Drawing.Point(640, 77);
this.chkWaitReply.Name = "chkWaitReply";
this.chkWaitReply.Size = new System.Drawing.Size(91, 18);
this.chkWaitReply.TabIndex = 7;
this.chkWaitReply.Text = "Wait for reply";
this.TTip.SetToolTip(this.chkWaitReply, "Don\'t disconnect before the server\'s started to answer");
this.chkWaitReply.UseVisualStyleBackColor = true;
//
// txtData
//
this.txtData.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(24)))), ((int)(((byte)(48)))), ((int)(((byte)(64)))));
this.txtData.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.txtData.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.txtData.ForeColor = System.Drawing.Color.Azure;
this.txtData.Location = new System.Drawing.Point(11, 37);
this.txtData.Name = "txtData";
this.txtData.Size = new System.Drawing.Size(333, 20);
this.txtData.TabIndex = 3;
this.txtData.Text = "U dun goofed";
this.txtData.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.TTip.SetToolTip(this.txtData, "The data to send in TCP/UDP mode");
//
// txtSubsite
//
this.txtSubsite.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(24)))), ((int)(((byte)(48)))), ((int)(((byte)(64)))));
this.txtSubsite.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.txtSubsite.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.txtSubsite.ForeColor = System.Drawing.Color.Azure;
this.txtSubsite.Location = new System.Drawing.Point(11, 84);
this.txtSubsite.Name = "txtSubsite";
this.txtSubsite.Size = new System.Drawing.Size(333, 20);
this.txtSubsite.TabIndex = 2;
this.txtSubsite.Text = "/";
this.txtSubsite.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.TTip.SetToolTip(this.txtSubsite, "What subsite to target (when using HTTP as type)");
//
// txtTimeout
//
this.txtTimeout.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(24)))), ((int)(((byte)(48)))), ((int)(((byte)(64)))));
this.txtTimeout.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.txtTimeout.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.txtTimeout.ForeColor = System.Drawing.Color.Azure;
this.txtTimeout.Location = new System.Drawing.Point(573, 83);
this.txtTimeout.Name = "txtTimeout";
this.txtTimeout.Size = new System.Drawing.Size(50, 20);
this.txtTimeout.TabIndex = 1;
this.txtTimeout.Text = "9001";
this.txtTimeout.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.TTip.SetToolTip(this.txtTimeout, "Max time to wait for a response");
//
// txtThreads
//
this.txtThreads.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(24)))), ((int)(((byte)(48)))), ((int)(((byte)(64)))));
this.txtThreads.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.txtThreads.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.txtThreads.ForeColor = System.Drawing.Color.Azure;
this.txtThreads.Location = new System.Drawing.Point(511, 83);
this.txtThreads.Name = "txtThreads";
this.txtThreads.Size = new System.Drawing.Size(56, 20);
this.txtThreads.TabIndex = 6;
this.txtThreads.Text = "10";
this.txtThreads.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.TTip.SetToolTip(this.txtThreads, "How many users LOIC should emulate");
//
// cbMethod
//
this.cbMethod.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(24)))), ((int)(((byte)(48)))), ((int)(((byte)(64)))));
this.cbMethod.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.cbMethod.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.cbMethod.ForeColor = System.Drawing.Color.Azure;
this.cbMethod.FormattingEnabled = true;
this.cbMethod.Items.AddRange(new object[] {
"TCP",
"UDP",
"HTTP"});
this.cbMethod.Location = new System.Drawing.Point(370, 82);
this.cbMethod.Name = "cbMethod";
this.cbMethod.Size = new System.Drawing.Size(75, 22);
this.cbMethod.TabIndex = 5;
this.cbMethod.Text = "TCP";
this.TTip.SetToolTip(this.cbMethod, "What type of attack to launch");
//
// txtPort
//
this.txtPort.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(24)))), ((int)(((byte)(48)))), ((int)(((byte)(64)))));
this.txtPort.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.txtPort.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.txtPort.ForeColor = System.Drawing.Color.Azure;
this.txtPort.Location = new System.Drawing.Point(451, 83);
this.txtPort.Name = "txtPort";
this.txtPort.Size = new System.Drawing.Size(54, 20);
this.txtPort.TabIndex = 4;
this.txtPort.Text = "80";
this.txtPort.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.TTip.SetToolTip(this.txtPort, "What port to attack (regular websites use 80)");
//
// tbSpeed
//
this.tbSpeed.Location = new System.Drawing.Point(370, 26);
this.tbSpeed.Maximum = 20;
this.tbSpeed.Name = "tbSpeed";
this.tbSpeed.Size = new System.Drawing.Size(374, 45);
this.tbSpeed.TabIndex = 8;
this.TTip.SetToolTip(this.tbSpeed, "Use this to increase or reduce attack speed");
this.tbSpeed.ValueChanged += new System.EventHandler(this.tbSpeed_ValueChanged);
//
// groupBox4
//
this.groupBox4.Controls.Add(this.cmdAttack);
this.groupBox4.ForeColor = System.Drawing.Color.LightBlue;
this.groupBox4.Location = new System.Drawing.Point(712, 42);
this.groupBox4.Name = "groupBox4";
this.groupBox4.Size = new System.Drawing.Size(258, 75);
this.groupBox4.TabIndex = 2;
this.groupBox4.TabStop = false;
this.groupBox4.Text = "3. Ready?";
//
// cmdAttack
//
this.cmdAttack.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(64)))), ((int)(((byte)(96)))));
this.cmdAttack.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.cmdAttack.ForeColor = System.Drawing.Color.Azure;
this.cmdAttack.Location = new System.Drawing.Point(6, 19);
this.cmdAttack.Name = "cmdAttack";
this.cmdAttack.Size = new System.Drawing.Size(246, 50);
this.cmdAttack.TabIndex = 1;
this.cmdAttack.Text = "IMMA CHARGIN MAH LAZER";
this.TTip.SetToolTip(this.cmdAttack, "I sincerely hope you can guess what this button does.");
this.cmdAttack.UseVisualStyleBackColor = false;
this.cmdAttack.Click += new System.EventHandler(this.cmdAttack_Click);
//
// groupBox5
//
this.groupBox5.Controls.Add(this.label19);
this.groupBox5.Controls.Add(this.lbFailed);
this.groupBox5.Controls.Add(this.lbRequested);
this.groupBox5.Controls.Add(this.label22);
this.groupBox5.Controls.Add(this.label23);
this.groupBox5.Controls.Add(this.lbDownloaded);
this.groupBox5.Controls.Add(this.lbDownloading);
this.groupBox5.Controls.Add(this.lbRequesting);
this.groupBox5.Controls.Add(this.lbConnecting);
this.groupBox5.Controls.Add(this.lbIdle);
this.groupBox5.Controls.Add(this.label12);
this.groupBox5.Controls.Add(this.label13);
this.groupBox5.Controls.Add(this.label14);
this.groupBox5.Controls.Add(this.label15);
this.groupBox5.Controls.Add(this.label16);
this.groupBox5.ForeColor = System.Drawing.Color.LightBlue;
this.groupBox5.Location = new System.Drawing.Point(212, 406);
this.groupBox5.Name = "groupBox5";
this.groupBox5.Size = new System.Drawing.Size(758, 68);
this.groupBox5.TabIndex = 5;
this.groupBox5.TabStop = false;
this.groupBox5.Text = "Attack status";
//
// label19
//
this.label19.BackColor = System.Drawing.Color.Azure;
this.label19.Location = new System.Drawing.Point(6, 40);
this.label19.Name = "label19";
this.label19.Size = new System.Drawing.Size(746, 1);
this.label19.TabIndex = 25;
this.label19.Text = "Idle";
this.label19.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// lbFailed
//
this.lbFailed.Location = new System.Drawing.Point(648, 41);
this.lbFailed.Name = "lbFailed";
this.lbFailed.Size = new System.Drawing.Size(101, 24);
this.lbFailed.TabIndex = 24;
this.lbFailed.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.TTip.SetToolTip(this.lbFailed, "How many times (in total) the webserver didn\'t respond. High number = server down" +
".");
//
// lbRequested
//
this.lbRequested.Location = new System.Drawing.Point(541, 41);
this.lbRequested.Name = "lbRequested";
this.lbRequested.Size = new System.Drawing.Size(101, 24);
this.lbRequested.TabIndex = 23;
this.lbRequested.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.TTip.SetToolTip(this.lbRequested, "How many times (in total) a download has been requested");
//
// label22
//
this.label22.Location = new System.Drawing.Point(648, 16);
this.label22.Name = "label22";
this.label22.Size = new System.Drawing.Size(101, 24);
this.label22.TabIndex = 22;
this.label22.Text = "Failed";
this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// label23
//
this.label23.Location = new System.Drawing.Point(541, 16);
this.label23.Name = "label23";
this.label23.Size = new System.Drawing.Size(101, 24);
this.label23.TabIndex = 21;
this.label23.Text = "Requested";
this.label23.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// lbDownloaded
//
this.lbDownloaded.Location = new System.Drawing.Point(434, 41);
this.lbDownloaded.Name = "lbDownloaded";
this.lbDownloaded.Size = new System.Drawing.Size(101, 24);
this.lbDownloaded.TabIndex = 20;
this.lbDownloaded.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.TTip.SetToolTip(this.lbDownloaded, "How many times (in total) that a download has been initiated");
//
// lbDownloading
//
this.lbDownloading.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(12)))), ((int)(((byte)(24)))), ((int)(((byte)(32)))));
this.lbDownloading.Location = new System.Drawing.Point(327, 41);
this.lbDownloading.Name = "lbDownloading";
this.lbDownloading.Size = new System.Drawing.Size(101, 24);
this.lbDownloading.TabIndex = 19;
this.lbDownloading.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.TTip.SetToolTip(this.lbDownloading, "How many threads that are downloading information from the server");
//
// lbRequesting
//
this.lbRequesting.Location = new System.Drawing.Point(220, 41);
this.lbRequesting.Name = "lbRequesting";
this.lbRequesting.Size = new System.Drawing.Size(101, 24);
this.lbRequesting.TabIndex = 18;
this.lbRequesting.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.TTip.SetToolTip(this.lbRequesting, "How many threads that are requesting information from the server");
//
// lbConnecting
//
this.lbConnecting.Location = new System.Drawing.Point(113, 41);
this.lbConnecting.Name = "lbConnecting";
this.lbConnecting.Size = new System.Drawing.Size(101, 24);
this.lbConnecting.TabIndex = 17;
this.lbConnecting.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.TTip.SetToolTip(this.lbConnecting, "How many threads that are trying to connect");
//
// lbIdle
//
this.lbIdle.Location = new System.Drawing.Point(6, 41);
this.lbIdle.Name = "lbIdle";
this.lbIdle.Size = new System.Drawing.Size(101, 24);
this.lbIdle.TabIndex = 16;
this.lbIdle.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.TTip.SetToolTip(this.lbIdle, "How many threads that are without work. Should be 0");
//
// label12
//
this.label12.Location = new System.Drawing.Point(434, 16);
this.label12.Name = "label12";
this.label12.Size = new System.Drawing.Size(101, 24);
this.label12.TabIndex = 15;
this.label12.Text = "Downloaded";
this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// label13
//
this.label13.Location = new System.Drawing.Point(327, 16);
this.label13.Name = "label13";
this.label13.Size = new System.Drawing.Size(101, 24);
this.label13.TabIndex = 14;
this.label13.Text = "Downloading";
this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// label14
//
this.label14.Location = new System.Drawing.Point(220, 16);
this.label14.Name = "label14";
this.label14.Size = new System.Drawing.Size(101, 24);
this.label14.TabIndex = 13;
this.label14.Text = "Requesting";
this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// label15
//
this.label15.Location = new System.Drawing.Point(113, 16);
this.label15.Name = "label15";
this.label15.Size = new System.Drawing.Size(101, 24);
this.label15.TabIndex = 12;
this.label15.Text = "Connecting";
this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// label16
//
this.label16.Location = new System.Drawing.Point(6, 16);
this.label16.Name = "label16";
this.label16.Size = new System.Drawing.Size(101, 24);
this.label16.TabIndex = 11;
this.label16.Text = "Idle";
this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// label24
//
this.label24.AutoSize = true;
this.label24.Location = new System.Drawing.Point(22, 452);
this.label24.Name = "label24";
this.label24.Size = new System.Drawing.Size(165, 14);
this.label24.TabIndex = 14;
this.label24.Text = "github.com/NewEraCracker/LOIC";
this.TTip.SetToolTip(this.label24, "Go to official page");
this.label24.Click += new System.EventHandler(this.label24_Click);
//
// tShowStats
//
this.tShowStats.Interval = 10;
this.tShowStats.Tick += new System.EventHandler(this.tShowStats_Tick);
//
// disableHive
//
this.disableHive.AutoSize = true;
this.disableHive.Checked = true;
this.disableHive.Location = new System.Drawing.Point(212, 15);
this.disableHive.Name = "disableHive";
this.disableHive.Size = new System.Drawing.Size(163, 18);
this.disableHive.TabIndex = 15;
this.disableHive.TabStop = true;
this.disableHive.Text = "Manual Mode (Do it yourself)";
this.disableHive.UseVisualStyleBackColor = true;
this.disableHive.CheckedChanged += new System.EventHandler(this.disableHive_CheckedChanged);
//
// enableHive
//
this.enableHive.AutoSize = true;
this.enableHive.Location = new System.Drawing.Point(377, 15);
this.enableHive.Name = "enableHive";
this.enableHive.Size = new System.Drawing.Size(124, 18);
this.enableHive.TabIndex = 16;
this.enableHive.Text = "IRC Mode (HiveMind)";
this.TTip.SetToolTip(this.enableHive, "Fill the IRC options if you wish to use this mode");
this.enableHive.UseVisualStyleBackColor = true;
this.enableHive.CheckedChanged += new System.EventHandler(this.enableHive_CheckedChanged);
//
// label25
//
this.label25.Location = new System.Drawing.Point(760, 17);
this.label25.Name = "label25";
this.label25.Size = new System.Drawing.Size(210, 16);
this.label25.TabIndex = 17;
this.label25.Text = "Disconnected.";
//
// txtIRCserver
//
this.txtIRCserver.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(24)))), ((int)(((byte)(48)))), ((int)(((byte)(64)))));
this.txtIRCserver.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.txtIRCserver.ForeColor = System.Drawing.Color.Azure;
this.txtIRCserver.Location = new System.Drawing.Point(505, 15);
this.txtIRCserver.Name = "txtIRCserver";
this.txtIRCserver.Size = new System.Drawing.Size(107, 20);
this.txtIRCserver.TabIndex = 18;
//
// txtIRCport
//
this.txtIRCport.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(24)))), ((int)(((byte)(48)))), ((int)(((byte)(64)))));
this.txtIRCport.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.txtIRCport.ForeColor = System.Drawing.Color.Azure;
this.txtIRCport.Location = new System.Drawing.Point(618, 15);
this.txtIRCport.Name = "txtIRCport";
this.txtIRCport.Size = new System.Drawing.Size(53, 20);
this.txtIRCport.TabIndex = 19;
this.txtIRCport.Text = "6667";
//
// txtIRCchannel
//
this.txtIRCchannel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(24)))), ((int)(((byte)(48)))), ((int)(((byte)(64)))));
this.txtIRCchannel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.txtIRCchannel.ForeColor = System.Drawing.Color.Azure;
this.txtIRCchannel.Location = new System.Drawing.Point(677, 15);
this.txtIRCchannel.Name = "txtIRCchannel";
this.txtIRCchannel.Size = new System.Drawing.Size(77, 20);
this.txtIRCchannel.TabIndex = 20;
this.txtIRCchannel.Text = "#loic";
//
// pBanner
//
this.pBanner.Image = global::LOIC.Properties.Resources.LOIC;
this.pBanner.Location = new System.Drawing.Point(12, 12);
this.pBanner.Name = "pBanner";
this.pBanner.Size = new System.Drawing.Size(184, 462);
this.pBanner.TabIndex = 12;
this.pBanner.TabStop = false;
//
// label8
//
this.label8.AutoSize = true;
this.label8.Location = new System.Drawing.Point(502, 1);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(58, 14);
this.label8.TabIndex = 21;
this.label8.Text = "IRC server";
//
// label26
//
this.label26.AutoSize = true;
this.label26.Location = new System.Drawing.Point(615, 1);
this.label26.Name = "label26";
this.label26.Size = new System.Drawing.Size(26, 14);
this.label26.TabIndex = 22;
this.label26.Text = "Port";
//
// label27
//
this.label27.AutoSize = true;
this.label27.Location = new System.Drawing.Point(674, 1);
this.label27.Name = "label27";
this.label27.Size = new System.Drawing.Size(46, 14);
this.label27.TabIndex = 23;
this.label27.Text = "Channel";
//
// frmMain
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 14F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(12)))), ((int)(((byte)(24)))), ((int)(((byte)(32)))));
this.ClientSize = new System.Drawing.Size(982, 486);
this.Controls.Add(this.label27);
this.Controls.Add(this.label26);
this.Controls.Add(this.label8);
this.Controls.Add(this.txtIRCchannel);
this.Controls.Add(this.txtIRCport);
this.Controls.Add(this.txtIRCserver);
this.Controls.Add(this.label25);
this.Controls.Add(this.enableHive);
this.Controls.Add(this.disableHive);
this.Controls.Add(this.label24);
this.Controls.Add(this.pBanner);
this.Controls.Add(this.groupBox3);
this.Controls.Add(this.groupBox5);
this.Controls.Add(this.groupBox4);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox1);
this.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.ForeColor = System.Drawing.Color.LightBlue;
this.MaximizeBox = false;
this.Name = "frmMain";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "frmMain";
this.Load += new System.EventHandler(this.frmMain_Load);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.groupBox3.ResumeLayout(false);
this.groupBox3.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.tbSpeed)).EndInit();
this.groupBox4.ResumeLayout(false);
this.groupBox5.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.pBanner)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.Button cmdTargetURL;
private System.Windows.Forms.TextBox txtTargetURL;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Button cmdTargetIP;
private System.Windows.Forms.TextBox txtTargetIP;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.TextBox txtTarget;
private System.Windows.Forms.GroupBox groupBox3;
private System.Windows.Forms.TextBox txtPort;
private System.Windows.Forms.TextBox txtThreads;
private System.Windows.Forms.ComboBox cbMethod;
private System.Windows.Forms.TextBox txtTimeout;
private System.Windows.Forms.GroupBox groupBox4;
private System.Windows.Forms.Button cmdAttack;
private System.Windows.Forms.GroupBox groupBox5;
private System.Windows.Forms.Label label22;
private System.Windows.Forms.Label label23;
private System.Windows.Forms.Label lbDownloaded;
private System.Windows.Forms.Label lbDownloading;
private System.Windows.Forms.Label lbRequesting;
private System.Windows.Forms.Label lbConnecting;
private System.Windows.Forms.Label lbIdle;
private System.Windows.Forms.Label label12;
private System.Windows.Forms.Label label13;
private System.Windows.Forms.Label label14;
private System.Windows.Forms.Label label15;
private System.Windows.Forms.Label label16;
private System.Windows.Forms.Label lbFailed;
private System.Windows.Forms.Label lbRequested;
private System.Windows.Forms.TextBox txtSubsite;
private System.Windows.Forms.ToolTip TTip;
private System.Windows.Forms.TextBox txtData;
private System.Windows.Forms.Timer tShowStats;
private System.Windows.Forms.Label label19;
private System.Windows.Forms.Label label7;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.Label label6;
private System.Windows.Forms.Label label20;
private System.Windows.Forms.CheckBox chkWaitReply;
private System.Windows.Forms.TrackBar tbSpeed;
private System.Windows.Forms.Label label18;
private System.Windows.Forms.Label label17;
private System.Windows.Forms.Label label9;
private System.Windows.Forms.PictureBox pBanner;
private System.Windows.Forms.CheckBox chkAllowGzip;
private System.Windows.Forms.CheckBox chkAllowRandom;
private System.Windows.Forms.Label label24;
private System.Windows.Forms.RadioButton disableHive;
private System.Windows.Forms.RadioButton enableHive;
private System.Windows.Forms.Label label25;
private System.Windows.Forms.TextBox txtIRCserver;
private System.Windows.Forms.TextBox txtIRCport;
private System.Windows.Forms.TextBox txtIRCchannel;
private System.Windows.Forms.Label label8;
private System.Windows.Forms.Label label26;
private System.Windows.Forms.Label label27;
}
}