-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathfrmMain.frm
1675 lines (1540 loc) · 58.7 KB
/
frmMain.frm
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
VERSION 5.00
Object = "{F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0"; "COMDLG32.OCX"
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Object = "{3B7C8863-D78F-101B-B9B5-04021C009402}#1.2#0"; "RICHTX32.OCX"
Begin VB.Form frmMain
Caption = "httprecon"
ClientHeight = 7260
ClientLeft = 165
ClientTop = 735
ClientWidth = 8055
HasDC = 0 'False
Icon = "frmMain.frx":0000
LinkTopic = "Form1"
ScaleHeight = 7260
ScaleWidth = 8055
StartUpPosition = 3 'Windows Default
Begin MSComctlLib.ListView lsvResultsForTest
CausesValidation= 0 'False
Height = 2295
Left = 5520
TabIndex = 13
Top = 1560
Visible = 0 'False
Width = 2535
_ExtentX = 4471
_ExtentY = 4048
SortKey = 3
View = 3
LabelEdit = 1
MultiSelect = -1 'True
LabelWrap = -1 'True
HideSelection = 0 'False
FullRowSelect = -1 'True
GridLines = -1 'True
PictureAlignment= 4
_Version = 393217
SmallIcons = "imlHttpdIcons"
ForeColor = -2147483640
BackColor = -2147483643
BorderStyle = 1
Appearance = 1
NumItems = 4
BeginProperty ColumnHeader(1) {BDD1F052-858B-11D1-B16A-00C0F0283628}
Object.Tag = "string"
Object.Width = 512
EndProperty
BeginProperty ColumnHeader(2) {BDD1F052-858B-11D1-B16A-00C0F0283628}
SubItemIndex = 1
Object.Tag = "string"
Text = "Name"
Object.Width = 7410
EndProperty
BeginProperty ColumnHeader(3) {BDD1F052-858B-11D1-B16A-00C0F0283628}
SubItemIndex = 2
Object.Tag = "number"
Text = "Hits"
Object.Width = 1411
EndProperty
BeginProperty ColumnHeader(4) {BDD1F052-858B-11D1-B16A-00C0F0283628}
SubItemIndex = 3
Object.Tag = "number"
Text = "Match %"
Object.Width = 1411
EndProperty
End
Begin MSComctlLib.ListView lsvResults
CausesValidation= 0 'False
Height = 2175
Left = 240
TabIndex = 6
Top = 4560
Width = 7575
_ExtentX = 13361
_ExtentY = 3836
SortKey = 3
View = 3
LabelEdit = 1
LabelWrap = -1 'True
HideSelection = 0 'False
FullRowSelect = -1 'True
GridLines = -1 'True
PictureAlignment= 4
_Version = 393217
SmallIcons = "imlHttpdIcons"
ForeColor = -2147483640
BackColor = -2147483643
BorderStyle = 1
Appearance = 1
NumItems = 4
BeginProperty ColumnHeader(1) {BDD1F052-858B-11D1-B16A-00C0F0283628}
Object.Tag = "string"
Object.Width = 512
EndProperty
BeginProperty ColumnHeader(2) {BDD1F052-858B-11D1-B16A-00C0F0283628}
SubItemIndex = 1
Object.Tag = "string"
Text = "Name"
Object.Width = 7410
EndProperty
BeginProperty ColumnHeader(3) {BDD1F052-858B-11D1-B16A-00C0F0283628}
SubItemIndex = 2
Object.Tag = "number"
Text = "Hits"
Object.Width = 1411
EndProperty
BeginProperty ColumnHeader(4) {BDD1F052-858B-11D1-B16A-00C0F0283628}
SubItemIndex = 3
Object.Tag = "number"
Text = "Match %"
Object.Width = 1411
EndProperty
End
Begin MSComctlLib.ImageList imlHttpdIcons
Left = 7440
Top = 4320
_ExtentX = 1005
_ExtentY = 1005
BackColor = -2147483643
ImageWidth = 16
ImageHeight = 16
MaskColor = 12632256
_Version = 393216
BeginProperty Images {2C247F25-8591-11D1-B16A-00C0F0283628}
NumListImages = 101
BeginProperty ListImage1 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":0CCA
Key = ""
EndProperty
BeginProperty ListImage2 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":0E43
Key = ""
EndProperty
BeginProperty ListImage3 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":0ECC
Key = ""
EndProperty
BeginProperty ListImage4 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":1143
Key = ""
EndProperty
BeginProperty ListImage5 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":137D
Key = ""
EndProperty
BeginProperty ListImage6 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":15FB
Key = ""
EndProperty
BeginProperty ListImage7 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":1777
Key = ""
EndProperty
BeginProperty ListImage8 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":1BC5
Key = ""
EndProperty
BeginProperty ListImage9 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":1C2A
Key = ""
EndProperty
BeginProperty ListImage10 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":1CF5
Key = ""
EndProperty
BeginProperty ListImage11 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":2130
Key = ""
EndProperty
BeginProperty ListImage12 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":21A0
Key = ""
EndProperty
BeginProperty ListImage13 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":2217
Key = ""
EndProperty
BeginProperty ListImage14 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":22B8
Key = ""
EndProperty
BeginProperty ListImage15 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":243E
Key = ""
EndProperty
BeginProperty ListImage16 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":24AB
Key = ""
EndProperty
BeginProperty ListImage17 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":26D9
Key = ""
EndProperty
BeginProperty ListImage18 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":2931
Key = ""
EndProperty
BeginProperty ListImage19 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":29BC
Key = ""
EndProperty
BeginProperty ListImage20 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":2A53
Key = ""
EndProperty
BeginProperty ListImage21 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":2CF9
Key = ""
EndProperty
BeginProperty ListImage22 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":2F49
Key = ""
EndProperty
BeginProperty ListImage23 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":31B1
Key = ""
EndProperty
BeginProperty ListImage24 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":325A
Key = ""
EndProperty
BeginProperty ListImage25 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":33B2
Key = ""
EndProperty
BeginProperty ListImage26 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":361E
Key = ""
EndProperty
BeginProperty ListImage27 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":3703
Key = ""
EndProperty
BeginProperty ListImage28 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":3B07
Key = ""
EndProperty
BeginProperty ListImage29 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":3ED9
Key = ""
EndProperty
BeginProperty ListImage30 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":42B1
Key = ""
EndProperty
BeginProperty ListImage31 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":46FF
Key = ""
EndProperty
BeginProperty ListImage32 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":4ADF
Key = ""
EndProperty
BeginProperty ListImage33 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":4F10
Key = ""
EndProperty
BeginProperty ListImage34 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":5305
Key = ""
EndProperty
BeginProperty ListImage35 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":56FA
Key = ""
EndProperty
BeginProperty ListImage36 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":5B07
Key = ""
EndProperty
BeginProperty ListImage37 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":5EA6
Key = ""
EndProperty
BeginProperty ListImage38 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":62D7
Key = ""
EndProperty
BeginProperty ListImage39 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":6655
Key = ""
EndProperty
BeginProperty ListImage40 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":69CD
Key = ""
EndProperty
BeginProperty ListImage41 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":6DD2
Key = ""
EndProperty
BeginProperty ListImage42 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":71DA
Key = ""
EndProperty
BeginProperty ListImage43 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":75E1
Key = ""
EndProperty
BeginProperty ListImage44 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":7A04
Key = ""
EndProperty
BeginProperty ListImage45 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":7DDE
Key = ""
EndProperty
BeginProperty ListImage46 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":81CC
Key = ""
EndProperty
BeginProperty ListImage47 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":8623
Key = ""
EndProperty
BeginProperty ListImage48 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":8A81
Key = ""
EndProperty
BeginProperty ListImage49 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":8E70
Key = ""
EndProperty
BeginProperty ListImage50 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":9227
Key = ""
EndProperty
BeginProperty ListImage51 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":95E0
Key = ""
EndProperty
BeginProperty ListImage52 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":9A22
Key = ""
EndProperty
BeginProperty ListImage53 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":9DB6
Key = ""
EndProperty
BeginProperty ListImage54 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":A1F0
Key = ""
EndProperty
BeginProperty ListImage55 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":A594
Key = ""
EndProperty
BeginProperty ListImage56 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":A97B
Key = ""
EndProperty
BeginProperty ListImage57 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":AD0D
Key = ""
EndProperty
BeginProperty ListImage58 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":B0E4
Key = ""
EndProperty
BeginProperty ListImage59 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":B46A
Key = ""
EndProperty
BeginProperty ListImage60 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":B829
Key = ""
EndProperty
BeginProperty ListImage61 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":BBDA
Key = ""
EndProperty
BeginProperty ListImage62 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":BF7E
Key = ""
EndProperty
BeginProperty ListImage63 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":C398
Key = ""
EndProperty
BeginProperty ListImage64 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":C791
Key = ""
EndProperty
BeginProperty ListImage65 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":CBCA
Key = ""
EndProperty
BeginProperty ListImage66 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":CF66
Key = ""
EndProperty
BeginProperty ListImage67 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":D346
Key = ""
EndProperty
BeginProperty ListImage68 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":D73E
Key = ""
EndProperty
BeginProperty ListImage69 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":DB38
Key = ""
EndProperty
BeginProperty ListImage70 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":DF48
Key = ""
EndProperty
BeginProperty ListImage71 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":E352
Key = ""
EndProperty
BeginProperty ListImage72 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":E776
Key = ""
EndProperty
BeginProperty ListImage73 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":EB59
Key = ""
EndProperty
BeginProperty ListImage74 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":EF7D
Key = ""
EndProperty
BeginProperty ListImage75 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":F3AE
Key = ""
EndProperty
BeginProperty ListImage76 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":F786
Key = ""
EndProperty
BeginProperty ListImage77 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":FB45
Key = ""
EndProperty
BeginProperty ListImage78 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":FF45
Key = ""
EndProperty
BeginProperty ListImage79 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":1034D
Key = ""
EndProperty
BeginProperty ListImage80 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":106EA
Key = ""
EndProperty
BeginProperty ListImage81 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":10AA2
Key = ""
EndProperty
BeginProperty ListImage82 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":10E51
Key = ""
EndProperty
BeginProperty ListImage83 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":111F1
Key = ""
EndProperty
BeginProperty ListImage84 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":115A2
Key = ""
EndProperty
BeginProperty ListImage85 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":119F9
Key = ""
EndProperty
BeginProperty ListImage86 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":11DE0
Key = ""
EndProperty
BeginProperty ListImage87 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":1220F
Key = ""
EndProperty
BeginProperty ListImage88 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":1263D
Key = ""
EndProperty
BeginProperty ListImage89 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":129C1
Key = ""
EndProperty
BeginProperty ListImage90 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":12D4F
Key = ""
EndProperty
BeginProperty ListImage91 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":130E7
Key = ""
EndProperty
BeginProperty ListImage92 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":1347A
Key = ""
EndProperty
BeginProperty ListImage93 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":1389D
Key = ""
EndProperty
BeginProperty ListImage94 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":13CE0
Key = ""
EndProperty
BeginProperty ListImage95 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":14064
Key = ""
EndProperty
BeginProperty ListImage96 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":144A5
Key = ""
EndProperty
BeginProperty ListImage97 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":1487A
Key = ""
EndProperty
BeginProperty ListImage98 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":14C36
Key = ""
EndProperty
BeginProperty ListImage99 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":15026
Key = ""
EndProperty
BeginProperty ListImage100 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":15484
Key = ""
EndProperty
BeginProperty ListImage101 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmMain.frx":1584E
Key = ""
EndProperty
EndProperty
End
Begin VB.TextBox txtReportPreview
BackColor = &H00E0E0E0&
BeginProperty Font
Name = "Courier New"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 2175
Left = 240
Locked = -1 'True
MultiLine = -1 'True
ScrollBars = 2 'Vertical
TabIndex = 8
Top = 4560
Visible = 0 'False
Width = 7575
End
Begin RichTextLib.RichTextBox rtbResponses
Height = 2535
Left = 240
TabIndex = 4
Top = 1440
Width = 7575
_ExtentX = 13361
_ExtentY = 4471
_Version = 393217
BackColor = 0
Enabled = -1 'True
ReadOnly = -1 'True
ScrollBars = 3
Appearance = 0
TextRTF = $"frmMain.frx":15BDB
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Courier New"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
End
Begin MSComDlg.CommonDialog cdgOpenScanlist
Left = 3960
Top = 0
_ExtentX = 688
_ExtentY = 688
_Version = 393216
CancelError = -1 'True
DefaultExt = "Scanlist Files (*.scl)|*.scl"
DialogTitle = "Open Scanlist Files"
Filter = "Scanlist Files (*.scl)|*.scl|Text Files (*.txt)|*.txt|All Files (*.*)|*.*"
End
Begin MSComDlg.CommonDialog cdgOpenScan
Left = 4440
Top = 0
_ExtentX = 688
_ExtentY = 688
_Version = 393216
CancelError = -1 'True
DefaultExt = "Fingerprint Scan Files (*.fps)|*.fps"
DialogTitle = "Open Fingerprint Scan Files"
Filter = "Fingerprint Scan Files (*.fps)|*.fps|All Files (*.*)|*.*"
End
Begin MSComctlLib.StatusBar stbStatus
Align = 2 'Align Bottom
Height = 300
Left = 0
TabIndex = 12
Top = 6960
Width = 8055
_ExtentX = 14208
_ExtentY = 529
Style = 1
SimpleText = "Ready."
_Version = 393216
BeginProperty Panels {8E3867A5-8586-11D1-B16A-00C0F0283628}
NumPanels = 1
BeginProperty Panel1 {8E3867AB-8586-11D1-B16A-00C0F0283628}
EndProperty
EndProperty
End
Begin MSComDlg.CommonDialog cdgSaveAsScan
Left = 4920
Top = 0
_ExtentX = 688
_ExtentY = 688
_Version = 393216
CancelError = -1 'True
DefaultExt = "Fingerprint Scan Files (*.fps)|*.fps"
DialogTitle = "Save Fingerprint Scan Files"
FileName = "127-0-0-1-80.fps"
Filter = "Fingerprints Scan Files (*.fps)|*.fps|All Files (*.*)|*.*"
End
Begin MSComctlLib.TabStrip tbsViews
Height = 3015
Left = 120
TabIndex = 3
Top = 1080
Width = 7815
_ExtentX = 13785
_ExtentY = 5318
_Version = 393216
BeginProperty Tabs {1EFB6598-857C-11D1-B16A-00C0F0283628}
NumTabs = 9
BeginProperty Tab1 {1EFB659A-857C-11D1-B16A-00C0F0283628}
Caption = "GET existing"
Object.ToolTipText = "GET / HTTP/1.1"
ImageVarType = 2
EndProperty
BeginProperty Tab2 {1EFB659A-857C-11D1-B16A-00C0F0283628}
Caption = "GET long request"
Object.ToolTipText = "GET /aaa(...) HTTP/1.1"
ImageVarType = 2
EndProperty
BeginProperty Tab3 {1EFB659A-857C-11D1-B16A-00C0F0283628}
Caption = "GET non-existing"
Object.ToolTipText = "GET /404test_.html HTTP/1.1"
ImageVarType = 2
EndProperty
BeginProperty Tab4 {1EFB659A-857C-11D1-B16A-00C0F0283628}
Caption = "GET wrong protocol"
Object.ToolTipText = "GET / HTTP/9.8"
ImageVarType = 2
EndProperty
BeginProperty Tab5 {1EFB659A-857C-11D1-B16A-00C0F0283628}
Caption = "HEAD existing"
Object.ToolTipText = "HEAD / HTTP/1.1"
ImageVarType = 2
EndProperty
BeginProperty Tab6 {1EFB659A-857C-11D1-B16A-00C0F0283628}
Caption = "OPTIONS common"
Object.ToolTipText = "OPTIONS / HTTP/1.1"
ImageVarType = 2
EndProperty
BeginProperty Tab7 {1EFB659A-857C-11D1-B16A-00C0F0283628}
Caption = "DELETE existing"
Object.ToolTipText = "DELETE / HTTP/1.1"
ImageVarType = 2
EndProperty
BeginProperty Tab8 {1EFB659A-857C-11D1-B16A-00C0F0283628}
Caption = "TEST method"
Object.ToolTipText = "TEST / HTTP/1.1"
ImageVarType = 2
EndProperty
BeginProperty Tab9 {1EFB659A-857C-11D1-B16A-00C0F0283628}
Caption = "Attack Request"
Object.ToolTipText = "GET <attack_request> HTTP/1.1"
ImageVarType = 2
EndProperty
EndProperty
End
Begin VB.Frame fraTarget
Caption = "Target"
Height = 735
Left = 120
TabIndex = 10
Top = 120
Width = 7812
Begin VB.ComboBox cboScheme
Height = 315
Left = 120
Style = 2 'Dropdown List
TabIndex = 9
ToolTipText = "Usually: http (non-encrypted)"
Top = 360
Width = 975
End
Begin VB.ComboBox cboTargetPort
Height = 315
Left = 4080
TabIndex = 1
Text = "80"
ToolTipText = "Usually: 80 (http)"
Top = 360
Width = 855
End
Begin VB.CommandButton cmdAnalyze
Caption = "&Analyze"
Height = 375
Left = 6480
TabIndex = 2
ToolTipText = "Analyze Web Server"
Top = 240
Width = 1215
End
Begin VB.TextBox txtTargetHost
Height = 285
Left = 1200
MaxLength = 255
TabIndex = 0
Text = "127.0.0.1"
ToolTipText = "Example: www.computec.ch"
Top = 360
Width = 2655
End
Begin VB.Label Label2
Alignment = 2 'Center
Caption = ":"
Height = 255
Left = 3840
TabIndex = 11
Top = 360
Width = 255
End
End
Begin VB.TextBox txtFingerprint
Appearance = 0 'Flat
BackColor = &H00000000&
BeginProperty Font
Name = "Courier New"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00E0E0E0&
Height = 2175
Left = 240
Locked = -1 'True
MultiLine = -1 'True
ScrollBars = 3 'Both
TabIndex = 7
Top = 4560
Visible = 0 'False
Width = 7575
End
Begin MSComctlLib.TabStrip tbsResults
Height = 2655
Left = 120
TabIndex = 5
Top = 4200
Width = 7815
_ExtentX = 13785
_ExtentY = 4683
_Version = 393216
BeginProperty Tabs {1EFB6598-857C-11D1-B16A-00C0F0283628}
NumTabs = 3
BeginProperty Tab1 {1EFB659A-857C-11D1-B16A-00C0F0283628}
Caption = "Full Matchlist"
Object.ToolTipText = "Full List of Matches"
ImageVarType = 2
EndProperty
BeginProperty Tab2 {1EFB659A-857C-11D1-B16A-00C0F0283628}
Caption = "Fingerprint Details"
Object.ToolTipText = "Full Fingerprint Details"
ImageVarType = 2
EndProperty
BeginProperty Tab3 {1EFB659A-857C-11D1-B16A-00C0F0283628}
Caption = "Report Preview"
Object.ToolTipText = "Text Report Preview"
ImageVarType = 2
EndProperty
EndProperty
End
Begin VB.Menu mnuFile
Caption = "&File"
Begin VB.Menu mnuFileNewItem
Caption = "&New"
Shortcut = ^N
End
Begin VB.Menu mnuFileOpenScanlistItem
Caption = "Open Scan&list..."
Shortcut = ^L
End
Begin VB.Menu mnuFileSep1
Caption = "-"
End
Begin VB.Menu mnuFileOpenScanItem
Caption = "&Open Scan..."
Shortcut = ^O
End
Begin VB.Menu mnuFileSaveAsScanItem
Caption = "&Save As Scan..."
Enabled = 0 'False
Shortcut = ^S
End
Begin VB.Menu mnuFileSep2
Caption = "-"
End
Begin VB.Menu mnuFileExitItem
Caption = "E&xit"
Shortcut = ^Q
End
End
Begin VB.Menu mnuEdit
Caption = "&Edit"
Visible = 0 'False
Begin VB.Menu mnuEditCopyItem
Caption = "&Copy"
Shortcut = ^C
End
Begin VB.Menu mnuEditSep2
Caption = "-"
End
Begin VB.Menu mnuEditSelectAllItem
Caption = "&Select All"
Shortcut = ^A
End
End
Begin VB.Menu mnuConfiguration
Caption = "&Configuration"
Begin VB.Menu mnuConfigurationEditItem
Caption = "&Edit Settings..."
Shortcut = +{F4}
End
Begin VB.Menu mnuConfigurationSep1
Caption = "-"
End
Begin VB.Menu mnuConfigurationReloadItem
Caption = "&Reload Configuration"
Shortcut = +{F5}
End
End
Begin VB.Menu mnuFingerprinting
Caption = "Finger&printing"
Begin VB.Menu mnuFingerprintingAnalyzeItem
Caption = "&Analyze (network access)"
End
Begin VB.Menu mnuFingerprintingReanalyzeItem
Caption = "&Re-Analyze (without network)"
Enabled = 0 'False
Shortcut = {F5}
End
Begin VB.Menu mnuFingerprintingSep1
Caption = "-"
End
Begin VB.Menu mnuFingerprintingOpenSiteInBrowserItem
Caption = "Open Web Site in &Browser..."
Shortcut = ^{F5}
End
Begin VB.Menu mnuFingerprintingSep2
Caption = "-"
End
Begin VB.Menu mnuFingerprintingOnlineDBItem
Caption = "&Online Fingerprint Database..."
Shortcut = ^{F4}
End
Begin VB.Menu mnuFingerprintingSep3
Caption = "-"
End
Begin VB.Menu mnuFingerprintingSaveFingerprintItem
Caption = "&Save Fingerprint..."
Enabled = 0 'False
Shortcut = ^{F3}
End
End
Begin VB.Menu mnuReporting
Caption = "&Reporting"
Begin VB.Menu mnuReportingGenerateReportItem
Caption = "&Generate Report..."
Enabled = 0 'False
Shortcut = ^R
End
End
Begin VB.Menu mnuHelp
Caption = "&Help"
Begin VB.Menu mnuHelpOnlineDocumentationItem
Caption = "Online &Documentation..."
Shortcut = {F1}
End
Begin VB.Menu mnuHelpOnlineFAQItem
Caption = "Online &FAQ..."
Shortcut = ^{F1}
End
Begin VB.Menu mnuHelpSep1
Caption = "-"
End
Begin VB.Menu mnuHelpCheckForUpdatesItem
Caption = "Check for &Updates..."
End
Begin VB.Menu mnuHelpHomepageItem
Caption = "httprecon &Home Page..."
Shortcut = +^{F1}
End
Begin VB.Menu mnuHelpSep2
Caption = "-"
End
Begin VB.Menu mnuHelpAboutItem
Caption = "&About"
Shortcut = +{F1}
End
End
Begin VB.Menu mnuPopUpListing
Caption = "PopUpListing"
Visible = 0 'False
Begin VB.Menu mnuPopUpListingTopMatchesOfTestItem
Caption = "&Top Matches of Selected Test..."
End
Begin VB.Menu mnuPopUpListingDetailAnalysisItem
Caption = "&Detail Analysis"
End
Begin VB.Menu mnuPopUpListingSep1
Caption = "-"
End
Begin VB.Menu mnuPopUpListingInvestigateFindingItem
Caption = "&Investigate Finding with Google..."
End
Begin VB.Menu mnuPopUpListingLookupVulnerabilitiesItem
Caption = "&Lookup Vulnerabilities on OSVDB..."
End
Begin VB.Menu mnuPopUpListingSep2
Caption = "-"
End
Begin VB.Menu mnuPopUpListingCopyThisHitItem
Caption = "Copy &This Hit to Clipboard"
End
Begin VB.Menu mnuPopUpListingCopyBestHitsItem
Caption = "Copy &Best Hits to Clipboard..."
End
Begin VB.Menu mnuPopUpListingCopyAllHitsItem
Caption = "Copy &All Hits to Clipboard"
End
End
End
Attribute VB_Name = "frmMain"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
' httprecon
' (c) 2007-2009 by Marc Ruef <marc.ruef-at-computec.ch>
' http://www.computec.ch/projekte/httprecon/
'
' This file is part of httprecon.
'
' httprecon 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 3 of the License, or
' (at your option) any later version.
'
' httprecon 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 httprecon. If not, see <http://www.gnu.org/licenses/>.
Private Sub cboScheme_Click()
If (cboScheme.Text = "http://") Then
Call ChangeSSLMode(False)
Else
Call ChangeSSLMode(True)
End If
End Sub
Private Sub cboScheme_KeyUp(KeyCode As Integer, Shift As Integer)
If (cboScheme.Text = "http://") Then
Call ChangeSSLMode(False)
Else
Call ChangeSSLMode(True)
End If
End Sub
Private Sub cboTargetPort_Change()
Dim sInput As String
sInput = cboTargetPort.Text
Call ChangeSSLMode(False)
If (LenB(sInput) = 0) Then