CVE-2025-13182

3.5 LOW

📋 TL;DR

This vulnerability allows attackers to inject malicious scripts via the Title parameter in the pojoin h3blog 1.0 CMS category management interface. Successful exploitation enables cross-site scripting attacks that can steal session cookies, redirect users, or deface websites. Only users of pojoin h3blog 1.0 are affected.

💻 Affected Systems

Products:
  • pojoin h3blog
Versions: 1.0
Operating Systems: All
Default Config Vulnerable: ⚠️ Yes
Notes: Only affects the admin interface at /admin/cms/category/addtitle

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Attackers steal administrator session cookies, gain full administrative access to the CMS, and potentially compromise the entire web server.

🟠

Likely Case

Attackers deface the website, redirect users to malicious sites, or steal user session data from visitors.

🟢

If Mitigated

With proper input validation and output encoding, the attack is prevented and no impact occurs.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

Public PoC: ⚠️ Yes
Weaponized: LIKELY
Unauthenticated Exploit: ✅ No
Complexity: LOW

Exploit requires admin access to reach vulnerable endpoint

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Unknown

Vendor Advisory: None found

Restart Required: No

Instructions:

No official patch available. Consider upgrading to a newer version if available or implementing workarounds.

🔧 Temporary Workarounds

Input Validation Filter

all

Add server-side validation to sanitize Title parameter input

Implement input validation in /admin/cms/category/addtitle to strip or encode HTML/JavaScript tags

Output Encoding

all

Apply proper output encoding when displaying Title values

Use HTML entity encoding (e.g., htmlspecialchars in PHP) when outputting Title values

🧯 If You Can't Patch

  • Restrict access to /admin/cms/category/addtitle endpoint using IP whitelisting or authentication requirements
  • Implement a Web Application Firewall (WAF) with XSS protection rules

🔍 How to Verify

Check if Vulnerable:

Test if Title parameter accepts and executes JavaScript payloads like <script>alert('XSS')</script>

Check Version:

Check CMS version in admin panel or configuration files

Verify Fix Applied:

Verify that JavaScript payloads in Title parameter are properly sanitized and do not execute

📡 Detection & Monitoring

Log Indicators:

  • Unusual POST requests to /admin/cms/category/addtitle with script tags in parameters
  • Multiple failed login attempts followed by successful admin login

Network Indicators:

  • HTTP requests containing <script> tags in POST body to vulnerable endpoint

SIEM Query:

source="web_logs" AND uri="/admin/cms/category/addtitle" AND (body CONTAINS "<script>" OR body CONTAINS "javascript:")

🔗 References

📤 Share & Export