-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathunsrlstripper.lfm
119 lines (119 loc) · 2.53 KB
/
unsrlstripper.lfm
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
object Form1: TForm1
Left = 560
Height = 478
Top = 123
Width = 489
Caption = 'NSRL Stripper v1.2, by Ted Smith (c) 2017-2021'
ClientHeight = 478
ClientWidth = 489
OnCreate = FormCreate
LCLVersion = '2.0.12.0'
object btnSelectInputFile: TButton
Left = 8
Height = 25
Top = 232
Width = 160
Caption = 'Select NSRLFile.txt File'
OnClick = btnSelectInputFileClick
TabOrder = 0
end
object RadioGroup1: TRadioGroup
Left = 7
Height = 145
Top = 64
Width = 464
AutoFill = True
Caption = 'Select Preferred Hash:'
ChildSizing.LeftRightSpacing = 6
ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
ChildSizing.EnlargeVertical = crsHomogenousChildResize
ChildSizing.ShrinkHorizontal = crsScaleChilds
ChildSizing.ShrinkVertical = crsScaleChilds
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 1
ClientHeight = 125
ClientWidth = 460
Items.Strings = (
'SHA-1'
'MD5'
'CRC'
)
TabOrder = 1
object cbIncludeHeader: TCheckBox
Left = 6
Height = 29
Top = 96
Width = 448
Caption = 'Include hash title as a header in output?'
Checked = True
State = cbChecked
TabOrder = 3
end
end
object GroupBox1: TGroupBox
Left = 8
Height = 169
Top = 288
Width = 463
Caption = 'Status'
ClientHeight = 149
ClientWidth = 459
TabOrder = 2
object lblInputFile: TLabel
Left = 8
Height = 15
Top = 16
Width = 9
Caption = '...'
ParentColor = False
end
object lblOutputFile: TLabel
Left = 8
Height = 15
Top = 40
Width = 9
Caption = '...'
ParentColor = False
end
object lblProgress: TLabel
Left = 8
Height = 15
Top = 64
Width = 9
Caption = '...'
ParentColor = False
end
object lblStartTime: TLabel
Left = 8
Height = 15
Top = 88
Width = 9
Caption = '...'
ParentColor = False
end
object lblEndTime: TLabel
Left = 8
Height = 15
Top = 120
Width = 9
Caption = '...'
ParentColor = False
end
end
object Label1: TLabel
Left = 8
Height = 15
Top = 19
Width = 463
Caption = 'Choose the preferred hash type, then browse to the NSRLFile.txt and specify output file.'
ParentColor = False
end
object OpenDialog1: TOpenDialog
Left = 256
Top = 88
end
object SaveDialog1: TSaveDialog
Left = 328
Top = 88
end
end