dissect.target 3.18.dev10__py3-none-any.whl → 3.18.dev11__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- dissect/target/plugins/os/windows/_os.py +6 -3
- {dissect.target-3.18.dev10.dist-info → dissect.target-3.18.dev11.dist-info}/METADATA +1 -1
- {dissect.target-3.18.dev10.dist-info → dissect.target-3.18.dev11.dist-info}/RECORD +8 -8
- {dissect.target-3.18.dev10.dist-info → dissect.target-3.18.dev11.dist-info}/WHEEL +1 -1
- {dissect.target-3.18.dev10.dist-info → dissect.target-3.18.dev11.dist-info}/COPYRIGHT +0 -0
- {dissect.target-3.18.dev10.dist-info → dissect.target-3.18.dev11.dist-info}/LICENSE +0 -0
- {dissect.target-3.18.dev10.dist-info → dissect.target-3.18.dev11.dist-info}/entry_points.txt +0 -0
- {dissect.target-3.18.dev10.dist-info → dissect.target-3.18.dev11.dist-info}/top_level.txt +0 -0
@@ -21,7 +21,7 @@ class WindowsPlugin(OSPlugin):
|
|
21
21
|
self.add_mounts()
|
22
22
|
|
23
23
|
target.props["sysvol_drive"] = next(
|
24
|
-
(mnt for mnt, fs in target.fs.mounts.items() if fs is target.fs.mounts
|
24
|
+
(mnt for mnt, fs in target.fs.mounts.items() if fs is target.fs.mounts.get("sysvol") and mnt != "sysvol"),
|
25
25
|
None,
|
26
26
|
)
|
27
27
|
|
@@ -78,13 +78,16 @@ class WindowsPlugin(OSPlugin):
|
|
78
78
|
self.target.log.warning("Failed to map drive letters")
|
79
79
|
self.target.log.debug("", exc_info=e)
|
80
80
|
|
81
|
+
sysvol_drive = self.target.fs.mounts.get("sysvol")
|
81
82
|
# Fallback mount the sysvol to C: if we didn't manage to mount it to any other drive letter
|
82
|
-
if operator.countOf(self.target.fs.mounts.values(),
|
83
|
+
if sysvol_drive and operator.countOf(self.target.fs.mounts.values(), sysvol_drive) == 1:
|
83
84
|
if "c:" not in self.target.fs.mounts:
|
84
85
|
self.target.log.debug("Unable to determine drive letter of sysvol, falling back to C:")
|
85
|
-
self.target.fs.mount("c:",
|
86
|
+
self.target.fs.mount("c:", sysvol_drive)
|
86
87
|
else:
|
87
88
|
self.target.log.warning("Unknown drive letter for sysvol")
|
89
|
+
else:
|
90
|
+
self.target.log.warning("No sysvol drive found")
|
88
91
|
|
89
92
|
@export(property=True)
|
90
93
|
def hostname(self) -> Optional[str]:
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: dissect.target
|
3
|
-
Version: 3.18.
|
3
|
+
Version: 3.18.dev11
|
4
4
|
Summary: This module ties all other Dissect modules together, it provides a programming API and command line tools which allow easy access to various data sources inside disk images or file collections (a.k.a. targets)
|
5
5
|
Author-email: Dissect Team <dissect@fox-it.com>
|
6
6
|
License: Affero General Public License v3
|
@@ -253,7 +253,7 @@ dissect/target/plugins/os/unix/log/lastlog.py,sha256=Wq89wRSFZSBsoKVCxjDofnC4yw9
|
|
253
253
|
dissect/target/plugins/os/unix/log/messages.py,sha256=CXA-SkMPLaCgnTQg9nzII-7tO8Il_ENQmuYvDxo33rI,4698
|
254
254
|
dissect/target/plugins/os/unix/log/utmp.py,sha256=1nPHIaBUHt_9z6PDrvyqg4huKLihUaWLrMmgMsbaeIo,7755
|
255
255
|
dissect/target/plugins/os/windows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
256
|
-
dissect/target/plugins/os/windows/_os.py,sha256=
|
256
|
+
dissect/target/plugins/os/windows/_os.py,sha256=i9RPs99YD3KvZpAHAIuaQeGDy0nt5DIvfMbreqO_JIY,12723
|
257
257
|
dissect/target/plugins/os/windows/activitiescache.py,sha256=Q2aILnhJ2rp2AwEbWwyBuSLjMbGqaYJTsavSbfkcFKE,6741
|
258
258
|
dissect/target/plugins/os/windows/adpolicy.py,sha256=fULRFO_I_QxAn6G9SCwlLL-TLVliS13JEGnGotf7lSA,6983
|
259
259
|
dissect/target/plugins/os/windows/amcache.py,sha256=ZZNOs3bILTf0AGkDkhoatndl0j39DXkstN7oOyxJECU,27188
|
@@ -343,10 +343,10 @@ dissect/target/volumes/luks.py,sha256=OmCMsw6rCUXG1_plnLVLTpsvE1n_6WtoRUGQbpmu1z
|
|
343
343
|
dissect/target/volumes/lvm.py,sha256=wwQVR9I3G9YzmY6UxFsH2Y4MXGBcKL9aayWGCDTiWMU,2269
|
344
344
|
dissect/target/volumes/md.py,sha256=j1K1iKmspl0C_OJFc7-Q1BMWN2OCC5EVANIgVlJ_fIE,1673
|
345
345
|
dissect/target/volumes/vmfs.py,sha256=-LoUbn9WNwTtLi_4K34uV_-wDw2W5hgaqxZNj4UmqAQ,1730
|
346
|
-
dissect.target-3.18.
|
347
|
-
dissect.target-3.18.
|
348
|
-
dissect.target-3.18.
|
349
|
-
dissect.target-3.18.
|
350
|
-
dissect.target-3.18.
|
351
|
-
dissect.target-3.18.
|
352
|
-
dissect.target-3.18.
|
346
|
+
dissect.target-3.18.dev11.dist-info/COPYRIGHT,sha256=m-9ih2RVhMiXHI2bf_oNSSgHgkeIvaYRVfKTwFbnJPA,301
|
347
|
+
dissect.target-3.18.dev11.dist-info/LICENSE,sha256=DZak_2itbUtvHzD3E7GNUYSRK6jdOJ-GqncQ2weavLA,34523
|
348
|
+
dissect.target-3.18.dev11.dist-info/METADATA,sha256=mWlhvOaO7RcVbyJ0_fU7KHrnNaVL2vQ6a7uKhPvJ-kM,12723
|
349
|
+
dissect.target-3.18.dev11.dist-info/WHEEL,sha256=mguMlWGMX-VHnMpKOjjQidIo1ssRlCFu4a4mBpz1s2M,91
|
350
|
+
dissect.target-3.18.dev11.dist-info/entry_points.txt,sha256=tvFPa-Ap-gakjaPwRc6Fl6mxHzxEZ_arAVU-IUYeo_s,447
|
351
|
+
dissect.target-3.18.dev11.dist-info/top_level.txt,sha256=Mn-CQzEYsAbkxrUI0TnplHuXnGVKzxpDw_po_sXpvv4,8
|
352
|
+
dissect.target-3.18.dev11.dist-info/RECORD,,
|
File without changes
|
File without changes
|
{dissect.target-3.18.dev10.dist-info → dissect.target-3.18.dev11.dist-info}/entry_points.txt
RENAMED
File without changes
|
File without changes
|