-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWikto.cs
10179 lines (9693 loc) · 501 KB
/
Wikto.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
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
Copyright (C) 2004 SensePost Research
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Diagnostics;
using System.Text;
using System.IO;
using System.Net;
using System.Net.Sockets;
using System.Threading;
using SensePost.Wikto.com.google.api;
using System.Xml;
using System.Text.RegularExpressions;
using Microsoft.Win32;
using Org.Mentalis.Security.Ssl;
using Org.Mentalis.Security.Certificates;
namespace SensePost.Wikto
{
#region Thread Delegates
public delegate String DlgControlTextGet(System.Windows.Forms.Control myctl);
public delegate void DlgControlTextSet(System.Windows.Forms.Control myctl, String s);
public delegate void DlgControlTextApp(System.Windows.Forms.TextBox myctl, String s);
public delegate void DlgControlDisable(System.Windows.Forms.Control myctl, bool b);
public delegate void DlgControlListCls(System.Windows.Forms.ListBox myctl);
public delegate void DlgControlListAdd(System.Windows.Forms.ListBox myctl, String s);
public delegate void DlgControlListUnq(System.Windows.Forms.ListBox myctl, String s);
public delegate void DlgControlListSel(System.Windows.Forms.ListBox myctl, int i);
public delegate void DlgControlViewSel(System.Windows.Forms.ListView myctl, int i);
public delegate void DlgControlViewAdd(System.Windows.Forms.ListView myctl, ListViewItem s);
public delegate void DlgControlViewCls(System.Windows.Forms.ListView myctl);
public delegate void DlgControlViewUnq(System.Windows.Forms.ListView myctl, ListViewItem s);
public delegate String DlgControlListArr(System.Windows.Forms.ListBox myctl);
public delegate String DlgControlViewArr(System.Windows.Forms.ListView myctl, int ImageIndex);
public delegate void DlgControlProgMax(System.Windows.Forms.ProgressBar myctl, int i);
public delegate void DlgControlProgVal(System.Windows.Forms.ProgressBar myctl, int i);
public delegate void DlgControlProgInc(System.Windows.Forms.ProgressBar myctl, int i);
public delegate bool DlgControlChckGet(System.Windows.Forms.CheckBox myctl);
public delegate void DlgControlLViewSetActive(System.Windows.Forms.ListView myctl, int i);
public delegate void DlgControlSetReadonly(System.Windows.Forms.TextBox myctl, bool b);
public delegate String DlgControlNupdownGet(System.Windows.Forms.NumericUpDown myctl);
public delegate int DlgControlProgMaxGet(System.Windows.Forms.ProgressBar myctl);
#endregion
#region frm_Wikto
public class frm_Wikto : System.Windows.Forms.Form
{
#region Delegate Declarations
public DlgControlTextGet dlgControlTextGet;
public DlgControlTextSet dlgControlTextSet;
public DlgControlTextApp dlgControlTextApp;
public DlgControlDisable dlgControlDisable;
public DlgControlListCls dlgControlListCls;
public DlgControlListAdd dlgControlListAdd;
public DlgControlListUnq dlgControlListUnq;
public DlgControlListArr dlgControlListArr;
public DlgControlListSel dlgControlListSel;
public DlgControlViewSel dlgControlViewSel;
public DlgControlViewAdd dlgControlViewAdd;
public DlgControlViewCls dlgControlViewCls;
public DlgControlViewUnq dlgControlViewUnq;
public DlgControlViewArr dlgControlViewArr;
public DlgControlProgMax dlgControlProgMax;
public DlgControlProgVal dlgControlProgVal;
public DlgControlProgInc dlgControlProgInc;
public DlgControlChckGet dlgControlChckGet;
public DlgControlLViewSetActive dlgControlListView;
public DlgControlSetReadonly dlgControlerSetReadonly;
public DlgControlNupdownGet dlgControllNupGet;
public DlgControlProgMaxGet dlgControlProgMaxGet;
public delegate void DelegateToSpider();
public delegate void DelegateToLongTask();
public delegate void DelegateToGoogleTask();
public delegate void DelegateToNiktoTask();
public delegate void DelegateToGoogleHackTask();
#endregion
#region Public Class Variables
public static bool stoppit=false;
public static bool stopdir=false;
public static bool stopnikto=false;
public static bool skipDirectories=false;
public static bool stoppitgoogle=false;
public static bool stopGH=false;
public static bool stopscroll=false;
public static bool GHstopscroll=false;
public static bool pauseBackEnd = false;
public static bool pauseWikto = false;
public bool bl_ShowStart = true;
public bool bl_ShowStartWiz = true;
public Hashtable IWWorking = new Hashtable();
public Hashtable IWDiscovered = new Hashtable();
public Hashtable NiktoOptimised = new Hashtable();
public ArrayList IWResults = new ArrayList();
public ArrayList TheGoogleHackDatabase = new ArrayList();
#endregion
#region Public Class Structures
public struct niktoRequests
{
public string type;
public string request;
public string description;
public string trigger;
public string method;
public string sensepostreq;
}
public struct niktoFP
{
public string URLlocation;
public string HTTPblob;
public string filetype;
public string method;
}
public struct BackEndMining
{
public string location;
public bool indexable;
public string responsecode;
public string ai;
}
public struct niktoRes
{
public niktoRequests theNiktoRequest;
public double fuzzValue;
public string rawrequest;
public string rawresult;
public string theoriginalrequest;
}
public struct GoogleHackDB_type
{
public string signatureReferenceNumber;
public string categoryref;
public string category;
public string querytype;
public string querystring;
public string shortDescription;
public string textualDescription;
public string cveNumber;
public string cveLocation;
}
#endregion
#region Private Class Variables
private String BFDirErr = "";
private String BFFilErr = "";
private decimal BFNupVal;
private int previousTime;
private bool WeirdDummy = false;
#endregion
#region Class Variables
string prgVersion = "2.1";
int numberofNiktorequests = 0;
niktoRequests[] niktoRequest = new niktoRequests[20000];
niktoFP[] nikto_FP = new niktoFP[200000];
niktoFP[] backend_FP = new niktoFP[200000];
BackEndMining[] backend_dirresults = new BackEndMining[200000];
BackEndMining[] backend_filresults = new BackEndMining[200000];
int globalFP = 0;
int globalFPb = 0;
niktoRes[] nikto_result = new niktoRes[200000];
int niktoResultCounter = 0;
decimal NiktoFuzzNValueNow = 0;
GoogleHackDB_type[] GoogleHack = new GoogleHackDB_type[5000];
int numberofGoogleHacks = 0;
Spider spd;
double maxBackEndAI = 0;
double minBackEndAI = 100;
bool isitIndexable = false;
bool isFirstTimeRun = true;
#endregion
#region Widgets
private System.Windows.Forms.Splitter splitter1;
private System.Windows.Forms.ToolTip toolTip1;
private System.Windows.Forms.OpenFileDialog fdlLoadBackEndDirs;
private System.Windows.Forms.OpenFileDialog fdlLoadBackEndFiles;
private System.Windows.Forms.OpenFileDialog fdlLoadBackEndExt;
private System.Windows.Forms.SaveFileDialog fdlExportBackEnd;
private System.Windows.Forms.OpenFileDialog fdlLoadNiktoDB;
private System.Windows.Forms.SaveFileDialog fdlExportWikto;
private System.Windows.Forms.OpenFileDialog fdlGoogleHacksOpenDB;
private System.Windows.Forms.ContextMenu cntxtGoogleHacks;
private System.Windows.Forms.OpenFileDialog openFileDialog1;
private System.Windows.Forms.FolderBrowserDialog folderBrowserDialog1;
private TabPage pnl_configleft;
private TabPage GoogleHacks;
private Panel pnl_GHMain;
private TableLayoutPanel tpnl_HMain;
private TableLayoutPanel tpnl_GHManQuery;
private Panel pnl_GHMQ1;
private TextBox txtGoogleHackOnceOff;
private Panel pnl_GHMQ2;
private DotNetSkin.SkinControls.SkinButton btn_GHManualQuery;
private Panel pbl_GoogleHackDb;
private ListBox lstGoogleHack;
private Panel pnl_GHDesc;
private TextBox txtGoogleHackDesc;
private TableLayoutPanel tpnl_GHResults;
private TableLayoutPanel tpnl_GHResultsTop;
private Panel pnl_GHRes1;
private Label label4;
private Panel pnl_GHRes2;
private DotNetSkin.SkinControls.SkinButtonRed btn_GHClearResults;
private Panel pnl_GHRes3;
private ListBox lstGoogleHackResults;
private Panel panel6;
private Label lblGoogleHackEst;
private Label lblGoogleHackPage;
private DotNetSkin.SkinControls.SkinButton btn_GHLoadDatabase;
private Label label1;
private Label lblGoogleHackStatus;
private ProgressBar prgGHQuick;
private ProgressBar prgsGoogleHackAll;
private TextBox txtGoogleHackTarget;
private PictureBox pictureBox7;
private DotNetSkin.SkinControls.SkinButtonRed btn_GHQuit;
private DotNetSkin.SkinControls.SkinButtonYellow btn_GHStop;
private DotNetSkin.SkinControls.SkinButtonGreen btn_GHStart;
private Label label21;
private Label label24;
private TabPage BackEndMiner;
private Panel pnl_BackEndMain;
private TableLayoutPanel tpnl_BackendMain;
private Panel pnl_BackEndTop;
private TableLayoutPanel tpnl_BackEndTop;
private Panel pnl_BETopLeft1;
private Label label13;
private DotNetSkin.SkinControls.SkinButton btn_BEImportInDirG;
private DotNetSkin.SkinControls.SkinButton btn_BEInDirImportM;
private DotNetSkin.SkinControls.SkinButtonRed btn_BEInDirClear;
private Panel pbl_TopLeft3;
private RichTextBox txtInDirs;
private Panel pnl_BETopMid1;
private Label label15;
private DotNetSkin.SkinControls.SkinButtonRed btn_BEInFileClear;
private Panel pnl_BETopMid3;
private RichTextBox txtInFiles;
private Panel pnl_BETopRight1;
private Label label38;
private DotNetSkin.SkinControls.SkinButtonRed btn_BEInExtClear;
private Panel pnl_BETopRight3;
private RichTextBox txtInFileTypes;
private Panel pnl_BackEndBottom;
private TableLayoutPanel tpnl_BEBottom1;
private TableLayoutPanel tpnl_BEBottom2;
private Panel pnl_BEBottomLeft1;
private Label label50;
private DotNetSkin.SkinControls.SkinButtonRed btn_BEOutDirClear;
private Panel pnl_BEBottomLeft3;
private TableLayoutPanel tpnl_BEBottomRight;
private Panel pnl_BEBottomRight1;
private Label label59;
private DotNetSkin.SkinControls.SkinButtonRed btn_BEOutIndexClear;
private Panel pnl_BEBottomRight3;
private TableLayoutPanel tpnl_BEFiles;
private Panel pnl_BEFile1;
private Label label52;
private DotNetSkin.SkinControls.SkinButtonRed btn_BEOutFileClear;
private Panel pnl_BEFile3;
private Panel panel4;
private DotNetSkin.SkinControls.SkinCheckBox chkPreserve;
private DotNetSkin.SkinControls.SkinButtonYellow btn_BESkiptoDirs;
private DotNetSkin.SkinControls.SkinButtonRed btn_BEQuit;
private DotNetSkin.SkinControls.SkinButtonYellow btn_BEStop;
private DotNetSkin.SkinControls.SkinButtonGreen btn_BEStart;
private DotNetSkin.SkinControls.SkinButtonYellow btn_BESkiptoFiles;
private DotNetSkin.SkinControls.SkinButtonGreen btn_BackEndExport;
private GroupBox groupBox10;
private DotNetSkin.SkinControls.SkinButtonRed btn_BEClearDB;
private DotNetSkin.SkinControls.SkinCheckBox chkBackEndAI;
private NumericUpDown NUPDOWNBackEnd;
private TextBox txtErrorCodeFile;
private TextBox txtErrorCodeDir;
private Panel panel2;
private Label label11;
private Label label14;
private GroupBox groupBox11;
private DotNetSkin.SkinControls.SkinButton btn_BEUpdateFromSP;
private ComboBox cmbBackEndUpdate;
private DotNetSkin.SkinControls.SkinButton btn_BELoadExts;
private DotNetSkin.SkinControls.SkinButton btn_BELoadFiles;
private GroupBox groupBox12;
private Label label9;
private Label label8;
private TextBox txtIPPort;
private DotNetSkin.SkinControls.SkinCheckBox chkBackEnduseSSLport;
private TextBox txtIPNumber;
private Label label56;
private PictureBox pictureBox3;
private Label label58;
private ProgressBar prgsFiles;
private ProgressBar prgsDirs;
private Label lblStatus;
private TabPage NiktoIsh;
private Panel pnl_WiktoMain;
private TableLayoutPanel tpnl_WiktoMain;
private TableLayoutPanel tpnl_WiktoT1;
private Panel pnl_WiktoTL1;
private Label label5;
private DotNetSkin.SkinControls.SkinButton btn_WiktoImportBackEnd;
private DotNetSkin.SkinControls.SkinButton btn_WiktoImportGoogle;
private DotNetSkin.SkinControls.SkinButton btn_WiktoImportMirror;
private DotNetSkin.SkinControls.SkinButtonRed btn_WiktoClearCGI;
private Panel pnl_WiktoTL3;
private ListBox lst_NiktoCGI;
private TableLayoutPanel tpnl_WiktoT2;
private Panel pnl_WiktoTM1;
private Label label12;
private Panel pnl_WiktoTM2;
private ListView lvw_NiktoDb;
private ColumnHeader col_desc;
private ColumnHeader col_target;
private TableLayoutPanel tpnl_WiktoT3;
private Panel pnl_WiktoTR1;
private Label label26;
private Panel pnl_WiktoTR2;
private ListView lvw_NiktoDesc;
private ColumnHeader col_ndbd;
private ColumnHeader col_ndv;
private TableLayoutPanel tpnl_WiktoB1;
private Panel panpnl_WiktoBL1;
private Label label60;
private Panel panpnl_WiktoBL2;
private ListView lvw_NiktoResults;
private ColumnHeader columnHeader1;
private ColumnHeader columnHeader2;
private ColumnHeader columnHeader3;
private TableLayoutPanel tpnl_WiktoB2;
private Panel panpnl_WiktoBM1;
private Label label61;
private Panel panpnl_WiktoBM2;
private TextBox txtNiktoReq;
private TableLayoutPanel tpnl_WiktoB3;
private Panel panpnl_WiktoBR1;
private Label label62;
private Panel panpnl_WiktoBR2;
private TextBox txtNiktoRes;
private Panel panel5;
private Label label2;
private ProgressBar prgNik;
private ProgressBar prgNiktoWork;
private DotNetSkin.SkinControls.SkinButton btn_NiktoLoad;
private DotNetSkin.SkinControls.SkinButtonGreen skinButtonGreen2;
private Label lblNiktoAI;
private GroupBox groupBox13;
private DotNetSkin.SkinControls.SkinButtonRed btnClearNiktoAI;
private DotNetSkin.SkinControls.SkinButton btnNiktoRestFuzz;
private DotNetSkin.SkinControls.SkinButton btnNiktoShowAll;
private DotNetSkin.SkinControls.SkinButton btnNiktoFuzzUpdate;
private NumericUpDown NUPDOWNfuzz;
private GroupBox groupBox14;
private DotNetSkin.SkinControls.SkinCheckBox chkuseSSLWikto;
private TextBox txtNiktoPort;
private TextBox txtNiktoTarget;
private Label label28;
private Label label29;
private PictureBox pictureBox2;
private DotNetSkin.SkinControls.SkinButtonRed skinButtonRed1;
private DotNetSkin.SkinControls.SkinButtonYellow btn_WiktoStop;
private DotNetSkin.SkinControls.SkinButtonGreen btn_WiktoStart;
private Label label3;
private TabPage Googler;
private TableLayoutPanel tpnlGoogleMain;
private Panel panel3;
private Label label57;
private Label label53;
private TextBox txtGoogleQuery;
private Label lblEstimate;
private Label lblPageNumber;
private TableLayoutPanel tpnlGoogleDir;
private TableLayoutPanel tpnlGoogleDirTop;
private Panel pnlGoogleDirLeft;
private Label label20;
private Panel pnlGoogleDirRight;
private DotNetSkin.SkinControls.SkinButtonRed btnGoogleClearDir;
private Panel pnlGoogleDirMain;
private ListBox lstGoogleDir;
private TableLayoutPanel tpnlGoogleLink;
private TableLayoutPanel tpnlGoogleLinkTop;
private Panel pnlGoogleLinkLeft;
private Label label7;
private Panel pnlGoogleLinkRight;
private DotNetSkin.SkinControls.SkinButtonRed btnGoogleClearLink;
private Panel pnlGoogleLinkMain;
private ListBox lstGoogleLink;
private Panel pnlGoogleLeft;
private Label lblGoogleStatus;
private PictureBox pictureBox4;
private DotNetSkin.SkinControls.SkinButtonRed btnGoogleQuit;
private DotNetSkin.SkinControls.SkinButtonYellow btnStopGoole;
private DotNetSkin.SkinControls.SkinButtonGreen btnGoogleStart;
private Label label54;
private ProgressBar prgGoogle;
private Label label55;
private Label label23;
private TextBox txtWords;
private TextBox txtGoogleKeyword;
private Label label22;
private TextBox txtGoogleTarget;
private Label lblQuery;
private TabPage Mirror;
private TableLayoutPanel tpnlMirror;
private TableLayoutPanel tpnlMirrorLinks;
private TableLayoutPanel tpnlMirrorLinkTop;
private Panel pnlMirrorLinkLeft;
private Label label34;
private Panel pnlMrrorLinkRight;
private DotNetSkin.SkinControls.SkinButtonRed btn_MirrorClearLinks;
private ListBox lstMirrorLinks;
private TableLayoutPanel tpnlMirrorDir;
private ListBox lstMirrorDirs;
private TableLayoutPanel tpnlMirrorDirTop;
private Panel pnlMirrorDirLeft;
private Label label31;
private Panel pnlMirrorDirRight;
private DotNetSkin.SkinControls.SkinButtonRed btn_MirrorClearDirs;
private Panel pnlMirrorLeft;
private Label lblMirrorStatus;
private PictureBox pictureBox6;
private TextBox txtHTTarget;
private DotNetSkin.SkinControls.SkinButtonRed btn_MirrorQuit;
private DotNetSkin.SkinControls.SkinButtonYellow btnHTStop;
private DotNetSkin.SkinControls.SkinButtonGreen btnHTStart;
private Label label32;
private ProgressBar prgHT;
private TabControl tabControl1;
private DotNetSkin.SkinControls.SkinRadioButton radioHEAD;
private DotNetSkin.SkinControls.SkinRadioButton radioGET;
private DotNetSkin.SkinControls.SkinButton btn_BELoadDirs;
private Panel pnl_ConfigMain;
private TabControl tab_configMain;
private TabPage cfg_Proxy;
private Panel panel1;
private PictureBox pictureBox5;
private DotNetSkin.SkinControls.SkinCheckBox chkProxyPresent;
private TextBox txtProxySettings;
private Label label17;
private TabPage cfg_Google;
private TabPage cfg_Timing;
private NumericUpDown updownRetryTCP;
private NumericUpDown updownTimeOutTCP;
private Label label6;
private Label label16;
private TabPage cfg_DB;
private TextBox txtDBLocationGH;
private TextBox txtDBlocationNikto;
private TabPage cfg_Header;
private TabPage cfg_Update;
private Label label49;
private Label label48;
private Label label46;
private TextBox txtURLUpdateGHDB;
private TextBox txtURLUpdateNiktoDB;
private TextBox txtURLUpdate;
private Label label25;
private DotNetSkin.SkinControls.SkinButton btn_CfgLocateNDb;
private DotNetSkin.SkinControls.SkinButton btn_CfgLocateGDb;
private Label label27;
private TextBox txtHeader;
private DotNetSkin.SkinControls.SkinButtonRed btn_CnfReset;
private DotNetSkin.SkinControls.SkinButtonYellow btn_CnfSave;
private DotNetSkin.SkinControls.SkinButtonGreen btn_CnfLoad;
private DotNetSkin.SkinControls.SkinButtonRed btn_CnfQuit;
private Label label37;
private Label lblConfigFileLocation;
private TabPage cfg_Help;
private LinkLabel lbl_ResearchMail;
private Label label41;
private LinkLabel lbl_WiktoHome;
private Label label39;
private Label label47;
private Label lbl_About;
private DotNetSkin.SkinControls.SkinButton skinButton4;
private DotNetSkin.SkinControls.SkinButton skinButton5;
private DotNetSkin.SkinControls.SkinButton skinButton6;
private TabPage cfg_Spider;
private Label label63;
private NumericUpDown NUPDOWNspider;
private Label label64;
private Label label67;
public TextBox txt_ConfigSpiderExclude;
private TextBox txt_ConfigSpiderExtension;
private DotNetSkin.SkinControls.SkinCheckBox chk_SpiderSSL;
private Label label10;
private TextBox txt_SpiderPort;
private DotNetSkin.SkinControls.SkinCheckBox chkOptimizedNikto;
private DotNetSkin.SkinControls.SkinButton btnBackEndPause;
private DotNetSkin.SkinControls.SkinButton btnPauseWikto;
private TabPage cfg_Startup;
private DotNetSkin.SkinControls.SkinButton btn_ShowNews;
private DotNetSkin.SkinControls.SkinCheckBox chk_ShowStart;
private TabPage tab_wizard;
private DotNetSkin.SkinControls.SkinCheckBox chk_StartWiz;
private DotNetSkin.SkinControls.SkinButton btn_browseghdb;
private DotNetSkin.SkinControls.SkinButton btn_browsenikto;
private Label label35;
private TextBox txt_content;
private Label label33;
private Label label36;
private NumericUpDown nud_contentsize;
private TextBox txt_excdirs;
private Label label40;
private TextBox txt_idxflags;
private Label label42;
private DotNetSkin.SkinControls.SkinCheckBox chk_ignoreidx;
private GroupBox groupBox1;
private DotNetSkin.SkinControls.SkinCheckBox chkTimeAnomalies;
private NumericUpDown nudTimeAnomaly;
private ListView lstViewDirs;
private ImageList imageList1;
private ColumnHeader columnHeader4;
private ListView lstViewIndexDirs;
private ColumnHeader columnHeader5;
private ListView lstViewFiles;
private ColumnHeader columnHeader6;
private ColumnHeader columnHeader7;
private ColumnHeader columnHeader8;
private ColumnHeader columnHeader9;
private ListViewColumnSorter lvwColumnSorter;
private DotNetSkin.SkinControls.SkinButton btn_StartAura;
private NumericUpDown updownGoogleDepth;
private Label label18;
private ColumnHeader columnHeader10;
private DotNetSkin.SkinControls.SkinButton btn_EditDirs;
private Label label19;
private TextBox txtSpudDirectory;
private DotNetSkin.SkinControls.SkinButton btnSpudLocate;
private PictureBox pictureBox1;
private System.ComponentModel.IContainer components;
#endregion
#region Class Instantiation
public frm_Wikto() {
InitializeComponent();
#region Delegate Instantiation
dlgControlTextGet = new DlgControlTextGet(this.DelgateDeclarationTextGet);
dlgControlTextSet = new DlgControlTextSet(this.DelgateDeclarationTextSet);
dlgControlTextApp = new DlgControlTextApp(this.DelgateDeclarationTextApp);
dlgControlDisable = new DlgControlDisable(this.DelgateDeclarationDisable);
dlgControlListCls = new DlgControlListCls(this.DelgateDeclarationListCls);
dlgControlListAdd = new DlgControlListAdd(this.DelgateDeclarationListAdd);
dlgControlListUnq = new DlgControlListUnq(this.DelgateDeclarationListUnq);
dlgControlListArr = new DlgControlListArr(this.DelgateDeclarationListArr);
dlgControlListSel = new DlgControlListSel(this.DelgateDeclarationListSel);
dlgControlViewSel = new DlgControlViewSel(this.DelgateDeclarationViewSel);
dlgControlViewAdd = new DlgControlViewAdd(this.DelgateDeclarationViewAdd);
dlgControlViewCls = new DlgControlViewCls(this.DelgateDeclarationViewCls);
dlgControlViewUnq = new DlgControlViewUnq(this.DelgateDeclarationViewUnq);
dlgControlViewArr = new DlgControlViewArr(this.DelgateDeclarationViewArr);
dlgControlProgMax = new DlgControlProgMax(this.DelgateDeclarationProgMax);
dlgControlProgVal = new DlgControlProgVal(this.DelgateDeclarationProgVal);
dlgControlProgInc = new DlgControlProgInc(this.DelgateDeclarationProgInc);
dlgControlChckGet = new DlgControlChckGet(this.DelgateDeclarationChckGet);
dlgControlListView = new DlgControlLViewSetActive(this.DelgateDeclarationLviewSet);
dlgControlerSetReadonly = new DlgControlSetReadonly(this.DelgateDeclarationReadOnlySet);
dlgControllNupGet = new DlgControlNupdownGet(this.DelgateDeclarationNupGet);
dlgControlProgMaxGet = new DlgControlProgMaxGet(this.DelgateDeclarationProgMaxGet);
#endregion
string label = string.Format("{0} {1} v{2}", Application.CompanyName, Application.ProductName, Application.ProductVersion);
this.Text = label;
BFDirErr = txtErrorCodeDir.Text;
BFFilErr = txtErrorCodeFile.Text;
BFNupVal = NUPDOWNBackEnd.Value;
lvwColumnSorter = new ListViewColumnSorter();
lstViewDirs.ListViewItemSorter = lvwColumnSorter;
lstViewIndexDirs.ListViewItemSorter = lvwColumnSorter;
lstViewFiles.ListViewItemSorter = lvwColumnSorter;
lvw_NiktoResults.ListViewItemSorter = lvwColumnSorter;
}
#endregion
#region Exit and Dispose Object to Clear Up resources...
protected override void Dispose( bool disposing )
{
if( disposing )
{
if (components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}
public void Quitter()
{
DialogResult dr = MessageBox.Show("Wikto version" + prgVersion + " by SensePost\nwww.sensepost.com\[email protected]\n\n\nAre you sure you want to quit?", "Keep this tool free - support us!",MessageBoxButtons.YesNo);
if(dr.Equals(DialogResult.Yes))
Application.Exit();
}
#endregion
#region Windows Form Designer generated code
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frm_Wikto));
this.splitter1 = new System.Windows.Forms.Splitter();
this.cntxtGoogleHacks = new System.Windows.Forms.ContextMenu();
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.btn_CfgLocateNDb = new DotNetSkin.SkinControls.SkinButton();
this.btn_CfgLocateGDb = new DotNetSkin.SkinControls.SkinButton();
this.txtDBLocationGH = new System.Windows.Forms.TextBox();
this.txtDBlocationNikto = new System.Windows.Forms.TextBox();
this.txtHeader = new System.Windows.Forms.TextBox();
this.chkProxyPresent = new DotNetSkin.SkinControls.SkinCheckBox();
this.txtProxySettings = new System.Windows.Forms.TextBox();
this.NUPDOWNspider = new System.Windows.Forms.NumericUpDown();
this.txt_ConfigSpiderExclude = new System.Windows.Forms.TextBox();
this.txt_ConfigSpiderExtension = new System.Windows.Forms.TextBox();
this.updownRetryTCP = new System.Windows.Forms.NumericUpDown();
this.updownTimeOutTCP = new System.Windows.Forms.NumericUpDown();
this.txtURLUpdateGHDB = new System.Windows.Forms.TextBox();
this.txtURLUpdateNiktoDB = new System.Windows.Forms.TextBox();
this.txtURLUpdate = new System.Windows.Forms.TextBox();
this.btn_ShowNews = new DotNetSkin.SkinControls.SkinButton();
this.chk_ShowStart = new DotNetSkin.SkinControls.SkinCheckBox();
this.btn_CnfQuit = new DotNetSkin.SkinControls.SkinButtonRed();
this.btn_CnfReset = new DotNetSkin.SkinControls.SkinButtonRed();
this.btn_CnfSave = new DotNetSkin.SkinControls.SkinButtonYellow();
this.btn_CnfLoad = new DotNetSkin.SkinControls.SkinButtonGreen();
this.btn_GHManualQuery = new DotNetSkin.SkinControls.SkinButton();
this.btn_GHLoadDatabase = new DotNetSkin.SkinControls.SkinButton();
this.txtGoogleHackTarget = new System.Windows.Forms.TextBox();
this.btn_GHQuit = new DotNetSkin.SkinControls.SkinButtonRed();
this.btn_GHStop = new DotNetSkin.SkinControls.SkinButtonYellow();
this.btn_GHStart = new DotNetSkin.SkinControls.SkinButtonGreen();
this.btn_BEInDirImportM = new DotNetSkin.SkinControls.SkinButton();
this.btn_BEImportInDirG = new DotNetSkin.SkinControls.SkinButton();
this.btnBackEndPause = new DotNetSkin.SkinControls.SkinButton();
this.chkPreserve = new DotNetSkin.SkinControls.SkinCheckBox();
this.btn_BESkiptoDirs = new DotNetSkin.SkinControls.SkinButtonYellow();
this.btn_BEQuit = new DotNetSkin.SkinControls.SkinButtonRed();
this.btn_BEStop = new DotNetSkin.SkinControls.SkinButtonYellow();
this.btn_BEStart = new DotNetSkin.SkinControls.SkinButtonGreen();
this.btn_BESkiptoFiles = new DotNetSkin.SkinControls.SkinButtonYellow();
this.btn_BackEndExport = new DotNetSkin.SkinControls.SkinButtonGreen();
this.skinButton4 = new DotNetSkin.SkinControls.SkinButton();
this.skinButton5 = new DotNetSkin.SkinControls.SkinButton();
this.skinButton6 = new DotNetSkin.SkinControls.SkinButton();
this.radioHEAD = new DotNetSkin.SkinControls.SkinRadioButton();
this.radioGET = new DotNetSkin.SkinControls.SkinRadioButton();
this.btn_BEClearDB = new DotNetSkin.SkinControls.SkinButtonRed();
this.chkBackEndAI = new DotNetSkin.SkinControls.SkinCheckBox();
this.txtErrorCodeDir = new System.Windows.Forms.TextBox();
this.txtErrorCodeFile = new System.Windows.Forms.TextBox();
this.btn_BELoadDirs = new DotNetSkin.SkinControls.SkinButton();
this.btn_BEUpdateFromSP = new DotNetSkin.SkinControls.SkinButton();
this.cmbBackEndUpdate = new System.Windows.Forms.ComboBox();
this.btn_BELoadExts = new DotNetSkin.SkinControls.SkinButton();
this.btn_BELoadFiles = new DotNetSkin.SkinControls.SkinButton();
this.txtIPPort = new System.Windows.Forms.TextBox();
this.chkBackEnduseSSLport = new DotNetSkin.SkinControls.SkinCheckBox();
this.txtIPNumber = new System.Windows.Forms.TextBox();
this.btn_WiktoImportBackEnd = new DotNetSkin.SkinControls.SkinButton();
this.btn_WiktoImportMirror = new DotNetSkin.SkinControls.SkinButton();
this.btn_WiktoImportGoogle = new DotNetSkin.SkinControls.SkinButton();
this.btn_NiktoLoad = new DotNetSkin.SkinControls.SkinButton();
this.skinButtonGreen2 = new DotNetSkin.SkinControls.SkinButtonGreen();
this.btnClearNiktoAI = new DotNetSkin.SkinControls.SkinButtonRed();
this.btnNiktoRestFuzz = new DotNetSkin.SkinControls.SkinButton();
this.btnNiktoShowAll = new DotNetSkin.SkinControls.SkinButton();
this.chkOptimizedNikto = new DotNetSkin.SkinControls.SkinCheckBox();
this.btnNiktoFuzzUpdate = new DotNetSkin.SkinControls.SkinButton();
this.NUPDOWNfuzz = new System.Windows.Forms.NumericUpDown();
this.chkuseSSLWikto = new DotNetSkin.SkinControls.SkinCheckBox();
this.txtNiktoPort = new System.Windows.Forms.TextBox();
this.txtNiktoTarget = new System.Windows.Forms.TextBox();
this.skinButtonRed1 = new DotNetSkin.SkinControls.SkinButtonRed();
this.btn_WiktoStop = new DotNetSkin.SkinControls.SkinButtonYellow();
this.btn_WiktoStart = new DotNetSkin.SkinControls.SkinButtonGreen();
this.btnGoogleQuit = new DotNetSkin.SkinControls.SkinButtonRed();
this.btnStopGoole = new DotNetSkin.SkinControls.SkinButtonYellow();
this.btnGoogleStart = new DotNetSkin.SkinControls.SkinButtonGreen();
this.txtWords = new System.Windows.Forms.TextBox();
this.txtGoogleKeyword = new System.Windows.Forms.TextBox();
this.txtGoogleTarget = new System.Windows.Forms.TextBox();
this.chk_SpiderSSL = new DotNetSkin.SkinControls.SkinCheckBox();
this.txt_SpiderPort = new System.Windows.Forms.TextBox();
this.txtHTTarget = new System.Windows.Forms.TextBox();
this.btn_MirrorQuit = new DotNetSkin.SkinControls.SkinButtonRed();
this.btnHTStop = new DotNetSkin.SkinControls.SkinButtonYellow();
this.btnHTStart = new DotNetSkin.SkinControls.SkinButtonGreen();
this.tabControl1 = new System.Windows.Forms.TabControl();
this.Mirror = new System.Windows.Forms.TabPage();
this.tpnlMirror = new System.Windows.Forms.TableLayoutPanel();
this.tpnlMirrorLinks = new System.Windows.Forms.TableLayoutPanel();
this.tpnlMirrorLinkTop = new System.Windows.Forms.TableLayoutPanel();
this.pnlMirrorLinkLeft = new System.Windows.Forms.Panel();
this.label34 = new System.Windows.Forms.Label();
this.pnlMrrorLinkRight = new System.Windows.Forms.Panel();
this.btn_MirrorClearLinks = new DotNetSkin.SkinControls.SkinButtonRed();
this.lstMirrorLinks = new System.Windows.Forms.ListBox();
this.tpnlMirrorDir = new System.Windows.Forms.TableLayoutPanel();
this.lstMirrorDirs = new System.Windows.Forms.ListBox();
this.tpnlMirrorDirTop = new System.Windows.Forms.TableLayoutPanel();
this.pnlMirrorDirLeft = new System.Windows.Forms.Panel();
this.label31 = new System.Windows.Forms.Label();
this.pnlMirrorDirRight = new System.Windows.Forms.Panel();
this.btn_MirrorClearDirs = new DotNetSkin.SkinControls.SkinButtonRed();
this.pnlMirrorLeft = new System.Windows.Forms.Panel();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.label10 = new System.Windows.Forms.Label();
this.lblMirrorStatus = new System.Windows.Forms.Label();
this.pictureBox6 = new System.Windows.Forms.PictureBox();
this.label32 = new System.Windows.Forms.Label();
this.prgHT = new System.Windows.Forms.ProgressBar();
this.Googler = new System.Windows.Forms.TabPage();
this.tpnlGoogleMain = new System.Windows.Forms.TableLayoutPanel();
this.panel3 = new System.Windows.Forms.Panel();
this.label57 = new System.Windows.Forms.Label();
this.label53 = new System.Windows.Forms.Label();
this.txtGoogleQuery = new System.Windows.Forms.TextBox();
this.lblEstimate = new System.Windows.Forms.Label();
this.lblPageNumber = new System.Windows.Forms.Label();
this.tpnlGoogleDir = new System.Windows.Forms.TableLayoutPanel();
this.tpnlGoogleDirTop = new System.Windows.Forms.TableLayoutPanel();
this.pnlGoogleDirLeft = new System.Windows.Forms.Panel();
this.label20 = new System.Windows.Forms.Label();
this.pnlGoogleDirRight = new System.Windows.Forms.Panel();
this.btnGoogleClearDir = new DotNetSkin.SkinControls.SkinButtonRed();
this.pnlGoogleDirMain = new System.Windows.Forms.Panel();
this.lstGoogleDir = new System.Windows.Forms.ListBox();
this.tpnlGoogleLink = new System.Windows.Forms.TableLayoutPanel();
this.tpnlGoogleLinkTop = new System.Windows.Forms.TableLayoutPanel();
this.pnlGoogleLinkLeft = new System.Windows.Forms.Panel();
this.label7 = new System.Windows.Forms.Label();
this.pnlGoogleLinkRight = new System.Windows.Forms.Panel();
this.btnGoogleClearLink = new DotNetSkin.SkinControls.SkinButtonRed();
this.pnlGoogleLinkMain = new System.Windows.Forms.Panel();
this.lstGoogleLink = new System.Windows.Forms.ListBox();
this.pnlGoogleLeft = new System.Windows.Forms.Panel();
this.lblGoogleStatus = new System.Windows.Forms.Label();
this.pictureBox4 = new System.Windows.Forms.PictureBox();
this.label54 = new System.Windows.Forms.Label();
this.prgGoogle = new System.Windows.Forms.ProgressBar();
this.label55 = new System.Windows.Forms.Label();
this.label23 = new System.Windows.Forms.Label();
this.label22 = new System.Windows.Forms.Label();
this.lblQuery = new System.Windows.Forms.Label();
this.BackEndMiner = new System.Windows.Forms.TabPage();
this.pnl_BackEndMain = new System.Windows.Forms.Panel();
this.tpnl_BackendMain = new System.Windows.Forms.TableLayoutPanel();
this.pnl_BackEndTop = new System.Windows.Forms.Panel();
this.tpnl_BackEndTop = new System.Windows.Forms.TableLayoutPanel();
this.pnl_BETopLeft1 = new System.Windows.Forms.Panel();
this.label13 = new System.Windows.Forms.Label();
this.btn_BEInDirClear = new DotNetSkin.SkinControls.SkinButtonRed();
this.pbl_TopLeft3 = new System.Windows.Forms.Panel();
this.txtInDirs = new System.Windows.Forms.RichTextBox();
this.pnl_BETopMid1 = new System.Windows.Forms.Panel();
this.btn_BEInFileClear = new DotNetSkin.SkinControls.SkinButtonRed();
this.label15 = new System.Windows.Forms.Label();
this.pnl_BETopMid3 = new System.Windows.Forms.Panel();
this.txtInFiles = new System.Windows.Forms.RichTextBox();
this.pnl_BETopRight1 = new System.Windows.Forms.Panel();
this.btn_BEInExtClear = new DotNetSkin.SkinControls.SkinButtonRed();
this.label38 = new System.Windows.Forms.Label();
this.pnl_BETopRight3 = new System.Windows.Forms.Panel();
this.txtInFileTypes = new System.Windows.Forms.RichTextBox();
this.pnl_BackEndBottom = new System.Windows.Forms.Panel();
this.tpnl_BEBottom1 = new System.Windows.Forms.TableLayoutPanel();
this.tpnl_BEBottom2 = new System.Windows.Forms.TableLayoutPanel();
this.pnl_BEBottomLeft1 = new System.Windows.Forms.Panel();
this.btn_BEOutDirClear = new DotNetSkin.SkinControls.SkinButtonRed();
this.label50 = new System.Windows.Forms.Label();
this.pnl_BEBottomLeft3 = new System.Windows.Forms.Panel();
this.lstViewDirs = new System.Windows.Forms.ListView();
this.columnHeader7 = new System.Windows.Forms.ColumnHeader();
this.columnHeader4 = new System.Windows.Forms.ColumnHeader();
this.imageList1 = new System.Windows.Forms.ImageList(this.components);
this.tpnl_BEBottomRight = new System.Windows.Forms.TableLayoutPanel();
this.pnl_BEBottomRight1 = new System.Windows.Forms.Panel();
this.btn_BEOutIndexClear = new DotNetSkin.SkinControls.SkinButtonRed();
this.label59 = new System.Windows.Forms.Label();
this.pnl_BEBottomRight3 = new System.Windows.Forms.Panel();
this.lstViewIndexDirs = new System.Windows.Forms.ListView();
this.columnHeader8 = new System.Windows.Forms.ColumnHeader();
this.columnHeader5 = new System.Windows.Forms.ColumnHeader();
this.tpnl_BEFiles = new System.Windows.Forms.TableLayoutPanel();
this.pnl_BEFile1 = new System.Windows.Forms.Panel();
this.btn_BEOutFileClear = new DotNetSkin.SkinControls.SkinButtonRed();
this.label52 = new System.Windows.Forms.Label();
this.pnl_BEFile3 = new System.Windows.Forms.Panel();
this.lstViewFiles = new System.Windows.Forms.ListView();
this.columnHeader9 = new System.Windows.Forms.ColumnHeader();
this.columnHeader6 = new System.Windows.Forms.ColumnHeader();
this.panel4 = new System.Windows.Forms.Panel();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.nudTimeAnomaly = new System.Windows.Forms.NumericUpDown();
this.chkTimeAnomalies = new DotNetSkin.SkinControls.SkinCheckBox();
this.groupBox10 = new System.Windows.Forms.GroupBox();
this.NUPDOWNBackEnd = new System.Windows.Forms.NumericUpDown();
this.panel2 = new System.Windows.Forms.Panel();
this.label11 = new System.Windows.Forms.Label();
this.label14 = new System.Windows.Forms.Label();
this.groupBox11 = new System.Windows.Forms.GroupBox();
this.groupBox12 = new System.Windows.Forms.GroupBox();
this.label9 = new System.Windows.Forms.Label();
this.label8 = new System.Windows.Forms.Label();
this.label56 = new System.Windows.Forms.Label();
this.pictureBox3 = new System.Windows.Forms.PictureBox();
this.label58 = new System.Windows.Forms.Label();
this.prgsFiles = new System.Windows.Forms.ProgressBar();
this.prgsDirs = new System.Windows.Forms.ProgressBar();
this.lblStatus = new System.Windows.Forms.Label();
this.NiktoIsh = new System.Windows.Forms.TabPage();
this.pnl_WiktoMain = new System.Windows.Forms.Panel();
this.tpnl_WiktoMain = new System.Windows.Forms.TableLayoutPanel();
this.tpnl_WiktoB1 = new System.Windows.Forms.TableLayoutPanel();
this.panpnl_WiktoBL1 = new System.Windows.Forms.Panel();
this.label60 = new System.Windows.Forms.Label();
this.panpnl_WiktoBL2 = new System.Windows.Forms.Panel();
this.lvw_NiktoResults = new System.Windows.Forms.ListView();
this.columnHeader10 = new System.Windows.Forms.ColumnHeader();
this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
this.tpnl_WiktoB2 = new System.Windows.Forms.TableLayoutPanel();
this.panpnl_WiktoBM1 = new System.Windows.Forms.Panel();
this.label61 = new System.Windows.Forms.Label();
this.panpnl_WiktoBM2 = new System.Windows.Forms.Panel();
this.txtNiktoReq = new System.Windows.Forms.TextBox();
this.tpnl_WiktoB3 = new System.Windows.Forms.TableLayoutPanel();
this.panpnl_WiktoBR1 = new System.Windows.Forms.Panel();
this.label62 = new System.Windows.Forms.Label();
this.panpnl_WiktoBR2 = new System.Windows.Forms.Panel();
this.txtNiktoRes = new System.Windows.Forms.TextBox();
this.tpnl_WiktoT3 = new System.Windows.Forms.TableLayoutPanel();
this.pnl_WiktoTR1 = new System.Windows.Forms.Panel();
this.label26 = new System.Windows.Forms.Label();
this.pnl_WiktoTR2 = new System.Windows.Forms.Panel();
this.lvw_NiktoDesc = new System.Windows.Forms.ListView();
this.col_ndbd = new System.Windows.Forms.ColumnHeader();
this.col_ndv = new System.Windows.Forms.ColumnHeader();
this.tpnl_WiktoT2 = new System.Windows.Forms.TableLayoutPanel();
this.pnl_WiktoTM1 = new System.Windows.Forms.Panel();
this.label12 = new System.Windows.Forms.Label();
this.pnl_WiktoTM2 = new System.Windows.Forms.Panel();
this.lvw_NiktoDb = new System.Windows.Forms.ListView();
this.col_desc = new System.Windows.Forms.ColumnHeader();
this.col_target = new System.Windows.Forms.ColumnHeader();
this.tpnl_WiktoT1 = new System.Windows.Forms.TableLayoutPanel();
this.pnl_WiktoTL1 = new System.Windows.Forms.Panel();
this.btn_EditDirs = new DotNetSkin.SkinControls.SkinButton();
this.btn_WiktoClearCGI = new DotNetSkin.SkinControls.SkinButtonRed();
this.label5 = new System.Windows.Forms.Label();
this.pnl_WiktoTL3 = new System.Windows.Forms.Panel();
this.lst_NiktoCGI = new System.Windows.Forms.ListBox();
this.panel5 = new System.Windows.Forms.Panel();
this.btnPauseWikto = new DotNetSkin.SkinControls.SkinButton();
this.label2 = new System.Windows.Forms.Label();
this.prgNik = new System.Windows.Forms.ProgressBar();
this.prgNiktoWork = new System.Windows.Forms.ProgressBar();
this.lblNiktoAI = new System.Windows.Forms.Label();
this.groupBox13 = new System.Windows.Forms.GroupBox();
this.groupBox14 = new System.Windows.Forms.GroupBox();
this.label28 = new System.Windows.Forms.Label();
this.label29 = new System.Windows.Forms.Label();
this.pictureBox2 = new System.Windows.Forms.PictureBox();
this.label3 = new System.Windows.Forms.Label();
this.GoogleHacks = new System.Windows.Forms.TabPage();
this.pnl_GHMain = new System.Windows.Forms.Panel();
this.tpnl_HMain = new System.Windows.Forms.TableLayoutPanel();
this.tpnl_GHManQuery = new System.Windows.Forms.TableLayoutPanel();
this.pnl_GHMQ1 = new System.Windows.Forms.Panel();
this.txtGoogleHackOnceOff = new System.Windows.Forms.TextBox();
this.pnl_GHMQ2 = new System.Windows.Forms.Panel();
this.pbl_GoogleHackDb = new System.Windows.Forms.Panel();
this.lstGoogleHack = new System.Windows.Forms.ListBox();
this.pnl_GHDesc = new System.Windows.Forms.Panel();
this.txtGoogleHackDesc = new System.Windows.Forms.TextBox();
this.tpnl_GHResults = new System.Windows.Forms.TableLayoutPanel();
this.tpnl_GHResultsTop = new System.Windows.Forms.TableLayoutPanel();
this.pnl_GHRes1 = new System.Windows.Forms.Panel();
this.label4 = new System.Windows.Forms.Label();
this.pnl_GHRes2 = new System.Windows.Forms.Panel();
this.btn_GHClearResults = new DotNetSkin.SkinControls.SkinButtonRed();
this.pnl_GHRes3 = new System.Windows.Forms.Panel();
this.lstGoogleHackResults = new System.Windows.Forms.ListBox();
this.panel6 = new System.Windows.Forms.Panel();
this.lblGoogleHackEst = new System.Windows.Forms.Label();
this.lblGoogleHackPage = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.lblGoogleHackStatus = new System.Windows.Forms.Label();
this.prgGHQuick = new System.Windows.Forms.ProgressBar();
this.prgsGoogleHackAll = new System.Windows.Forms.ProgressBar();
this.pictureBox7 = new System.Windows.Forms.PictureBox();
this.label21 = new System.Windows.Forms.Label();
this.label24 = new System.Windows.Forms.Label();
this.pnl_configleft = new System.Windows.Forms.TabPage();
this.pnl_ConfigMain = new System.Windows.Forms.Panel();
this.tab_configMain = new System.Windows.Forms.TabControl();
this.cfg_DB = new System.Windows.Forms.TabPage();
this.btn_browseghdb = new DotNetSkin.SkinControls.SkinButton();
this.btn_browsenikto = new DotNetSkin.SkinControls.SkinButton();
this.label27 = new System.Windows.Forms.Label();
this.label25 = new System.Windows.Forms.Label();
this.cfg_Header = new System.Windows.Forms.TabPage();
this.cfg_Google = new System.Windows.Forms.TabPage();
this.btnSpudLocate = new DotNetSkin.SkinControls.SkinButton();
this.txtSpudDirectory = new System.Windows.Forms.TextBox();
this.label19 = new System.Windows.Forms.Label();
this.btn_StartAura = new DotNetSkin.SkinControls.SkinButton();
this.updownGoogleDepth = new System.Windows.Forms.NumericUpDown();
this.label18 = new System.Windows.Forms.Label();
this.cfg_Proxy = new System.Windows.Forms.TabPage();
this.label17 = new System.Windows.Forms.Label();
this.cfg_Spider = new System.Windows.Forms.TabPage();
this.chk_ignoreidx = new DotNetSkin.SkinControls.SkinCheckBox();
this.txt_idxflags = new System.Windows.Forms.TextBox();
this.label42 = new System.Windows.Forms.Label();
this.txt_excdirs = new System.Windows.Forms.TextBox();
this.label40 = new System.Windows.Forms.Label();
this.label36 = new System.Windows.Forms.Label();
this.nud_contentsize = new System.Windows.Forms.NumericUpDown();
this.label35 = new System.Windows.Forms.Label();
this.txt_content = new System.Windows.Forms.TextBox();
this.label33 = new System.Windows.Forms.Label();
this.label63 = new System.Windows.Forms.Label();
this.label64 = new System.Windows.Forms.Label();
this.label67 = new System.Windows.Forms.Label();
this.cfg_Timing = new System.Windows.Forms.TabPage();
this.label6 = new System.Windows.Forms.Label();
this.label16 = new System.Windows.Forms.Label();
this.cfg_Update = new System.Windows.Forms.TabPage();
this.label49 = new System.Windows.Forms.Label();
this.label48 = new System.Windows.Forms.Label();
this.label46 = new System.Windows.Forms.Label();
this.cfg_Startup = new System.Windows.Forms.TabPage();
this.chk_StartWiz = new DotNetSkin.SkinControls.SkinCheckBox();
this.cfg_Help = new System.Windows.Forms.TabPage();
this.lbl_About = new System.Windows.Forms.Label();
this.label47 = new System.Windows.Forms.Label();
this.lbl_ResearchMail = new System.Windows.Forms.LinkLabel();
this.label41 = new System.Windows.Forms.Label();
this.lbl_WiktoHome = new System.Windows.Forms.LinkLabel();
this.label39 = new System.Windows.Forms.Label();
this.panel1 = new System.Windows.Forms.Panel();
this.label37 = new System.Windows.Forms.Label();
this.lblConfigFileLocation = new System.Windows.Forms.Label();
this.pictureBox5 = new System.Windows.Forms.PictureBox();
this.tab_wizard = new System.Windows.Forms.TabPage();
this.fdlLoadBackEndDirs = new System.Windows.Forms.OpenFileDialog();
this.fdlLoadBackEndFiles = new System.Windows.Forms.OpenFileDialog();
this.fdlLoadBackEndExt = new System.Windows.Forms.OpenFileDialog();
this.fdlExportBackEnd = new System.Windows.Forms.SaveFileDialog();
this.fdlLoadNiktoDB = new System.Windows.Forms.OpenFileDialog();
this.fdlExportWikto = new System.Windows.Forms.SaveFileDialog();
this.fdlGoogleHacksOpenDB = new System.Windows.Forms.OpenFileDialog();
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog();
((System.ComponentModel.ISupportInitialize)(this.NUPDOWNspider)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.updownRetryTCP)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.updownTimeOutTCP)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.NUPDOWNfuzz)).BeginInit();
this.tabControl1.SuspendLayout();
this.Mirror.SuspendLayout();
this.tpnlMirror.SuspendLayout();
this.tpnlMirrorLinks.SuspendLayout();
this.tpnlMirrorLinkTop.SuspendLayout();
this.pnlMirrorLinkLeft.SuspendLayout();
this.pnlMrrorLinkRight.SuspendLayout();
this.tpnlMirrorDir.SuspendLayout();
this.tpnlMirrorDirTop.SuspendLayout();
this.pnlMirrorDirLeft.SuspendLayout();
this.pnlMirrorDirRight.SuspendLayout();
this.pnlMirrorLeft.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).BeginInit();
this.Googler.SuspendLayout();