-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupreferences.lfm
186 lines (186 loc) · 3.6 KB
/
upreferences.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
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
object FPref: TFPref
Left = 351
Height = 563
Top = 163
Width = 861
Caption = 'Preferences'
ClientHeight = 563
ClientWidth = 861
OnActivate = FormActivate
OnCreate = FormCreate
OnDestroy = FormDestroy
LCLVersion = '1.6.0.4'
object Button1: TButton
Left = 752
Height = 25
Top = 32
Width = 75
Anchors = [akTop, akRight]
Caption = 'Save'
OnClick = Button1Click
TabOrder = 0
end
object Button2: TButton
Left = 752
Height = 25
Top = 64
Width = 75
Anchors = [akTop, akRight]
Caption = 'Close'
OnClick = Button2Click
TabOrder = 1
end
object CB1: TComboBox
Left = 223
Height = 29
Top = 64
Width = 232
ItemHeight = 0
TabOrder = 2
Text = 'CB1'
end
object Label1: TLabel
Left = 40
Height = 17
Top = 72
Width = 157
Caption = 'Interface to use for the scan'
ParentColor = False
end
object Label2: TLabel
Left = 40
Height = 17
Top = 40
Width = 141
Caption = 'Comand to get interfaces'
ParentColor = False
end
object EIfCmd: TEdit
Left = 224
Height = 27
Top = 32
Width = 512
Anchors = [akTop, akLeft, akRight]
TabOrder = 3
Text = 'ifconfig -a | grep Link | grep -v inet6| awk '' { print $1 } '''
end
object Label3: TLabel
Left = 40
Height = 17
Top = 106
Width = 101
Caption = 'Command to scan'
ParentColor = False
end
object EScanCmd: TEdit
Left = 224
Height = 27
Top = 96
Width = 512
Anchors = [akTop, akLeft, akRight]
TabOrder = 4
Text = 'arp-scan -I <Interface> -l -q | tail -n +3 | head -n -3'
end
object ENmap: TEdit
Left = 224
Height = 27
Top = 128
Width = 512
Anchors = [akTop, akLeft, akRight]
TabOrder = 5
Text = 'nmap -iL <FileName1> -p 80,20,22,443,161 -oX <FileName2>'
end
object Label4: TLabel
Left = 40
Height = 17
Top = 138
Width = 91
Caption = 'nmap command'
ParentColor = False
end
object LoadLast: TCheckBox
Left = 40
Height = 22
Top = 168
Width = 180
BidiMode = bdRightToLeft
Caption = 'Load last save file at startup'
ParentBidiMode = False
TabOrder = 6
end
object Label5: TLabel
Left = 40
Height = 17
Top = 201
Width = 195
Caption = 'Background colour for online items'
ParentColor = False
end
object Edit1: TEdit
Left = 352
Height = 27
Top = 208
Width = 80
TabOrder = 7
Text = 'Online item'
end
object Button3: TButton
Left = 256
Height = 25
Top = 192
Width = 75
Caption = 'Select'
OnClick = Button3Click
TabOrder = 8
end
object Label6: TLabel
Left = 40
Height = 17
Top = 232
Width = 152
Caption = 'Text colour for online items'
ParentColor = False
end
object Button4: TButton
Left = 256
Height = 25
Top = 224
Width = 75
Caption = 'Select'
OnClick = Button4Click
TabOrder = 9
end
object ColorDialog1: TColorDialog
Color = clBlack
CustomColors.Strings = (
'ColorA=000000'
'ColorB=000080'
'ColorC=008000'
'ColorD=008080'
'ColorE=800000'
'ColorF=800080'
'ColorG=808000'
'ColorH=808080'
'ColorI=C0C0C0'
'ColorJ=0000FF'
'ColorK=00FF00'
'ColorL=00FFFF'
'ColorM=FF0000'
'ColorN=FF00FF'
'ColorO=FFFF00'
'ColorP=FFFFFF'
'ColorQ=C0DCC0'
'ColorR=F0CAA6'
'ColorS=F0FBFF'
'ColorT=A4A0A0'
)
left = 496
top = 184
end
object FontDialog1: TFontDialog
MinFontSize = 0
MaxFontSize = 0
left = 552
top = 192
end
end