dissect.target 3.18.dev14__py3-none-any.whl → 3.18.dev15__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- dissect/target/plugins/os/windows/_os.py +11 -3
- {dissect.target-3.18.dev14.dist-info → dissect.target-3.18.dev15.dist-info}/METADATA +1 -1
- {dissect.target-3.18.dev14.dist-info → dissect.target-3.18.dev15.dist-info}/RECORD +8 -8
- {dissect.target-3.18.dev14.dist-info → dissect.target-3.18.dev15.dist-info}/COPYRIGHT +0 -0
- {dissect.target-3.18.dev14.dist-info → dissect.target-3.18.dev15.dist-info}/LICENSE +0 -0
- {dissect.target-3.18.dev14.dist-info → dissect.target-3.18.dev15.dist-info}/WHEEL +0 -0
- {dissect.target-3.18.dev14.dist-info → dissect.target-3.18.dev15.dist-info}/entry_points.txt +0 -0
- {dissect.target-3.18.dev14.dist-info → dissect.target-3.18.dev15.dist-info}/top_level.txt +0 -0
@@ -247,13 +247,21 @@ class WindowsPlugin(OSPlugin):
|
|
247
247
|
if any(map(lambda value: value is not None, version_parts.values())):
|
248
248
|
version = []
|
249
249
|
|
250
|
+
nt_version = _part_str(version_parts, "CurrentVersion")
|
251
|
+
build_version = _part_str(version_parts, "CurrentBuildNumber")
|
250
252
|
prodcut_name = _part_str(version_parts, "ProductName")
|
251
|
-
version.append(prodcut_name)
|
252
253
|
|
253
|
-
|
254
|
+
# CurrentBuildNumber >= 22000 on NT 10.0 indicates Windows 11.
|
255
|
+
# https://learn.microsoft.com/en-us/windows/release-health/windows11-release-information
|
256
|
+
try:
|
257
|
+
if nt_version == "10.0" and int(build_version) >= 22_000:
|
258
|
+
prodcut_name = prodcut_name.replace("Windows 10", "Windows 11")
|
259
|
+
except ValueError:
|
260
|
+
pass
|
261
|
+
|
262
|
+
version.append(prodcut_name)
|
254
263
|
version.append(f"(NT {nt_version})")
|
255
264
|
|
256
|
-
build_version = _part_str(version_parts, "CurrentBuildNumber")
|
257
265
|
ubr = version_parts["UBR"]
|
258
266
|
if ubr:
|
259
267
|
build_version = f"{build_version}.{ubr}"
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: dissect.target
|
3
|
-
Version: 3.18.
|
3
|
+
Version: 3.18.dev15
|
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
|
@@ -255,7 +255,7 @@ dissect/target/plugins/os/unix/log/lastlog.py,sha256=Wq89wRSFZSBsoKVCxjDofnC4yw9
|
|
255
255
|
dissect/target/plugins/os/unix/log/messages.py,sha256=CXA-SkMPLaCgnTQg9nzII-7tO8Il_ENQmuYvDxo33rI,4698
|
256
256
|
dissect/target/plugins/os/unix/log/utmp.py,sha256=1nPHIaBUHt_9z6PDrvyqg4huKLihUaWLrMmgMsbaeIo,7755
|
257
257
|
dissect/target/plugins/os/windows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
258
|
-
dissect/target/plugins/os/windows/_os.py,sha256=
|
258
|
+
dissect/target/plugins/os/windows/_os.py,sha256=Iu-xgEqtkycx1yDx4b_GL29pSz1Lew7lUYCByBOmTOE,13127
|
259
259
|
dissect/target/plugins/os/windows/activitiescache.py,sha256=Q2aILnhJ2rp2AwEbWwyBuSLjMbGqaYJTsavSbfkcFKE,6741
|
260
260
|
dissect/target/plugins/os/windows/adpolicy.py,sha256=fULRFO_I_QxAn6G9SCwlLL-TLVliS13JEGnGotf7lSA,6983
|
261
261
|
dissect/target/plugins/os/windows/amcache.py,sha256=ZZNOs3bILTf0AGkDkhoatndl0j39DXkstN7oOyxJECU,27188
|
@@ -345,10 +345,10 @@ dissect/target/volumes/luks.py,sha256=OmCMsw6rCUXG1_plnLVLTpsvE1n_6WtoRUGQbpmu1z
|
|
345
345
|
dissect/target/volumes/lvm.py,sha256=wwQVR9I3G9YzmY6UxFsH2Y4MXGBcKL9aayWGCDTiWMU,2269
|
346
346
|
dissect/target/volumes/md.py,sha256=j1K1iKmspl0C_OJFc7-Q1BMWN2OCC5EVANIgVlJ_fIE,1673
|
347
347
|
dissect/target/volumes/vmfs.py,sha256=-LoUbn9WNwTtLi_4K34uV_-wDw2W5hgaqxZNj4UmqAQ,1730
|
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.
|
353
|
-
dissect.target-3.18.
|
354
|
-
dissect.target-3.18.
|
348
|
+
dissect.target-3.18.dev15.dist-info/COPYRIGHT,sha256=m-9ih2RVhMiXHI2bf_oNSSgHgkeIvaYRVfKTwFbnJPA,301
|
349
|
+
dissect.target-3.18.dev15.dist-info/LICENSE,sha256=DZak_2itbUtvHzD3E7GNUYSRK6jdOJ-GqncQ2weavLA,34523
|
350
|
+
dissect.target-3.18.dev15.dist-info/METADATA,sha256=pRN634Yl_-MZVraWNkNflgF-LUz4LB7RgBf8oCGiKDw,12719
|
351
|
+
dissect.target-3.18.dev15.dist-info/WHEEL,sha256=mguMlWGMX-VHnMpKOjjQidIo1ssRlCFu4a4mBpz1s2M,91
|
352
|
+
dissect.target-3.18.dev15.dist-info/entry_points.txt,sha256=tvFPa-Ap-gakjaPwRc6Fl6mxHzxEZ_arAVU-IUYeo_s,447
|
353
|
+
dissect.target-3.18.dev15.dist-info/top_level.txt,sha256=Mn-CQzEYsAbkxrUI0TnplHuXnGVKzxpDw_po_sXpvv4,8
|
354
|
+
dissect.target-3.18.dev15.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
{dissect.target-3.18.dev14.dist-info → dissect.target-3.18.dev15.dist-info}/entry_points.txt
RENAMED
File without changes
|
File without changes
|