line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Parse::Win32Registry::Base; |
2
|
|
|
|
|
|
|
|
3
|
13
|
|
|
13
|
|
73
|
use strict; |
|
13
|
|
|
|
|
28
|
|
|
13
|
|
|
|
|
462
|
|
4
|
13
|
|
|
13
|
|
63
|
use warnings; |
|
13
|
|
|
|
|
26
|
|
|
13
|
|
|
|
|
347
|
|
5
|
|
|
|
|
|
|
|
6
|
13
|
|
|
13
|
|
68
|
use base qw(Exporter); |
|
13
|
|
|
|
|
20
|
|
|
13
|
|
|
|
|
1353
|
|
7
|
|
|
|
|
|
|
|
8
|
13
|
|
|
13
|
|
73
|
use Carp; |
|
13
|
|
|
|
|
19
|
|
|
13
|
|
|
|
|
870
|
|
9
|
13
|
|
|
13
|
|
63
|
use Encode; |
|
13
|
|
|
|
|
23
|
|
|
13
|
|
|
|
|
1148
|
|
10
|
13
|
|
|
13
|
|
11871
|
use Time::Local qw(timegm); |
|
13
|
|
|
|
|
24258
|
|
|
13
|
|
|
|
|
1731
|
|
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
our @EXPORT_OK = qw( |
13
|
|
|
|
|
|
|
warnf |
14
|
|
|
|
|
|
|
iso8601 |
15
|
|
|
|
|
|
|
hexdump |
16
|
|
|
|
|
|
|
format_octets |
17
|
|
|
|
|
|
|
unpack_windows_time |
18
|
|
|
|
|
|
|
unpack_string |
19
|
|
|
|
|
|
|
unpack_unicode_string |
20
|
|
|
|
|
|
|
unpack_guid |
21
|
|
|
|
|
|
|
unpack_sid |
22
|
|
|
|
|
|
|
unpack_ace |
23
|
|
|
|
|
|
|
unpack_acl |
24
|
|
|
|
|
|
|
unpack_security_descriptor |
25
|
|
|
|
|
|
|
unpack_series |
26
|
|
|
|
|
|
|
make_multiple_subkey_iterator |
27
|
|
|
|
|
|
|
make_multiple_value_iterator |
28
|
|
|
|
|
|
|
make_multiple_subtree_iterator |
29
|
|
|
|
|
|
|
compare_multiple_keys |
30
|
|
|
|
|
|
|
compare_multiple_values |
31
|
|
|
|
|
|
|
REG_NONE |
32
|
|
|
|
|
|
|
REG_SZ |
33
|
|
|
|
|
|
|
REG_EXPAND_SZ |
34
|
|
|
|
|
|
|
REG_BINARY |
35
|
|
|
|
|
|
|
REG_DWORD |
36
|
|
|
|
|
|
|
REG_DWORD_BIG_ENDIAN |
37
|
|
|
|
|
|
|
REG_LINK |
38
|
|
|
|
|
|
|
REG_MULTI_SZ |
39
|
|
|
|
|
|
|
REG_RESOURCE_LIST |
40
|
|
|
|
|
|
|
REG_FULL_RESOURCE_DESCRIPTOR |
41
|
|
|
|
|
|
|
REG_RESOURCE_REQUIREMENTS_LIST |
42
|
|
|
|
|
|
|
REG_QWORD |
43
|
|
|
|
|
|
|
); |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
our %EXPORT_TAGS = ( |
46
|
|
|
|
|
|
|
all => [@EXPORT_OK], |
47
|
|
|
|
|
|
|
); |
48
|
|
|
|
|
|
|
|
49
|
13
|
|
|
13
|
|
89
|
use constant REG_NONE => 0; |
|
13
|
|
|
|
|
22
|
|
|
13
|
|
|
|
|
791
|
|
50
|
13
|
|
|
13
|
|
68
|
use constant REG_SZ => 1; |
|
13
|
|
|
|
|
24
|
|
|
13
|
|
|
|
|
583
|
|
51
|
13
|
|
|
13
|
|
68
|
use constant REG_EXPAND_SZ => 2; |
|
13
|
|
|
|
|
21
|
|
|
13
|
|
|
|
|
1263
|
|
52
|
13
|
|
|
13
|
|
73
|
use constant REG_BINARY => 3; |
|
13
|
|
|
|
|
24
|
|
|
13
|
|
|
|
|
762
|
|
53
|
13
|
|
|
13
|
|
79
|
use constant REG_DWORD => 4; |
|
13
|
|
|
|
|
28
|
|
|
13
|
|
|
|
|
612
|
|
54
|
13
|
|
|
13
|
|
68
|
use constant REG_DWORD_BIG_ENDIAN => 5; |
|
13
|
|
|
|
|
24
|
|
|
13
|
|
|
|
|
617
|
|
55
|
13
|
|
|
13
|
|
63
|
use constant REG_LINK => 6; |
|
13
|
|
|
|
|
25
|
|
|
13
|
|
|
|
|
596
|
|
56
|
13
|
|
|
13
|
|
79
|
use constant REG_MULTI_SZ => 7; |
|
13
|
|
|
|
|
25
|
|
|
13
|
|
|
|
|
551
|
|
57
|
13
|
|
|
13
|
|
68
|
use constant REG_RESOURCE_LIST => 8; |
|
13
|
|
|
|
|
23
|
|
|
13
|
|
|
|
|
625
|
|
58
|
13
|
|
|
13
|
|
64
|
use constant REG_FULL_RESOURCE_DESCRIPTOR => 9; |
|
13
|
|
|
|
|
27
|
|
|
13
|
|
|
|
|
909
|
|
59
|
13
|
|
|
13
|
|
275
|
use constant REG_RESOURCE_REQUIREMENTS_LIST => 10; |
|
13
|
|
|
|
|
25
|
|
|
13
|
|
|
|
|
559
|
|
60
|
13
|
|
|
13
|
|
97
|
use constant REG_QWORD => 11; |
|
13
|
|
|
|
|
22
|
|
|
13
|
|
|
|
|
46087
|
|
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
our $WARNINGS = 0; |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
our $CODEPAGE = 'cp1252'; |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
sub warnf { |
67
|
455
|
|
|
455
|
0
|
655
|
my $message = shift; |
68
|
455
|
100
|
|
|
|
1881
|
warn sprintf "$message\n", @_ if $WARNINGS; |
69
|
|
|
|
|
|
|
} |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
sub hexdump { |
72
|
40
|
|
|
40
|
0
|
96
|
my $data = shift; # packed binary data |
73
|
40
|
|
100
|
|
|
108
|
my $start = shift || 0; # starting value for displayed offset |
74
|
|
|
|
|
|
|
|
75
|
40
|
100
|
|
|
|
83
|
return '' if !defined($data); |
76
|
|
|
|
|
|
|
|
77
|
39
|
|
|
|
|
51
|
my $output = ''; |
78
|
|
|
|
|
|
|
|
79
|
39
|
|
|
|
|
46
|
my $fake_start = $start & ~0xf; |
80
|
39
|
|
|
|
|
137
|
my $end = length($data); |
81
|
|
|
|
|
|
|
|
82
|
39
|
|
|
|
|
40
|
my $pos = 0; |
83
|
39
|
100
|
|
|
|
85
|
if ($fake_start < $start) { |
84
|
30
|
|
|
|
|
93
|
$output .= sprintf '%8x ', $fake_start; |
85
|
30
|
|
|
|
|
37
|
my $indent = $start - $fake_start; |
86
|
30
|
|
|
|
|
57
|
$output .= ' ' x $indent; |
87
|
30
|
|
|
|
|
50
|
my $row = substr($data, $pos, 16 - $indent); |
88
|
30
|
|
|
|
|
32
|
my $len = length($row); |
89
|
30
|
|
|
|
|
130
|
$output .= join(' ', unpack('H2' x $len, $row)); |
90
|
30
|
100
|
|
|
|
80
|
if ($indent + $len < 16) { |
91
|
11
|
|
|
|
|
14
|
my $padding = 16 - $len - $indent; |
92
|
11
|
|
|
|
|
20
|
$output .= ' ' x $padding; |
93
|
|
|
|
|
|
|
} |
94
|
30
|
|
|
|
|
32
|
$output .= ' '; |
95
|
30
|
|
|
|
|
39
|
$output .= ' ' x $indent; |
96
|
30
|
|
|
|
|
70
|
$row =~ tr/\x20-\x7e/./c; |
97
|
30
|
|
|
|
|
60
|
$output .= $row; |
98
|
30
|
|
|
|
|
30
|
$output .= "\n"; |
99
|
30
|
|
|
|
|
43
|
$pos += $len; |
100
|
|
|
|
|
|
|
} |
101
|
39
|
|
|
|
|
74
|
while ($pos < $end) { |
102
|
68
|
|
|
|
|
132
|
$output .= sprintf '%8x ', $start + $pos; |
103
|
68
|
|
|
|
|
108
|
my $row = substr($data, $pos, 16); |
104
|
68
|
|
|
|
|
71
|
my $len = length($row); |
105
|
68
|
|
|
|
|
409
|
$output .= join(' ', unpack('H2' x $len, $row)); |
106
|
68
|
100
|
|
|
|
197
|
if ($len < 16) { |
107
|
24
|
|
|
|
|
29
|
my $padding = 16 - $len; |
108
|
24
|
|
|
|
|
47
|
$output .= ' ' x $padding; |
109
|
|
|
|
|
|
|
} |
110
|
68
|
|
|
|
|
72
|
$output .= ' '; |
111
|
68
|
|
|
|
|
429
|
$row =~ tr/\x20-\x7e/./c; |
112
|
68
|
|
|
|
|
88
|
$output .= $row; |
113
|
68
|
|
|
|
|
74
|
$output .= "\n"; |
114
|
68
|
|
|
|
|
143
|
$pos += 16; |
115
|
|
|
|
|
|
|
} |
116
|
|
|
|
|
|
|
|
117
|
39
|
|
|
|
|
182
|
return $output; |
118
|
|
|
|
|
|
|
} |
119
|
|
|
|
|
|
|
|
120
|
|
|
|
|
|
|
sub format_octets { |
121
|
70
|
|
|
70
|
0
|
160
|
my $data = shift; # packed binary data |
122
|
70
|
|
100
|
|
|
230
|
my $col = shift || 0; # starting column, e.g. length of initial string |
123
|
|
|
|
|
|
|
|
124
|
70
|
100
|
|
|
|
185
|
return "\n" if !defined($data); |
125
|
|
|
|
|
|
|
|
126
|
68
|
|
|
|
|
158
|
my $output = ''; |
127
|
|
|
|
|
|
|
|
128
|
68
|
100
|
|
|
|
203
|
$col = 76 if $col > 76; |
129
|
68
|
|
|
|
|
200
|
my $max_octets = int((76 - $col) / 3) + 1; |
130
|
|
|
|
|
|
|
|
131
|
68
|
|
|
|
|
145
|
my $end = length($data); |
132
|
68
|
|
|
|
|
97
|
my $pos = 0; |
133
|
68
|
|
|
|
|
126
|
my $num_octets = $end - $pos; |
134
|
68
|
100
|
|
|
|
160
|
$num_octets = $max_octets if $num_octets > $max_octets; |
135
|
68
|
|
|
|
|
165
|
while ($pos < $end) { |
136
|
105
|
|
|
|
|
902
|
$output .= join(',', unpack("x$pos(H2)$num_octets", $data)); |
137
|
105
|
|
|
|
|
222
|
$pos += $num_octets; |
138
|
105
|
|
|
|
|
106
|
$num_octets = $end - $pos; |
139
|
105
|
100
|
|
|
|
212
|
$num_octets = 25 if $num_octets > 25; |
140
|
105
|
100
|
|
|
|
257
|
if ($num_octets > 0) { |
141
|
46
|
|
|
|
|
148
|
$output .= ",\\\n "; |
142
|
|
|
|
|
|
|
} |
143
|
|
|
|
|
|
|
} |
144
|
68
|
|
|
|
|
103
|
$output .= "\n"; |
145
|
68
|
|
|
|
|
308
|
return $output; |
146
|
|
|
|
|
|
|
} |
147
|
|
|
|
|
|
|
|
148
|
|
|
|
|
|
|
sub unpack_windows_time { |
149
|
535
|
|
|
535
|
0
|
8094
|
my $data = shift; |
150
|
|
|
|
|
|
|
|
151
|
535
|
50
|
|
|
|
1178
|
if (!defined $data) { |
152
|
0
|
|
|
|
|
0
|
return; |
153
|
|
|
|
|
|
|
} |
154
|
|
|
|
|
|
|
|
155
|
535
|
100
|
|
|
|
1395
|
if (length($data) < 8) { |
156
|
2
|
|
|
|
|
4
|
return; |
157
|
|
|
|
|
|
|
} |
158
|
|
|
|
|
|
|
|
159
|
|
|
|
|
|
|
# The conversion uses real numbers |
160
|
|
|
|
|
|
|
# as 32-bit perl does not provide 64-bit integers. |
161
|
|
|
|
|
|
|
# The equation can be found in several places on the Net. |
162
|
|
|
|
|
|
|
# My thanks go to Dan Sully for Audio::WMA's _fileTimeToUnixTime |
163
|
|
|
|
|
|
|
# which shows a perl implementation of it. |
164
|
533
|
|
|
|
|
1339
|
my ($low, $high) = unpack("VV", $data); |
165
|
533
|
|
|
|
|
1107
|
my $filetime = $high * 2 ** 32 + $low; |
166
|
533
|
|
|
|
|
1090
|
my $epoch_time = int(($filetime - 116444736000000000) / 10000000); |
167
|
|
|
|
|
|
|
|
168
|
|
|
|
|
|
|
# adjust the UNIX epoch time to the local OS's epoch time |
169
|
|
|
|
|
|
|
# (see perlport's Time and Date section) |
170
|
533
|
|
|
|
|
1970
|
my $epoch_offset = timegm(0, 0, 0, 1, 0, 70); |
171
|
533
|
|
|
|
|
13497
|
$epoch_time += $epoch_offset; |
172
|
|
|
|
|
|
|
|
173
|
533
|
100
|
100
|
|
|
2974
|
if ($epoch_time < 0 || $epoch_time > 0x7fffffff) { |
174
|
8
|
|
|
|
|
10
|
$epoch_time = undef; |
175
|
|
|
|
|
|
|
} |
176
|
|
|
|
|
|
|
|
177
|
533
|
100
|
|
|
|
2050
|
return wantarray ? ($epoch_time, 8) : $epoch_time; |
178
|
|
|
|
|
|
|
} |
179
|
|
|
|
|
|
|
|
180
|
|
|
|
|
|
|
sub iso8601 { |
181
|
138
|
|
|
138
|
0
|
20665
|
my $time = shift; |
182
|
138
|
|
|
|
|
187
|
my $tz = shift; |
183
|
|
|
|
|
|
|
|
184
|
138
|
100
|
|
|
|
424
|
if (!defined $time) { |
185
|
40
|
|
|
|
|
231
|
return '(undefined)'; |
186
|
|
|
|
|
|
|
} |
187
|
|
|
|
|
|
|
|
188
|
98
|
50
|
33
|
|
|
337
|
if (!defined $tz || $tz ne 'Z') { |
189
|
98
|
|
|
|
|
173
|
$tz = 'Z' |
190
|
|
|
|
|
|
|
} |
191
|
|
|
|
|
|
|
|
192
|
|
|
|
|
|
|
# On Windows, gmtime will return undef if $time < 0 or > 0x7fffffff |
193
|
98
|
50
|
33
|
|
|
488
|
if ($time < 0 || $time > 0x7fffffff) { |
194
|
0
|
|
|
|
|
0
|
return '(undefined)'; |
195
|
|
|
|
|
|
|
} |
196
|
98
|
|
|
|
|
452
|
my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) = gmtime $time; |
197
|
|
|
|
|
|
|
|
198
|
|
|
|
|
|
|
# The final 'Z' indicates UTC ("zero meridian") |
199
|
98
|
|
|
|
|
937
|
return sprintf '%04d-%02d-%02dT%02d:%02d:%02d%s', |
200
|
|
|
|
|
|
|
1900+$year, 1+$mon, $mday, $hour, $min, $sec, $tz; |
201
|
|
|
|
|
|
|
} |
202
|
|
|
|
|
|
|
|
203
|
|
|
|
|
|
|
sub unpack_string { |
204
|
12
|
|
|
12
|
0
|
4975
|
my $data = shift; |
205
|
|
|
|
|
|
|
|
206
|
12
|
50
|
|
|
|
30
|
if (!defined $data) { |
207
|
0
|
|
|
|
|
0
|
return; |
208
|
|
|
|
|
|
|
} |
209
|
|
|
|
|
|
|
|
210
|
12
|
|
|
|
|
14
|
my $str; |
211
|
|
|
|
|
|
|
my $str_len; |
212
|
12
|
100
|
|
|
|
28
|
if ((my $end = index($data, "\0")) != -1) { |
213
|
8
|
|
|
|
|
16
|
$str = substr($data, 0, $end); |
214
|
8
|
|
|
|
|
13
|
$str_len = $end + 1; # include the final null in the length |
215
|
|
|
|
|
|
|
} |
216
|
|
|
|
|
|
|
else { |
217
|
4
|
|
|
|
|
6
|
$str = $data; |
218
|
4
|
|
|
|
|
5
|
$str_len = length($data); |
219
|
|
|
|
|
|
|
} |
220
|
|
|
|
|
|
|
|
221
|
12
|
100
|
|
|
|
37
|
return wantarray ? ($str, $str_len) : $str; |
222
|
|
|
|
|
|
|
} |
223
|
|
|
|
|
|
|
|
224
|
|
|
|
|
|
|
sub unpack_unicode_string { |
225
|
22
|
|
|
22
|
0
|
12026
|
my $data = shift; |
226
|
|
|
|
|
|
|
|
227
|
22
|
50
|
|
|
|
52
|
if (!defined $data) { |
228
|
0
|
|
|
|
|
0
|
return; |
229
|
|
|
|
|
|
|
} |
230
|
|
|
|
|
|
|
|
231
|
22
|
|
|
|
|
28
|
my $str_len = 0; |
232
|
22
|
|
|
|
|
62
|
foreach my $v (unpack('v*', $data)) { |
233
|
70
|
|
|
|
|
66
|
$str_len += 2; |
234
|
70
|
100
|
|
|
|
167
|
last if $v == 0; # include the final null in the length |
235
|
|
|
|
|
|
|
} |
236
|
22
|
|
|
|
|
86
|
my $str = decode('UCS-2LE', substr($data, 0, $str_len)); |
237
|
|
|
|
|
|
|
|
238
|
|
|
|
|
|
|
# The decode function from Encode may create invalid unicode characters |
239
|
|
|
|
|
|
|
# which cause subsequent warnings (e.g. during regex matching). |
240
|
|
|
|
|
|
|
# For example, characters in the 0xd800 to 0xdfff range of the |
241
|
|
|
|
|
|
|
# basic multilingual plane (0x0000 to 0xffff) are 'surrogate pairs' |
242
|
|
|
|
|
|
|
# and are expected to appear as a 'high surrogate' (0xd800 to 0xdbff) |
243
|
|
|
|
|
|
|
# followed by a 'low surrogate' (0xdc00 to 0xdfff). |
244
|
|
|
|
|
|
|
|
245
|
|
|
|
|
|
|
# remove any final null |
246
|
22
|
100
|
100
|
|
|
5545
|
if (length($str) > 0 && substr($str, -1, 1) eq "\0") { |
247
|
12
|
|
|
|
|
22
|
chop $str; |
248
|
|
|
|
|
|
|
} |
249
|
|
|
|
|
|
|
|
250
|
22
|
100
|
|
|
|
95
|
return wantarray ? ($str, $str_len) : $str; |
251
|
|
|
|
|
|
|
} |
252
|
|
|
|
|
|
|
|
253
|
|
|
|
|
|
|
sub unpack_guid { |
254
|
8
|
|
|
8
|
0
|
2911
|
my $guid = Parse::Win32Registry::GUID->new($_[0]); |
255
|
8
|
100
|
|
|
|
19
|
return if !defined $guid; |
256
|
6
|
100
|
|
|
|
20
|
return wantarray ? ($guid, $guid->get_length) : $guid; |
257
|
|
|
|
|
|
|
} |
258
|
|
|
|
|
|
|
|
259
|
|
|
|
|
|
|
sub unpack_sid { |
260
|
14
|
|
|
14
|
0
|
4010
|
my $sid = Parse::Win32Registry::SID->new($_[0]); |
261
|
14
|
100
|
|
|
|
39
|
return if !defined $sid; |
262
|
8
|
100
|
|
|
|
24
|
return wantarray ? ($sid, $sid->get_length) : $sid; |
263
|
|
|
|
|
|
|
} |
264
|
|
|
|
|
|
|
|
265
|
|
|
|
|
|
|
sub unpack_ace { |
266
|
22
|
|
|
22
|
0
|
13159
|
my $ace = Parse::Win32Registry::ACE->new($_[0]); |
267
|
22
|
100
|
|
|
|
63
|
return if !defined $ace; |
268
|
10
|
100
|
|
|
|
31
|
return wantarray ? ($ace, $ace->get_length) : $ace; |
269
|
|
|
|
|
|
|
} |
270
|
|
|
|
|
|
|
|
271
|
|
|
|
|
|
|
sub unpack_acl { |
272
|
22
|
|
|
22
|
0
|
10518
|
my $acl = Parse::Win32Registry::ACL->new($_[0]); |
273
|
22
|
100
|
|
|
|
137
|
return if !defined $acl; |
274
|
10
|
100
|
|
|
|
45
|
return wantarray ? ($acl, $acl->get_length) : $acl; |
275
|
|
|
|
|
|
|
} |
276
|
|
|
|
|
|
|
|
277
|
|
|
|
|
|
|
sub unpack_security_descriptor { |
278
|
37
|
|
|
37
|
0
|
12217
|
my $sd = Parse::Win32Registry::SecurityDescriptor->new($_[0]); |
279
|
37
|
100
|
|
|
|
110
|
return if !defined $sd; |
280
|
26
|
100
|
|
|
|
353
|
return wantarray ? ($sd, $sd->get_length) : $sd; |
281
|
|
|
|
|
|
|
} |
282
|
|
|
|
|
|
|
|
283
|
|
|
|
|
|
|
sub unpack_series { |
284
|
0
|
|
|
0
|
0
|
0
|
my $function = shift; |
285
|
0
|
|
|
|
|
0
|
my $data = shift; |
286
|
|
|
|
|
|
|
|
287
|
0
|
0
|
0
|
|
|
0
|
if (!defined $function || !defined $data) { |
288
|
0
|
|
|
|
|
0
|
croak "Usage: unpack_series(\\\&unpack_function, \$data)"; |
289
|
|
|
|
|
|
|
} |
290
|
|
|
|
|
|
|
|
291
|
0
|
|
|
|
|
0
|
my $pos = 0; |
292
|
0
|
|
|
|
|
0
|
my @items = (); |
293
|
0
|
|
|
|
|
0
|
while (my ($item, $item_len) = $function->(substr($data, $pos))) { |
294
|
0
|
|
|
|
|
0
|
push @items, $item; |
295
|
0
|
|
|
|
|
0
|
$pos += $item_len; |
296
|
|
|
|
|
|
|
} |
297
|
0
|
|
|
|
|
0
|
return @items; |
298
|
|
|
|
|
|
|
} |
299
|
|
|
|
|
|
|
|
300
|
|
|
|
|
|
|
sub make_multiple_subkey_iterator { |
301
|
41
|
|
|
41
|
0
|
1034
|
my @keys = @_; |
302
|
|
|
|
|
|
|
|
303
|
|
|
|
|
|
|
# check @keys contains keys |
304
|
41
|
100
|
66
|
|
|
152
|
if (@keys == 0 || |
|
64
|
100
|
|
|
|
528
|
|
305
|
|
|
|
|
|
|
grep { defined && !UNIVERSAL::isa($_, 'Parse::Win32Registry::Key') } |
306
|
|
|
|
|
|
|
@keys) { |
307
|
1
|
|
|
|
|
145
|
croak 'Usage: make_multiple_subkey_iterator($key1, $key2, ...)'; |
308
|
|
|
|
|
|
|
} |
309
|
|
|
|
|
|
|
|
310
|
40
|
|
|
|
|
76
|
my %subkeys_seen = (); |
311
|
40
|
|
|
|
|
53
|
my @subkeys_queue; |
312
|
40
|
|
|
|
|
115
|
for (my $i = 0; $i < @keys; $i++) { |
313
|
64
|
|
|
|
|
81
|
my $key = $keys[$i]; |
314
|
64
|
100
|
|
|
|
129
|
next if !defined $key; |
315
|
56
|
|
|
|
|
217
|
foreach my $subkey ($key->get_list_of_subkeys) { |
316
|
46
|
|
|
|
|
168
|
my $name = $subkey->get_name; |
317
|
46
|
|
|
|
|
219
|
$subkeys_seen{$name}[$i] = $subkey; |
318
|
|
|
|
|
|
|
} |
319
|
|
|
|
|
|
|
} |
320
|
40
|
|
|
|
|
175
|
foreach my $name (sort keys %subkeys_seen) { |
321
|
|
|
|
|
|
|
# make sure number of subkeys matches number of keys |
322
|
34
|
100
|
|
|
|
42
|
if (@{$subkeys_seen{$name}} != @keys) { |
|
34
|
|
|
|
|
92
|
|
323
|
2
|
|
|
|
|
5
|
@{$subkeys_seen{$name}}[@keys - 1] = undef; |
|
2
|
|
|
|
|
5
|
|
324
|
|
|
|
|
|
|
} |
325
|
34
|
|
|
|
|
75
|
push @subkeys_queue, $subkeys_seen{$name}; |
326
|
|
|
|
|
|
|
} |
327
|
|
|
|
|
|
|
|
328
|
|
|
|
|
|
|
return Parse::Win32Registry::Iterator->new(sub { |
329
|
68
|
|
|
68
|
|
105
|
my $subkeys = shift @subkeys_queue; |
330
|
68
|
100
|
|
|
|
135
|
if (defined $subkeys) { |
331
|
34
|
|
|
|
|
65
|
return $subkeys; |
332
|
|
|
|
|
|
|
} |
333
|
|
|
|
|
|
|
else { |
334
|
34
|
|
|
|
|
74
|
return; |
335
|
|
|
|
|
|
|
} |
336
|
40
|
|
|
|
|
190
|
}); |
337
|
|
|
|
|
|
|
} |
338
|
|
|
|
|
|
|
|
339
|
|
|
|
|
|
|
sub make_multiple_value_iterator { |
340
|
41
|
|
|
41
|
0
|
773
|
my @keys = @_; |
341
|
|
|
|
|
|
|
|
342
|
|
|
|
|
|
|
# check @keys contains keys |
343
|
41
|
100
|
66
|
|
|
136
|
if (@keys == 0 || |
|
64
|
100
|
|
|
|
385
|
|
344
|
|
|
|
|
|
|
grep { defined && !UNIVERSAL::isa($_, 'Parse::Win32Registry::Key') } |
345
|
|
|
|
|
|
|
@keys) { |
346
|
1
|
|
|
|
|
124
|
croak 'Usage: make_multiple_value_iterator($key1, $key2, ...)'; |
347
|
|
|
|
|
|
|
} |
348
|
|
|
|
|
|
|
|
349
|
40
|
|
|
|
|
69
|
my %values_seen = (); |
350
|
40
|
|
|
|
|
100
|
my @values_queue; |
351
|
40
|
|
|
|
|
108
|
for (my $i = 0; $i < @keys; $i++) { |
352
|
64
|
|
|
|
|
91
|
my $key = $keys[$i]; |
353
|
64
|
100
|
|
|
|
152
|
next if !defined $key; |
354
|
56
|
|
|
|
|
199
|
foreach my $value ($key->get_list_of_values) { |
355
|
74
|
|
|
|
|
205
|
my $name = $value->get_name; |
356
|
74
|
|
|
|
|
322
|
$values_seen{$name}[$i] = $value; |
357
|
|
|
|
|
|
|
} |
358
|
|
|
|
|
|
|
} |
359
|
40
|
|
|
|
|
156
|
foreach my $name (sort keys %values_seen) { |
360
|
|
|
|
|
|
|
# make sure number of values matches number of keys |
361
|
62
|
100
|
|
|
|
65
|
if (@{$values_seen{$name}} != @keys) { |
|
62
|
|
|
|
|
163
|
|
362
|
2
|
|
|
|
|
4
|
@{$values_seen{$name}}[@keys - 1] = undef; |
|
2
|
|
|
|
|
5
|
|
363
|
|
|
|
|
|
|
} |
364
|
62
|
|
|
|
|
131
|
push @values_queue, $values_seen{$name}; |
365
|
|
|
|
|
|
|
} |
366
|
|
|
|
|
|
|
|
367
|
|
|
|
|
|
|
return Parse::Win32Registry::Iterator->new(sub { |
368
|
60
|
|
|
60
|
|
84
|
my $values = shift @values_queue; |
369
|
60
|
100
|
|
|
|
134
|
if (defined $values) { |
370
|
36
|
|
|
|
|
77
|
return $values; |
371
|
|
|
|
|
|
|
} |
372
|
|
|
|
|
|
|
else { |
373
|
24
|
|
|
|
|
41
|
return; |
374
|
|
|
|
|
|
|
} |
375
|
40
|
|
|
|
|
199
|
}); |
376
|
|
|
|
|
|
|
} |
377
|
|
|
|
|
|
|
|
378
|
|
|
|
|
|
|
sub make_multiple_subtree_iterator { |
379
|
7
|
|
|
7
|
0
|
2780
|
my @keys = @_; |
380
|
|
|
|
|
|
|
|
381
|
|
|
|
|
|
|
# check @keys contains keys |
382
|
7
|
50
|
66
|
|
|
43
|
if (@keys == 0 || |
|
10
|
100
|
|
|
|
105
|
|
383
|
|
|
|
|
|
|
grep { defined && !UNIVERSAL::isa($_, 'Parse::Win32Registry::Key') } |
384
|
|
|
|
|
|
|
@keys) { |
385
|
1
|
|
|
|
|
145
|
croak 'Usage: make_multiple_subtree_iterator($key1, $key2, ...)'; |
386
|
|
|
|
|
|
|
} |
387
|
|
|
|
|
|
|
|
388
|
6
|
|
|
|
|
19
|
my @start_keys = (\@keys); |
389
|
|
|
|
|
|
|
push my (@subkey_iters), Parse::Win32Registry::Iterator->new(sub { |
390
|
10
|
|
|
10
|
|
20
|
return shift @start_keys; |
391
|
6
|
|
|
|
|
47
|
}); |
392
|
6
|
|
|
|
|
12
|
my $value_iter; |
393
|
|
|
|
|
|
|
my $subkeys; # used to remember subkeys while iterating values |
394
|
|
|
|
|
|
|
|
395
|
|
|
|
|
|
|
return Parse::Win32Registry::Iterator->new(sub { |
396
|
80
|
100
|
100
|
80
|
|
447
|
if (defined $value_iter && wantarray) { |
397
|
60
|
|
|
|
|
128
|
my $values = $value_iter->(); |
398
|
60
|
100
|
|
|
|
128
|
if (defined $values) { |
399
|
36
|
|
|
|
|
99
|
return ($subkeys, $values); |
400
|
|
|
|
|
|
|
} |
401
|
|
|
|
|
|
|
} |
402
|
44
|
|
|
|
|
117
|
while (@subkey_iters > 0) { |
403
|
78
|
|
|
|
|
173
|
$subkeys = $subkey_iters[-1]->(); # depth-first |
404
|
78
|
100
|
|
|
|
342
|
if (defined $subkeys) { |
405
|
40
|
|
|
|
|
111
|
push @subkey_iters, make_multiple_subkey_iterator(@$subkeys); |
406
|
40
|
|
|
|
|
115
|
$value_iter = make_multiple_value_iterator(@$subkeys); |
407
|
40
|
|
|
|
|
218
|
return $subkeys; |
408
|
|
|
|
|
|
|
} |
409
|
38
|
|
|
|
|
192
|
pop @subkey_iters; # iter finished, so remove it |
410
|
|
|
|
|
|
|
} |
411
|
4
|
|
|
|
|
15
|
return; |
412
|
6
|
|
|
|
|
41
|
}); |
413
|
|
|
|
|
|
|
} |
414
|
|
|
|
|
|
|
|
415
|
|
|
|
|
|
|
sub compare_multiple_keys { |
416
|
13
|
|
|
13
|
0
|
7359
|
my @keys = @_; |
417
|
|
|
|
|
|
|
|
418
|
|
|
|
|
|
|
# check @keys contains keys |
419
|
13
|
100
|
66
|
|
|
55
|
if (@keys == 0 || |
|
36
|
100
|
|
|
|
191
|
|
420
|
|
|
|
|
|
|
grep { defined && !UNIVERSAL::isa($_, 'Parse::Win32Registry::Key') } |
421
|
|
|
|
|
|
|
@keys) { |
422
|
1
|
|
|
|
|
120
|
croak 'Usage: compare_multiple_keys($key1, $key2, ...)'; |
423
|
|
|
|
|
|
|
} |
424
|
|
|
|
|
|
|
|
425
|
12
|
|
|
|
|
20
|
my @changes = (); |
426
|
|
|
|
|
|
|
|
427
|
12
|
|
|
|
|
14
|
my $benchmark_key; |
428
|
12
|
|
|
|
|
19
|
foreach my $key (@keys) { |
429
|
36
|
|
|
|
|
38
|
my $diff = ''; |
430
|
|
|
|
|
|
|
# Skip comparison for the first value |
431
|
36
|
100
|
|
|
|
66
|
if (@changes > 0) { |
432
|
24
|
|
|
|
|
45
|
$diff = _compare_keys($benchmark_key, $key); |
433
|
|
|
|
|
|
|
} |
434
|
36
|
|
|
|
|
42
|
$benchmark_key = $key; |
435
|
36
|
|
|
|
|
70
|
push @changes, $diff; |
436
|
|
|
|
|
|
|
} |
437
|
12
|
|
|
|
|
80
|
return @changes; |
438
|
|
|
|
|
|
|
} |
439
|
|
|
|
|
|
|
|
440
|
|
|
|
|
|
|
sub compare_multiple_values { |
441
|
11
|
|
|
11
|
0
|
6268
|
my @values = @_; |
442
|
|
|
|
|
|
|
|
443
|
|
|
|
|
|
|
# check @values contains values |
444
|
11
|
100
|
66
|
|
|
44
|
if (@values == 0 || |
|
30
|
100
|
|
|
|
165
|
|
445
|
|
|
|
|
|
|
grep { defined && !UNIVERSAL::isa($_, 'Parse::Win32Registry::Value') } |
446
|
|
|
|
|
|
|
@values) { |
447
|
1
|
|
|
|
|
157
|
croak 'Usage: compare_multiple_values($value1, $value2, ...)'; |
448
|
|
|
|
|
|
|
} |
449
|
|
|
|
|
|
|
|
450
|
10
|
|
|
|
|
15
|
my @changes = (); |
451
|
|
|
|
|
|
|
|
452
|
10
|
|
|
|
|
12
|
my $benchmark_value; |
453
|
10
|
|
|
|
|
16
|
foreach my $value (@values) { |
454
|
30
|
|
|
|
|
32
|
my $diff = ''; |
455
|
|
|
|
|
|
|
# Skip comparison for the first value |
456
|
30
|
100
|
|
|
|
63
|
if (@changes > 0) { |
457
|
20
|
|
|
|
|
34
|
$diff = _compare_values($benchmark_value, $value); |
458
|
|
|
|
|
|
|
} |
459
|
30
|
|
|
|
|
43
|
$benchmark_value = $value; |
460
|
30
|
|
|
|
|
47
|
push @changes, $diff; |
461
|
|
|
|
|
|
|
} |
462
|
10
|
|
|
|
|
66
|
return @changes; |
463
|
|
|
|
|
|
|
} |
464
|
|
|
|
|
|
|
|
465
|
|
|
|
|
|
|
sub _compare_keys { |
466
|
24
|
|
|
24
|
|
25
|
my ($key1, $key2) = @_; |
467
|
|
|
|
|
|
|
|
468
|
24
|
100
|
100
|
|
|
174
|
if (!defined $key1 && !defined $key2) { |
|
|
100
|
100
|
|
|
|
|
|
|
100
|
66
|
|
|
|
|
469
|
4
|
|
|
|
|
9
|
return ''; # 'MISSING' |
470
|
|
|
|
|
|
|
} |
471
|
|
|
|
|
|
|
elsif (defined $key1 && !defined $key2) { |
472
|
2
|
|
|
|
|
5
|
return 'DELETED'; |
473
|
|
|
|
|
|
|
} |
474
|
|
|
|
|
|
|
elsif (!defined $key1 && defined $key2) { |
475
|
2
|
|
|
|
|
6
|
return 'ADDED'; |
476
|
|
|
|
|
|
|
} |
477
|
|
|
|
|
|
|
|
478
|
16
|
|
|
|
|
45
|
my $timestamp1 = $key1->get_timestamp; |
479
|
16
|
|
|
|
|
35
|
my $timestamp2 = $key2->get_timestamp; |
480
|
16
|
50
|
66
|
|
|
45
|
if ($key1->get_name ne $key2->get_name) { |
|
|
100
|
|
|
|
|
|
481
|
0
|
|
|
|
|
0
|
return 'CHANGED'; |
482
|
|
|
|
|
|
|
} |
483
|
|
|
|
|
|
|
elsif (defined $timestamp1 && defined $timestamp2) { |
484
|
8
|
50
|
|
|
|
38
|
if ($timestamp1 < $timestamp2) { |
|
|
50
|
|
|
|
|
|
485
|
0
|
|
|
|
|
0
|
return 'NEWER'; |
486
|
|
|
|
|
|
|
} |
487
|
|
|
|
|
|
|
elsif ($timestamp1 > $timestamp2) { |
488
|
0
|
|
|
|
|
0
|
return 'OLDER'; |
489
|
|
|
|
|
|
|
} |
490
|
|
|
|
|
|
|
} |
491
|
|
|
|
|
|
|
else { |
492
|
8
|
|
|
|
|
23
|
return ''; # comment out to check values... |
493
|
0
|
|
|
|
|
0
|
my $value_iter = make_multiple_value_iterator($key1, $key2); |
494
|
0
|
|
|
|
|
0
|
while (my ($val1, $val2) = $value_iter->get_next) { |
495
|
0
|
0
|
|
|
|
0
|
if (_compare_values($val1, $val2) ne '') { |
496
|
0
|
|
|
|
|
0
|
return 'VALUES'; |
497
|
|
|
|
|
|
|
} |
498
|
|
|
|
|
|
|
} |
499
|
0
|
|
|
|
|
0
|
return ''; |
500
|
|
|
|
|
|
|
} |
501
|
|
|
|
|
|
|
} |
502
|
|
|
|
|
|
|
|
503
|
|
|
|
|
|
|
sub _compare_values { |
504
|
20
|
|
|
20
|
|
25
|
my ($val1, $val2) = @_; |
505
|
|
|
|
|
|
|
|
506
|
20
|
100
|
100
|
|
|
146
|
if (!defined $val1 && !defined $val2) { |
|
|
100
|
100
|
|
|
|
|
|
|
100
|
66
|
|
|
|
|
507
|
4
|
|
|
|
|
10
|
return ''; # 'MISSING' |
508
|
|
|
|
|
|
|
} |
509
|
|
|
|
|
|
|
elsif (defined $val1 && !defined $val2) { |
510
|
2
|
|
|
|
|
6
|
return 'DELETED'; |
511
|
|
|
|
|
|
|
} |
512
|
|
|
|
|
|
|
elsif (!defined $val1 && defined $val2) { |
513
|
2
|
|
|
|
|
6
|
return 'ADDED'; |
514
|
|
|
|
|
|
|
} |
515
|
|
|
|
|
|
|
|
516
|
12
|
|
|
|
|
37
|
my $data1 = $val1->get_data; |
517
|
12
|
|
|
|
|
39
|
my $data2 = $val2->get_data; |
518
|
12
|
50
|
33
|
|
|
28
|
if ($val1->get_name ne $val2->get_name || |
|
|
|
33
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
|
33
|
|
|
|
|
519
|
|
|
|
|
|
|
$val1->get_type != $val2->get_type || |
520
|
|
|
|
|
|
|
defined $data1 ne defined $data2 || |
521
|
|
|
|
|
|
|
(defined $data1 && defined $data2 && $data1 ne $data2)) { |
522
|
0
|
|
|
|
|
0
|
return 'CHANGED'; |
523
|
|
|
|
|
|
|
} |
524
|
|
|
|
|
|
|
else { |
525
|
12
|
|
|
|
|
24
|
return ''; |
526
|
|
|
|
|
|
|
} |
527
|
|
|
|
|
|
|
} |
528
|
|
|
|
|
|
|
|
529
|
|
|
|
|
|
|
|
530
|
|
|
|
|
|
|
package Parse::Win32Registry::Iterator; |
531
|
|
|
|
|
|
|
|
532
|
13
|
|
|
13
|
|
122
|
use Carp; |
|
13
|
|
|
|
|
26
|
|
|
13
|
|
|
|
|
18881
|
|
533
|
|
|
|
|
|
|
|
534
|
|
|
|
|
|
|
sub new { |
535
|
744
|
|
|
744
|
|
1282
|
my $class = shift; |
536
|
744
|
|
|
|
|
1021
|
my $self = shift; |
537
|
|
|
|
|
|
|
|
538
|
744
|
|
|
|
|
1321
|
my $type = ref $self; |
539
|
744
|
50
|
33
|
|
|
2438
|
croak 'Missing iterator subroutine' if $type ne 'CODE' |
540
|
|
|
|
|
|
|
&& $type ne __PACKAGE__; |
541
|
|
|
|
|
|
|
|
542
|
744
|
|
|
|
|
1989
|
bless $self, $class; |
543
|
744
|
|
|
|
|
2534
|
return $self; |
544
|
|
|
|
|
|
|
} |
545
|
|
|
|
|
|
|
|
546
|
|
|
|
|
|
|
sub get_next { |
547
|
138
|
|
|
138
|
|
64883
|
$_[0]->(); |
548
|
|
|
|
|
|
|
} |
549
|
|
|
|
|
|
|
|
550
|
|
|
|
|
|
|
|
551
|
|
|
|
|
|
|
package Parse::Win32Registry::GUID; |
552
|
|
|
|
|
|
|
|
553
|
|
|
|
|
|
|
sub new { |
554
|
8
|
|
|
8
|
|
12
|
my $class = shift; |
555
|
8
|
|
|
|
|
10
|
my $data = shift; |
556
|
|
|
|
|
|
|
|
557
|
8
|
50
|
|
|
|
15
|
if (!defined $data) { |
558
|
0
|
|
|
|
|
0
|
return; |
559
|
|
|
|
|
|
|
} |
560
|
|
|
|
|
|
|
|
561
|
8
|
100
|
|
|
|
24
|
if (length($data) < 16) { |
562
|
2
|
|
|
|
|
4
|
return; |
563
|
|
|
|
|
|
|
} |
564
|
|
|
|
|
|
|
|
565
|
6
|
|
|
|
|
40
|
my $guid = sprintf '{%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X}', |
566
|
|
|
|
|
|
|
unpack('VvvC2C6', $data); |
567
|
|
|
|
|
|
|
|
568
|
6
|
|
|
|
|
20
|
my $self = { |
569
|
|
|
|
|
|
|
_guid => $guid, |
570
|
|
|
|
|
|
|
_length => 16, |
571
|
|
|
|
|
|
|
}; |
572
|
6
|
|
|
|
|
14
|
bless $self, $class; |
573
|
|
|
|
|
|
|
|
574
|
6
|
|
|
|
|
12
|
return $self; |
575
|
|
|
|
|
|
|
} |
576
|
|
|
|
|
|
|
|
577
|
|
|
|
|
|
|
sub as_string { |
578
|
6
|
|
|
6
|
|
2638
|
my $self = shift; |
579
|
|
|
|
|
|
|
|
580
|
6
|
|
|
|
|
27
|
return $self->{_guid}; |
581
|
|
|
|
|
|
|
} |
582
|
|
|
|
|
|
|
|
583
|
|
|
|
|
|
|
sub get_length { |
584
|
3
|
|
|
3
|
|
5
|
my $self = shift; |
585
|
|
|
|
|
|
|
|
586
|
3
|
|
|
|
|
17
|
return $self->{_length}; |
587
|
|
|
|
|
|
|
} |
588
|
|
|
|
|
|
|
|
589
|
|
|
|
|
|
|
|
590
|
|
|
|
|
|
|
package Parse::Win32Registry::SID; |
591
|
|
|
|
|
|
|
|
592
|
|
|
|
|
|
|
sub new { |
593
|
170
|
|
|
170
|
|
295
|
my $class = shift; |
594
|
170
|
|
|
|
|
338
|
my $data = shift; |
595
|
|
|
|
|
|
|
|
596
|
170
|
50
|
|
|
|
407
|
if (!defined $data) { |
597
|
0
|
|
|
|
|
0
|
return; |
598
|
|
|
|
|
|
|
} |
599
|
|
|
|
|
|
|
|
600
|
|
|
|
|
|
|
# 0x00 byte = revision |
601
|
|
|
|
|
|
|
# 0x01 byte = number of sub authorities |
602
|
|
|
|
|
|
|
# 0x07 byte = identifier authority |
603
|
|
|
|
|
|
|
# 0x08 dword = 1st sub authority |
604
|
|
|
|
|
|
|
# 0x0c dword = 2nd sub authority |
605
|
|
|
|
|
|
|
# ... |
606
|
|
|
|
|
|
|
|
607
|
170
|
100
|
|
|
|
380
|
if (length($data) < 8) { |
608
|
4
|
|
|
|
|
7
|
return; |
609
|
|
|
|
|
|
|
} |
610
|
|
|
|
|
|
|
|
611
|
166
|
|
|
|
|
1002
|
my ($rev, $num_sub_auths, $id_auth) = unpack('CCx5C', $data); |
612
|
|
|
|
|
|
|
|
613
|
166
|
100
|
|
|
|
517
|
if ($num_sub_auths == 0) { |
614
|
2
|
|
|
|
|
4
|
return; |
615
|
|
|
|
|
|
|
} |
616
|
|
|
|
|
|
|
|
617
|
164
|
|
|
|
|
361
|
my $sid_len = 8 + 4 * $num_sub_auths; |
618
|
|
|
|
|
|
|
|
619
|
164
|
100
|
|
|
|
339
|
if (length($data) < $sid_len) { |
620
|
8
|
|
|
|
|
19
|
return; |
621
|
|
|
|
|
|
|
} |
622
|
|
|
|
|
|
|
|
623
|
156
|
|
|
|
|
490
|
my @sub_auths = unpack("x8V$num_sub_auths", $data); |
624
|
156
|
|
|
|
|
689
|
my $sid = "S-$rev-$id_auth-" . join('-', @sub_auths); |
625
|
|
|
|
|
|
|
|
626
|
156
|
|
|
|
|
643
|
my $self = { |
627
|
|
|
|
|
|
|
_sid => $sid, |
628
|
|
|
|
|
|
|
_length => $sid_len, |
629
|
|
|
|
|
|
|
}; |
630
|
156
|
|
|
|
|
415
|
bless $self, $class; |
631
|
|
|
|
|
|
|
|
632
|
156
|
|
|
|
|
461
|
return $self; |
633
|
|
|
|
|
|
|
} |
634
|
|
|
|
|
|
|
|
635
|
|
|
|
|
|
|
# See KB243330 for a list of well known sids |
636
|
|
|
|
|
|
|
our %WellKnownSids = ( |
637
|
|
|
|
|
|
|
'S-1-0-0' => 'Nobody', |
638
|
|
|
|
|
|
|
'S-1-1-0' => 'Everyone', |
639
|
|
|
|
|
|
|
'S-1-3-0' => 'Creator Owner', |
640
|
|
|
|
|
|
|
'S-1-3-1' => 'Creator Group', |
641
|
|
|
|
|
|
|
'S-1-3-2' => 'Creator Owner Server', |
642
|
|
|
|
|
|
|
'S-1-3-3' => 'Creator Group Server', |
643
|
|
|
|
|
|
|
'S-1-5-1' => 'Dialup', |
644
|
|
|
|
|
|
|
'S-1-5-2' => 'Network', |
645
|
|
|
|
|
|
|
'S-1-5-3' => 'Batch', |
646
|
|
|
|
|
|
|
'S-1-5-4' => 'Interactive', |
647
|
|
|
|
|
|
|
'S-1-5-5-\\d+-\\d+' => 'Logon Session', |
648
|
|
|
|
|
|
|
'S-1-5-6' => 'Service', |
649
|
|
|
|
|
|
|
'S-1-5-7' => 'Anonymous', |
650
|
|
|
|
|
|
|
'S-1-5-8' => 'Proxy', |
651
|
|
|
|
|
|
|
'S-1-5-9' => 'Enterprise Domain Controllers', |
652
|
|
|
|
|
|
|
'S-1-5-10' => 'Principal Self', |
653
|
|
|
|
|
|
|
'S-1-5-11' => 'Authenticated Users', |
654
|
|
|
|
|
|
|
'S-1-5-12' => 'Restricted Code', |
655
|
|
|
|
|
|
|
'S-1-5-13' => 'Terminal Server Users', |
656
|
|
|
|
|
|
|
'S-1-5-18' => 'Local System', |
657
|
|
|
|
|
|
|
'S-1-5-19' => 'Local Service', |
658
|
|
|
|
|
|
|
'S-1-5-20' => 'Network Service', |
659
|
|
|
|
|
|
|
'S-1-5-\\d+-\\d+-\\d+-\\d+-500' => 'Administrator', |
660
|
|
|
|
|
|
|
'S-1-5-\\d+-\\d+-\\d+-\\d+-501' => 'Guest', |
661
|
|
|
|
|
|
|
'S-1-5-\\d+-\\d+-\\d+-\\d+-502' => 'KRBTGT', |
662
|
|
|
|
|
|
|
'S-1-5-\\d+-\\d+-\\d+-\\d+-512' => 'Domain Admins', |
663
|
|
|
|
|
|
|
'S-1-5-\\d+-\\d+-\\d+-\\d+-513' => 'Domain Users', |
664
|
|
|
|
|
|
|
'S-1-5-\\d+-\\d+-\\d+-\\d+-514' => 'Domain Guests', |
665
|
|
|
|
|
|
|
'S-1-5-\\d+-\\d+-\\d+-\\d+-515' => 'Domain Computers', |
666
|
|
|
|
|
|
|
'S-1-5-\\d+-\\d+-\\d+-\\d+-516' => 'Domain Controllers', |
667
|
|
|
|
|
|
|
'S-1-5-\\d+-\\d+-\\d+-\\d+-517' => 'Cert Publishers', |
668
|
|
|
|
|
|
|
'S-1-5-\\d+-\\d+-\\d+-\\d+-518' => 'Schema Admins', |
669
|
|
|
|
|
|
|
'S-1-5-\\d+-\\d+-\\d+-\\d+-519' => 'Enterprise Admins', |
670
|
|
|
|
|
|
|
'S-1-5-\\d+-\\d+-\\d+-\\d+-520' => 'Group Policy Creator Owners', |
671
|
|
|
|
|
|
|
'S-1-5-\\d+-\\d+-\\d+-\\d+-533' => 'RAS and IAS Servers', |
672
|
|
|
|
|
|
|
'S-1-5-32-544' => 'Administrators', |
673
|
|
|
|
|
|
|
'S-1-5-32-545' => 'Users', |
674
|
|
|
|
|
|
|
'S-1-5-32-546' => 'Guest', |
675
|
|
|
|
|
|
|
'S-1-5-32-547' => 'Power Users', |
676
|
|
|
|
|
|
|
'S-1-5-32-548' => 'Account Operators', |
677
|
|
|
|
|
|
|
'S-1-5-32-549' => 'Server Operators', |
678
|
|
|
|
|
|
|
'S-1-5-32-550' => 'Print Operators', |
679
|
|
|
|
|
|
|
'S-1-5-32-551' => 'Backup Operators', |
680
|
|
|
|
|
|
|
'S-1-5-32-552' => 'Replicators', |
681
|
|
|
|
|
|
|
'S-1-16-4096' => 'Low Integrity Level', |
682
|
|
|
|
|
|
|
'S-1-16-8192' => 'Medium Integrity Level', |
683
|
|
|
|
|
|
|
'S-1-16-12288' => 'High Integrity Level', |
684
|
|
|
|
|
|
|
'S-1-16-16384' => 'System Integrity Level', |
685
|
|
|
|
|
|
|
); |
686
|
|
|
|
|
|
|
|
687
|
|
|
|
|
|
|
sub get_name { |
688
|
0
|
|
|
0
|
|
0
|
my $self = shift; |
689
|
|
|
|
|
|
|
|
690
|
0
|
|
|
|
|
0
|
my $sid = $self->{_sid}; |
691
|
|
|
|
|
|
|
|
692
|
0
|
|
|
|
|
0
|
foreach my $regexp (keys %WellKnownSids) { |
693
|
0
|
0
|
|
|
|
0
|
if ($sid =~ m/^$regexp$/) { |
694
|
0
|
|
|
|
|
0
|
return $WellKnownSids{$regexp}; |
695
|
|
|
|
|
|
|
} |
696
|
|
|
|
|
|
|
} |
697
|
0
|
|
|
|
|
0
|
return; |
698
|
|
|
|
|
|
|
} |
699
|
|
|
|
|
|
|
|
700
|
|
|
|
|
|
|
sub as_string { |
701
|
131
|
|
|
131
|
|
59556
|
my $self = shift; |
702
|
|
|
|
|
|
|
|
703
|
131
|
|
|
|
|
975
|
return $self->{_sid}; |
704
|
|
|
|
|
|
|
} |
705
|
|
|
|
|
|
|
|
706
|
|
|
|
|
|
|
sub get_length { |
707
|
192
|
|
|
192
|
|
309
|
my $self = shift; |
708
|
|
|
|
|
|
|
|
709
|
192
|
|
|
|
|
632
|
return $self->{_length}; |
710
|
|
|
|
|
|
|
} |
711
|
|
|
|
|
|
|
|
712
|
|
|
|
|
|
|
|
713
|
|
|
|
|
|
|
package Parse::Win32Registry::ACE; |
714
|
|
|
|
|
|
|
|
715
|
|
|
|
|
|
|
sub new { |
716
|
129
|
|
|
129
|
|
212
|
my $class = shift; |
717
|
129
|
|
|
|
|
266
|
my $data = shift; |
718
|
|
|
|
|
|
|
|
719
|
129
|
50
|
|
|
|
285
|
if (!defined $data) { |
720
|
0
|
|
|
|
|
0
|
return; |
721
|
|
|
|
|
|
|
} |
722
|
|
|
|
|
|
|
|
723
|
|
|
|
|
|
|
# 0x00 byte = type |
724
|
|
|
|
|
|
|
# 0x01 byte = flags |
725
|
|
|
|
|
|
|
# 0x02 word = length |
726
|
|
|
|
|
|
|
|
727
|
|
|
|
|
|
|
# Types: |
728
|
|
|
|
|
|
|
# ACCESS_ALLOWED_ACE_TYPE = 0 |
729
|
|
|
|
|
|
|
# ACCESS_DENIED_ACE_TYPE = 1 |
730
|
|
|
|
|
|
|
# SYSTEM_AUDIT_ACE_TYPE = 2 |
731
|
|
|
|
|
|
|
# SYSTEM_MANDATORY_LABEL_ACE_TYPE = x011 |
732
|
|
|
|
|
|
|
|
733
|
|
|
|
|
|
|
# Flags: |
734
|
|
|
|
|
|
|
# OBJECT_INHERIT_ACE = 0x01 |
735
|
|
|
|
|
|
|
# CONTAINER_INHERIT_ACE = 0x02 |
736
|
|
|
|
|
|
|
# NO_PROPAGATE_INHERIT_ACE = 0x04 |
737
|
|
|
|
|
|
|
# INHERIT_ONLY_ACE = 0x08 |
738
|
|
|
|
|
|
|
# INHERITED_ACE = 0x10 |
739
|
|
|
|
|
|
|
# SUCCESSFUL_ACCESS_ACE_FLAG = 0x40 (Audit Success) |
740
|
|
|
|
|
|
|
# FAILED_ACCESS_ACE_FLAG = 0x80 (Audit Failure) |
741
|
|
|
|
|
|
|
|
742
|
129
|
100
|
|
|
|
289
|
if (length($data) < 4) { |
743
|
6
|
|
|
|
|
11
|
return; |
744
|
|
|
|
|
|
|
} |
745
|
|
|
|
|
|
|
|
746
|
123
|
|
|
|
|
307
|
my ($type, $flags, $ace_len) = unpack('CCv', $data); |
747
|
|
|
|
|
|
|
|
748
|
123
|
100
|
|
|
|
296
|
if (length($data) < $ace_len) { |
749
|
6
|
|
|
|
|
12
|
return; |
750
|
|
|
|
|
|
|
} |
751
|
|
|
|
|
|
|
|
752
|
|
|
|
|
|
|
# The data following the header varies depending on the type. |
753
|
|
|
|
|
|
|
# For ACCESS_ALLOWED_ACE, ACCESS_DENIED_ACE, SYSTEM_AUDIT_ACE |
754
|
|
|
|
|
|
|
# the header is followed by an access mask and a sid. |
755
|
|
|
|
|
|
|
# 0x04 dword = access mask |
756
|
|
|
|
|
|
|
# 0x08 = SID |
757
|
|
|
|
|
|
|
|
758
|
|
|
|
|
|
|
# Only the following types are currently unpacked: |
759
|
|
|
|
|
|
|
# 0 (ACCESS_ALLOWED_ACE), 1 (ACCESS_DENIED_ACE), 2 (SYSTEM_AUDIT_ACE) |
760
|
117
|
100
|
66
|
|
|
1585
|
if ($type >= 0 && $type <= 2 || $type == 0x11) { |
|
|
|
100
|
|
|
|
|
761
|
112
|
|
|
|
|
290
|
my $access_mask = unpack('x4V', $data); |
762
|
112
|
|
|
|
|
1553
|
my $sid = Parse::Win32Registry::SID->new(substr($data, 8, |
763
|
|
|
|
|
|
|
$ace_len - 8)); |
764
|
|
|
|
|
|
|
|
765
|
|
|
|
|
|
|
# Abandon ace if sid is invalid |
766
|
112
|
100
|
|
|
|
410
|
if (!defined $sid) { |
767
|
4
|
|
|
|
|
17
|
return; |
768
|
|
|
|
|
|
|
} |
769
|
|
|
|
|
|
|
|
770
|
|
|
|
|
|
|
# Abandon ace if not the expected length |
771
|
108
|
100
|
|
|
|
233
|
if (($sid->get_length + 8) != $ace_len) { |
772
|
2
|
|
|
|
|
6
|
return; |
773
|
|
|
|
|
|
|
} |
774
|
|
|
|
|
|
|
|
775
|
106
|
|
|
|
|
484
|
my $self = { |
776
|
|
|
|
|
|
|
_type => $type, |
777
|
|
|
|
|
|
|
_flags => $flags, |
778
|
|
|
|
|
|
|
_mask => $access_mask, |
779
|
|
|
|
|
|
|
_trustee => $sid, |
780
|
|
|
|
|
|
|
_length => $ace_len, |
781
|
|
|
|
|
|
|
}; |
782
|
106
|
|
|
|
|
241
|
bless $self, $class; |
783
|
|
|
|
|
|
|
|
784
|
106
|
|
|
|
|
320
|
return $self; |
785
|
|
|
|
|
|
|
} |
786
|
|
|
|
|
|
|
else { |
787
|
5
|
|
|
|
|
11
|
return; |
788
|
|
|
|
|
|
|
} |
789
|
|
|
|
|
|
|
} |
790
|
|
|
|
|
|
|
|
791
|
|
|
|
|
|
|
our @Types = qw( |
792
|
|
|
|
|
|
|
ACCESS_ALLOWED |
793
|
|
|
|
|
|
|
ACCESS_DENIED |
794
|
|
|
|
|
|
|
SYSTEM_AUDIT |
795
|
|
|
|
|
|
|
SYSTEM_ALARM |
796
|
|
|
|
|
|
|
ALLOWED_COMPOUND |
797
|
|
|
|
|
|
|
ACCESS_ALLOWED_OBJECT |
798
|
|
|
|
|
|
|
ACCESS_DENIED_OBJECT |
799
|
|
|
|
|
|
|
SYSTEM_AUDIT_OBJECT |
800
|
|
|
|
|
|
|
SYSTEM_ALARM_OBJECT |
801
|
|
|
|
|
|
|
ACCESS_ALLOWED_CALLBACK |
802
|
|
|
|
|
|
|
ACCESS_DENIED_CALLBACK |
803
|
|
|
|
|
|
|
ACCESS_ALLOWED_CALLBACK_OBJECT |
804
|
|
|
|
|
|
|
ACCESS_DENIED_CALLBACK_OBJECT |
805
|
|
|
|
|
|
|
SYSTEM_AUDIT_CALLBACK |
806
|
|
|
|
|
|
|
SYSTEM_ALARM_CALLBACK |
807
|
|
|
|
|
|
|
SYSTEM_AUDIT_CALLBACK_OBJECT |
808
|
|
|
|
|
|
|
SYSTEM_ALARM_CALLBACK_OBJECT |
809
|
|
|
|
|
|
|
SYSTEM_MANDATORY_LABEL |
810
|
|
|
|
|
|
|
); |
811
|
|
|
|
|
|
|
|
812
|
|
|
|
|
|
|
sub _look_up_ace_type { |
813
|
97
|
|
|
97
|
|
167
|
my $type = shift; |
814
|
|
|
|
|
|
|
|
815
|
97
|
50
|
|
|
|
482
|
if (exists $Types[$type]) { |
816
|
97
|
|
|
|
|
638
|
return $Types[$type]; |
817
|
|
|
|
|
|
|
} |
818
|
|
|
|
|
|
|
else { |
819
|
0
|
|
|
|
|
0
|
return ''; |
820
|
|
|
|
|
|
|
} |
821
|
|
|
|
|
|
|
} |
822
|
|
|
|
|
|
|
|
823
|
|
|
|
|
|
|
sub get_type { |
824
|
97
|
|
|
97
|
|
123415
|
return $_[0]->{_type}; |
825
|
|
|
|
|
|
|
} |
826
|
|
|
|
|
|
|
|
827
|
|
|
|
|
|
|
sub get_type_as_string { |
828
|
97
|
|
|
97
|
|
383
|
return _look_up_ace_type($_[0]->{_type}); |
829
|
|
|
|
|
|
|
} |
830
|
|
|
|
|
|
|
|
831
|
|
|
|
|
|
|
sub get_flags { |
832
|
97
|
|
|
97
|
|
2052
|
return $_[0]->{_flags}; |
833
|
|
|
|
|
|
|
} |
834
|
|
|
|
|
|
|
|
835
|
|
|
|
|
|
|
sub get_access_mask { |
836
|
97
|
|
|
97
|
|
765
|
return $_[0]->{_mask}; |
837
|
|
|
|
|
|
|
} |
838
|
|
|
|
|
|
|
|
839
|
|
|
|
|
|
|
sub get_trustee { |
840
|
97
|
|
|
97
|
|
640
|
return $_[0]->{_trustee}; |
841
|
|
|
|
|
|
|
} |
842
|
|
|
|
|
|
|
|
843
|
|
|
|
|
|
|
sub as_string { |
844
|
0
|
|
|
0
|
|
0
|
my $self = shift; |
845
|
|
|
|
|
|
|
|
846
|
0
|
|
|
|
|
0
|
my $sid = $self->{_trustee}; |
847
|
0
|
|
|
|
|
0
|
my $string = sprintf '%s 0x%02x 0x%08x %s', |
848
|
|
|
|
|
|
|
_look_up_ace_type($self->{_type}), |
849
|
|
|
|
|
|
|
$self->{_flags}, |
850
|
|
|
|
|
|
|
$self->{_mask}, |
851
|
|
|
|
|
|
|
$sid->as_string; |
852
|
0
|
|
|
|
|
0
|
my $name = $sid->get_name; |
853
|
0
|
0
|
|
|
|
0
|
$string .= " [$name]" if defined $name; |
854
|
0
|
|
|
|
|
0
|
return $string; |
855
|
|
|
|
|
|
|
} |
856
|
|
|
|
|
|
|
|
857
|
|
|
|
|
|
|
sub get_length { |
858
|
101
|
|
|
101
|
|
146
|
my $self = shift; |
859
|
|
|
|
|
|
|
|
860
|
101
|
|
|
|
|
397
|
return $self->{_length}; |
861
|
|
|
|
|
|
|
} |
862
|
|
|
|
|
|
|
|
863
|
|
|
|
|
|
|
|
864
|
|
|
|
|
|
|
package Parse::Win32Registry::ACL; |
865
|
|
|
|
|
|
|
|
866
|
13
|
|
|
13
|
|
93
|
use Carp; |
|
13
|
|
|
|
|
23
|
|
|
13
|
|
|
|
|
26034
|
|
867
|
|
|
|
|
|
|
|
868
|
|
|
|
|
|
|
sub new { |
869
|
51
|
|
|
51
|
|
112
|
my $class = shift; |
870
|
51
|
|
|
|
|
104
|
my $data = shift; |
871
|
|
|
|
|
|
|
|
872
|
51
|
50
|
|
|
|
141
|
if (!defined $data) { |
873
|
0
|
|
|
|
|
0
|
return; |
874
|
|
|
|
|
|
|
} |
875
|
|
|
|
|
|
|
|
876
|
|
|
|
|
|
|
# 0x00 byte = revision |
877
|
|
|
|
|
|
|
# 0x01 |
878
|
|
|
|
|
|
|
# 0x02 word = length |
879
|
|
|
|
|
|
|
# 0x04 word = number of aces |
880
|
|
|
|
|
|
|
# 0x06 |
881
|
|
|
|
|
|
|
# 0x08 = first ace (variable length) |
882
|
|
|
|
|
|
|
# ... = second ace (variable length) |
883
|
|
|
|
|
|
|
# ... |
884
|
|
|
|
|
|
|
|
885
|
51
|
100
|
|
|
|
126
|
if (length($data) < 8) { |
886
|
2
|
|
|
|
|
4
|
return; |
887
|
|
|
|
|
|
|
} |
888
|
|
|
|
|
|
|
|
889
|
49
|
|
|
|
|
215
|
my ($rev, $acl_len, $num_aces) = unpack('Cxvv', $data); |
890
|
|
|
|
|
|
|
|
891
|
49
|
100
|
|
|
|
2292
|
if (length($data) < $acl_len) { |
892
|
4
|
|
|
|
|
9
|
return; |
893
|
|
|
|
|
|
|
} |
894
|
|
|
|
|
|
|
|
895
|
45
|
|
|
|
|
987
|
my $pos = 8; |
896
|
45
|
|
|
|
|
78
|
my @acl = (); |
897
|
45
|
|
|
|
|
309
|
foreach (my $num = 0; $num < $num_aces; $num++) { |
898
|
107
|
|
|
|
|
5171
|
my $ace = Parse::Win32Registry::ACE->new(substr($data, $pos, |
899
|
|
|
|
|
|
|
$acl_len - $pos)); |
900
|
|
|
|
|
|
|
# Abandon acl if any single ace is undefined |
901
|
107
|
100
|
|
|
|
315
|
return if !defined $ace; |
902
|
96
|
|
|
|
|
312
|
push @acl, $ace; |
903
|
96
|
|
|
|
|
235
|
$pos += $ace->get_length; |
904
|
|
|
|
|
|
|
} |
905
|
|
|
|
|
|
|
|
906
|
|
|
|
|
|
|
# Abandon acl if not expected length, but don't use |
907
|
|
|
|
|
|
|
# $pos != $acl_len as some acls contain unused space. |
908
|
34
|
50
|
|
|
|
76
|
if ($pos > $acl_len) { |
909
|
0
|
|
|
|
|
0
|
return; |
910
|
|
|
|
|
|
|
} |
911
|
|
|
|
|
|
|
|
912
|
34
|
|
|
|
|
321
|
my $self = { |
913
|
|
|
|
|
|
|
_acl => \@acl, |
914
|
|
|
|
|
|
|
_length => $acl_len, |
915
|
|
|
|
|
|
|
}; |
916
|
34
|
|
|
|
|
1936
|
bless $self, $class; |
917
|
|
|
|
|
|
|
|
918
|
34
|
|
|
|
|
86
|
return $self; |
919
|
|
|
|
|
|
|
} |
920
|
|
|
|
|
|
|
|
921
|
|
|
|
|
|
|
sub get_list_of_aces { |
922
|
31
|
|
|
31
|
|
14797
|
my $self = shift; |
923
|
|
|
|
|
|
|
|
924
|
31
|
|
|
|
|
64
|
return @{$self->{_acl}}; |
|
31
|
|
|
|
|
146
|
|
925
|
|
|
|
|
|
|
} |
926
|
|
|
|
|
|
|
|
927
|
|
|
|
|
|
|
sub as_string { |
928
|
0
|
|
|
0
|
|
0
|
croak 'Usage: ACLs do not have an as_string method; use as_stanza instead'; |
929
|
|
|
|
|
|
|
} |
930
|
|
|
|
|
|
|
|
931
|
|
|
|
|
|
|
sub as_stanza { |
932
|
0
|
|
|
0
|
|
0
|
my $self = shift; |
933
|
|
|
|
|
|
|
|
934
|
0
|
|
|
|
|
0
|
my $stanza = ''; |
935
|
0
|
|
|
|
|
0
|
foreach my $ace (@{$self->{_acl}}) { |
|
0
|
|
|
|
|
0
|
|
936
|
0
|
|
|
|
|
0
|
$stanza .= 'ACE: '. $ace->as_string . "\n"; |
937
|
|
|
|
|
|
|
} |
938
|
0
|
|
|
|
|
0
|
return $stanza; |
939
|
|
|
|
|
|
|
} |
940
|
|
|
|
|
|
|
|
941
|
|
|
|
|
|
|
sub get_length { |
942
|
35
|
|
|
35
|
|
54
|
my $self = shift; |
943
|
|
|
|
|
|
|
|
944
|
35
|
|
|
|
|
143
|
return $self->{_length}; |
945
|
|
|
|
|
|
|
} |
946
|
|
|
|
|
|
|
|
947
|
|
|
|
|
|
|
|
948
|
|
|
|
|
|
|
package Parse::Win32Registry::SecurityDescriptor; |
949
|
|
|
|
|
|
|
|
950
|
13
|
|
|
13
|
|
88
|
use Carp; |
|
13
|
|
|
|
|
32
|
|
|
13
|
|
|
|
|
12831
|
|
951
|
|
|
|
|
|
|
|
952
|
|
|
|
|
|
|
sub new { |
953
|
37
|
|
|
37
|
|
311
|
my $class = shift; |
954
|
37
|
|
|
|
|
63
|
my $data = shift; |
955
|
|
|
|
|
|
|
|
956
|
37
|
50
|
|
|
|
118
|
if (!defined $data) { |
957
|
0
|
|
|
|
|
0
|
return; |
958
|
|
|
|
|
|
|
} |
959
|
|
|
|
|
|
|
|
960
|
|
|
|
|
|
|
# Unpacks "self-relative" security descriptors |
961
|
|
|
|
|
|
|
|
962
|
|
|
|
|
|
|
# 0x00 word = revision |
963
|
|
|
|
|
|
|
# 0x02 word = control flags |
964
|
|
|
|
|
|
|
# 0x04 dword = offset to owner sid |
965
|
|
|
|
|
|
|
# 0x08 dword = offset to group sid |
966
|
|
|
|
|
|
|
# 0x0c dword = offset to sacl |
967
|
|
|
|
|
|
|
# 0x10 dword = offset to dacl |
968
|
|
|
|
|
|
|
|
969
|
|
|
|
|
|
|
# Offsets are relative to the start of the security descriptor |
970
|
|
|
|
|
|
|
|
971
|
|
|
|
|
|
|
# Control Flags: |
972
|
|
|
|
|
|
|
# SE_OWNER_DEFAULTED 0x0001 |
973
|
|
|
|
|
|
|
# SE_GROUP_DEFAULTED 0x0002 |
974
|
|
|
|
|
|
|
# SE_DACL_PRESENT 0x0004 |
975
|
|
|
|
|
|
|
# SE_DACL_DEFAULTED 0x0008 |
976
|
|
|
|
|
|
|
# SE_SACL_PRESENT 0x0010 |
977
|
|
|
|
|
|
|
# SE_SACL_DEFAULTED 0x0020 |
978
|
|
|
|
|
|
|
# SE_DACL_AUTO_INHERIT_REQ 0x0100 |
979
|
|
|
|
|
|
|
# SE_SACL_AUTO_INHERIT_REQ 0x0200 |
980
|
|
|
|
|
|
|
# SE_DACL_AUTO_INHERITED 0x0400 |
981
|
|
|
|
|
|
|
# SE_SACL_AUTO_INHERITED 0x0800 |
982
|
|
|
|
|
|
|
# SE_DACL_PROTECTED 0x1000 |
983
|
|
|
|
|
|
|
# SE_SACL_PROTECTED 0x2000 |
984
|
|
|
|
|
|
|
# SE_RM_CONTROL_VALID 0x4000 |
985
|
|
|
|
|
|
|
# SE_SELF_RELATIVE 0x8000 |
986
|
|
|
|
|
|
|
|
987
|
37
|
100
|
|
|
|
113
|
if (length($data) < 20) { |
988
|
2
|
|
|
|
|
5
|
return; |
989
|
|
|
|
|
|
|
} |
990
|
|
|
|
|
|
|
|
991
|
35
|
|
|
|
|
151
|
my ($rev, |
992
|
|
|
|
|
|
|
$flags, |
993
|
|
|
|
|
|
|
$offset_to_owner, |
994
|
|
|
|
|
|
|
$offset_to_group, |
995
|
|
|
|
|
|
|
$offset_to_sacl, |
996
|
|
|
|
|
|
|
$offset_to_dacl) = unpack('vvVVVV', $data); |
997
|
|
|
|
|
|
|
|
998
|
35
|
|
|
|
|
68
|
my %sd = (); |
999
|
35
|
|
|
|
|
68
|
my $sd_len = 20; |
1000
|
|
|
|
|
|
|
|
1001
|
35
|
|
|
|
|
68
|
my $self = {}; |
1002
|
35
|
100
|
66
|
|
|
189
|
if ($offset_to_owner > 0 && $offset_to_owner < length($data)) { |
1003
|
23
|
|
|
|
|
126
|
my $owner = Parse::Win32Registry::SID->new(substr($data, |
1004
|
|
|
|
|
|
|
$offset_to_owner)); |
1005
|
23
|
100
|
|
|
|
77
|
return if !defined $owner; |
1006
|
21
|
|
|
|
|
57
|
$self->{_owner} = $owner; |
1007
|
21
|
50
|
|
|
|
63
|
if ($offset_to_owner + $owner->get_length > $sd_len) { |
1008
|
21
|
|
|
|
|
54
|
$sd_len = $offset_to_owner + $owner->get_length; |
1009
|
|
|
|
|
|
|
} |
1010
|
|
|
|
|
|
|
} |
1011
|
33
|
100
|
66
|
|
|
157
|
if ($offset_to_group > 0 && $offset_to_group < length($data)) { |
1012
|
21
|
|
|
|
|
75
|
my $group = Parse::Win32Registry::SID->new(substr($data, |
1013
|
|
|
|
|
|
|
$offset_to_group)); |
1014
|
21
|
100
|
|
|
|
77
|
return if !defined $group; |
1015
|
19
|
|
|
|
|
46
|
$self->{_group} = $group; |
1016
|
19
|
50
|
|
|
|
49
|
if ($offset_to_group + $group->get_length > $sd_len) { |
1017
|
19
|
|
|
|
|
44
|
$sd_len = $offset_to_group + $group->get_length; |
1018
|
|
|
|
|
|
|
} |
1019
|
|
|
|
|
|
|
} |
1020
|
31
|
100
|
66
|
|
|
945
|
if ($offset_to_sacl > 0 && $offset_to_sacl < length($data)) { |
1021
|
12
|
|
|
|
|
66
|
my $sacl = Parse::Win32Registry::ACL->new(substr($data, |
1022
|
|
|
|
|
|
|
$offset_to_sacl)); |
1023
|
12
|
100
|
|
|
|
43
|
return if !defined $sacl; |
1024
|
10
|
|
|
|
|
44
|
$self->{_sacl} = $sacl; |
1025
|
10
|
100
|
|
|
|
31
|
if ($offset_to_sacl + $sacl->get_length > $sd_len) { |
1026
|
3
|
|
|
|
|
11
|
$sd_len = $offset_to_sacl + $sacl->get_length; |
1027
|
|
|
|
|
|
|
} |
1028
|
|
|
|
|
|
|
} |
1029
|
29
|
100
|
66
|
|
|
138
|
if ($offset_to_dacl > 0 && $offset_to_dacl < length($data)) { |
1030
|
17
|
|
|
|
|
77
|
my $dacl = Parse::Win32Registry::ACL->new(substr($data, |
1031
|
|
|
|
|
|
|
$offset_to_dacl)); |
1032
|
17
|
100
|
|
|
|
76
|
return if !defined $dacl; |
1033
|
14
|
|
|
|
|
38
|
$self->{_dacl} = $dacl; |
1034
|
14
|
100
|
|
|
|
48
|
if ($offset_to_dacl + $dacl->get_length > $sd_len) { |
1035
|
3
|
|
|
|
|
9
|
$sd_len = $offset_to_dacl + $dacl->get_length; |
1036
|
|
|
|
|
|
|
} |
1037
|
|
|
|
|
|
|
} |
1038
|
26
|
|
|
|
|
129
|
$self->{_length} = $sd_len; |
1039
|
26
|
|
|
|
|
76
|
bless $self, $class; |
1040
|
|
|
|
|
|
|
|
1041
|
26
|
|
|
|
|
78
|
return $self; |
1042
|
|
|
|
|
|
|
} |
1043
|
|
|
|
|
|
|
|
1044
|
|
|
|
|
|
|
sub get_owner { |
1045
|
25
|
|
|
25
|
|
20091
|
my $self = shift; |
1046
|
|
|
|
|
|
|
|
1047
|
25
|
|
|
|
|
155
|
return $self->{_owner}; |
1048
|
|
|
|
|
|
|
} |
1049
|
|
|
|
|
|
|
|
1050
|
|
|
|
|
|
|
sub get_group { |
1051
|
25
|
|
|
25
|
|
10682
|
my $self = shift; |
1052
|
|
|
|
|
|
|
|
1053
|
25
|
|
|
|
|
144
|
return $self->{_group}; |
1054
|
|
|
|
|
|
|
} |
1055
|
|
|
|
|
|
|
|
1056
|
|
|
|
|
|
|
sub get_sacl { |
1057
|
25
|
|
|
25
|
|
10316
|
my $self = shift; |
1058
|
|
|
|
|
|
|
|
1059
|
25
|
|
|
|
|
157
|
return $self->{_sacl}; |
1060
|
|
|
|
|
|
|
} |
1061
|
|
|
|
|
|
|
|
1062
|
|
|
|
|
|
|
sub get_dacl { |
1063
|
25
|
|
|
25
|
|
14229
|
my $self = shift; |
1064
|
|
|
|
|
|
|
|
1065
|
25
|
|
|
|
|
152
|
return $self->{_dacl}; |
1066
|
|
|
|
|
|
|
} |
1067
|
|
|
|
|
|
|
|
1068
|
|
|
|
|
|
|
sub as_string { |
1069
|
0
|
|
|
0
|
|
0
|
croak 'Usage: Security Descriptors do not have an as_string method; use as_stanza instead'; |
1070
|
|
|
|
|
|
|
} |
1071
|
|
|
|
|
|
|
|
1072
|
|
|
|
|
|
|
sub as_stanza { |
1073
|
0
|
|
|
0
|
|
0
|
my $self = shift; |
1074
|
|
|
|
|
|
|
|
1075
|
0
|
|
|
|
|
0
|
my $stanza = ''; |
1076
|
0
|
0
|
|
|
|
0
|
if (defined(my $owner = $self->{_owner})) { |
1077
|
0
|
|
|
|
|
0
|
$stanza .= 'Owner SID: ' . $owner->as_string; |
1078
|
0
|
|
|
|
|
0
|
my $name = $owner->get_name; |
1079
|
0
|
0
|
|
|
|
0
|
$stanza .= " [$name]" if defined $name; |
1080
|
0
|
|
|
|
|
0
|
$stanza .= "\n"; |
1081
|
|
|
|
|
|
|
} |
1082
|
0
|
0
|
|
|
|
0
|
if (defined(my $group = $self->{_group})) { |
1083
|
0
|
|
|
|
|
0
|
$stanza .= 'Group SID: ' . $group->as_string; |
1084
|
0
|
|
|
|
|
0
|
my $name = $group->get_name; |
1085
|
0
|
0
|
|
|
|
0
|
$stanza .= " [$name]" if defined $name; |
1086
|
0
|
|
|
|
|
0
|
$stanza .= "\n"; |
1087
|
|
|
|
|
|
|
} |
1088
|
0
|
0
|
|
|
|
0
|
if (defined(my $sacl = $self->{_sacl})) { |
1089
|
0
|
|
|
|
|
0
|
foreach my $ace ($sacl->get_list_of_aces) { |
1090
|
0
|
|
|
|
|
0
|
$stanza .= 'SACL ACE: ' . $ace->as_string . "\n"; |
1091
|
|
|
|
|
|
|
} |
1092
|
|
|
|
|
|
|
} |
1093
|
0
|
0
|
|
|
|
0
|
if (defined(my $dacl = $self->{_dacl})) { |
1094
|
0
|
|
|
|
|
0
|
foreach my $ace ($dacl->get_list_of_aces) { |
1095
|
0
|
|
|
|
|
0
|
$stanza .= 'DACL ACE: ' . $ace->as_string . "\n"; |
1096
|
|
|
|
|
|
|
} |
1097
|
|
|
|
|
|
|
} |
1098
|
0
|
|
|
|
|
0
|
return $stanza; |
1099
|
|
|
|
|
|
|
} |
1100
|
|
|
|
|
|
|
|
1101
|
|
|
|
|
|
|
sub get_length { |
1102
|
9
|
|
|
9
|
|
16
|
my $self = shift; |
1103
|
|
|
|
|
|
|
|
1104
|
9
|
|
|
|
|
47
|
return $self->{_length}; |
1105
|
|
|
|
|
|
|
} |
1106
|
|
|
|
|
|
|
|
1107
|
|
|
|
|
|
|
1; |