A tool that takes over Windows Updates to craft custom downgrades and expose past fixed vulnerabilities. Presented at Black Hat USA 2024 Briefings and DEFCON 32 under the title “Windows Downdate: Downgrade Attacks Using Windows Updates”.
Using Windows Downdate you can downgrade critical OS components, DLLs, Drivers, the NT kernel, the Secure Kernel, the Hyper-V hypervisor, Credential Guard and much more!
To install Windows Downdate, follow the steps below.
python311 setup.py install Windows Downdate also supports PyInstaller pre-compiled binary that you can download here
Windows Downdate operates on a config XML file that specifies the files to downgrade
windows_downdate.py --config-xml <CONFIG XML PATH> <ADDITIONAL ARGS> <Configuration>
<UpdateFilesList>
<UpdateFile source="path\to\source.exe" destination="path\to\destination.exe" />
</UpdateFilesList>
</Configuration> <Configuration>: The root element that encapsulates the entire configuration.
<UpdateFilesList>: A container element that holds one or more elements.
<UpdateFile>: Defines a single file downgrade operation.
source: The path of the downgrade source file. Note that if the source file does not exist, Windows Downdate attempts to retrieve its base version from the component store.
destination: The path of the downgrade destination file.
Simply put – take the XML snippet and insert <UpdateFile> elements, the source replaces the destination.
You can also refer to the examples directory as reference for finalized config XML files.
Windows Downdate supports two execution options.
Windows Downdate supports crafting custom downgrades. To craft custom downgrade, you need to create a config XML file and just feed the tool with this config XML.
Windows Downdate has built-in usage examples with ready config XML files and vulnerable modules. The supported usage examples are listed below.
The groupdel command in Linux removes a group from the system. It deletes the group's entry from /etc/group and /etc/gshadow,…
The wc command in Linux counts lines, words, characters, and bytes in files or standard input. It…
The top command in Linux provides a real-time view of running processes and system resource usage. From…
The usermod command in Linux modifies existing user account attributes. You can use it to manage group…
The sort command in Linux reads lines from files or standard input and writes them to standard…
The wall command in Linux sends a message to the terminals of all currently logged-in users. The…