[<prev] [next>] [day] [month] [year] [list]
Message-Id: <200904121750.n3CHot8n018633@www3.securityfocus.com>
Date: Sun, 12 Apr 2009 11:50:55 -0600
From: mefuentes61@...mail.com
To: bugtraq@...urityfocus.com
Subject: Re: Critical SQL Injection PHPNuke <= 7.8 - Your_Account module
In my index.php I have this code:
function confirmNewUser($username, $user_email, $user_password, $user_password2, $random_num, $gfx_check) {
global $stop, $EditedMessage, $sitename, $module_name, $minpass;
include("header.php");
include("config.php");
$username = substr(htmlspecialchars(str_replace("\'", "'", trim($username))), 0, 25);
$username = rtrim($username, "\\");
$username = str_replace("'", "\'", $username);
$user_email = filter($user_email, "nohtml");
$user_viewemail = "0";
userCheck($username, $user_email);
$user_email = validate_mail($user_email);
$user_password = htmlspecialchars(stripslashes($user_password));
$user_password2 = htmlspecialchars(stripslashes($user_password2));
I think this SQL Injection donīt work in my site. Thatīt right?
Powered by blists - more mailing lists