Advertisement






XSS bugs and SQL injection in sNews

CVE Category Price Severity
CWE-79 (Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')) / CWE-89 (Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection')) $500 High
Author Risk Exploitation Type Date
Unknown High Remote 2006-02-15
CVSS EPSS EPSSP
CVSS:4.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H 0.02192 0.50148

CVSS vector description

Our sensors found this exploit at: http://cxsecurity.com/ascii/WLB-2006020040

Below is a copy:

Official page : http://www.solucija.com/home/snews/

XSS in comments :

just post some comment with <script>alert('XSS TEST by
securitydot.net');</script>

FIX : put this on 423 line
$r = str_replace ("<","<",$r);
$r = str_replace (">","&lg",$r);

Injection through categories : index.php?category=1%20or%201=2

FIX : put this on 313 line
if (ereg('^[0-9]*$' , $category))

Injection through id : index.php?id=0%20or%201=2

FIX : put this on 175 line
if (ereg('^[0-9]*$' , $id)) {

--
Securitydot.net
joffer and DrFrancky

Copyright ©2024 Exploitalert.

This information is provided for TESTING and LEGAL RESEARCH purposes only.
All trademarks used are properties of their respective owners. By visiting this website you agree to Terms of Use and Privacy Policy and Impressum