Skip to content

Commit d6609ae

Browse files
committed
Sorted win list
1 parent 71b5742 commit d6609ae

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

nxc/modules/CVE-2025-33073.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ class NXCModule:
1515
# Reference table from MSRC report
1616
# https://msrc.microsoft.com/update-guide/fr-FRS/vulnerability/CVE-2025-33073
1717
MSRC_PATCHES = { # key = (major, minor, build), value = minimum patched UBR
18-
(6, 3, 9600): 22620, # Windows Server 2012 R2
19-
(6, 2, 9200): 25522, # Windows Server 2012
20-
(6, 1, 7601): 27769, # Windows Server 2008 R2 SP1
2118
(6, 0, 6003): 23351, # Windows Server 2008 SP2
19+
(6, 1, 7601): 27769, # Windows Server 2008 R2 SP1
20+
(6, 2, 9200): 25522, # Windows Server 2012
21+
(6, 3, 9600): 22620, # Windows Server 2012 R2
2222
(10, 0, 14393): 8148, # Windows Server 2016
2323
(10, 0, 17763): 7434, # Windows Server 2019 / Win10 1809
2424
(10, 0, 20348): 3807, # Windows Server 2022
@@ -31,7 +31,7 @@ def __init__(self, context=None, module_options=None):
3131
self.module_options = module_options
3232

3333
def options(self, context, module_options):
34-
"""No options"""
34+
"""No options available"""
3535

3636
def is_vulnerable(self, major, minor, build, ubr):
3737
key = (major, minor, build)

0 commit comments

Comments
 (0)