Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
🤖 Automated Content Update
This PR was automatically generated by the HackTricks News Bot based on a technical blog post.
📝 Source Information
🎯 Content Summary
Title / Purpose
SharpPXE is a C# red-team tool that extracts sensitive deployment/configuration data from Microsoft SCCM (ConfigMgr) PXE boot infrastructure by emulating a PXE client. It connects to a PXE-enabled Distribution Point (DP), harvests PXE boot media metadata, downloads the encrypted boot media configuration, and either decrypts it (when a key is provided) or outputs a crackable hash for offline password recovery.
No admin privileges required on the attack...
🔧 Technical Details
A PXE-harvesting technique against SCCM PXE infrastructure: send a PXE boot request to the SCCM PXE service on UDP/4011, parse the PXE response to obtain boot file locations (e.g.,
SMSBoot\x64\pxe\variables.dat,SMSBoot\x64\pxe\boot.bcd) and sometimes a decryption key, then retrieve the encrypted variables file via TFTP. If key material is provided, decrypt variables.dat and parse the resulting XML to extract SCCM deployment parameters (Management Point URL, site code, Media GUIDs, identifiers). If no key is provided (password-protected media), extract an offline-crackable hash (example format$sccm$aes128$<hash>) for Hashcat, then decrypt and parse after password recovery.🤖 Agent Actions
Updated SCCM Management Point relay page with a new PXE boot media harvesting section: added SharpPXE workflow (PXE/UDP 4011 request parsing, TFTP retrieval of variables.dat, decrypt vs. Hashcat hash path, XML parsing and SharpSCCM follow-up), clarified requirements, expanded detection/hardening with PXE/TFTP monitoring controls, and included SharpPXE in references.
This PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.