[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Aenovo Multiple Vulnerabilities (Patch)
- To: bugtraq@xxxxxxxxxxxxxxxxx
- Subject: Re: Aenovo Multiple Vulnerabilities (Patch)
- From: ali202@xxxxxxxxxxxxxx
- Date: 16 Oct 2005 17:17:55 -0000
Patch :
[1]
In "user/control.asp"
Find this :
---------------------------------
pword = Trim(request("password"))
---------------------------------
Replace with this:
---------------------------------
pword = replace(Trim(request("password")),"'","''")
---------------------------------
[2]
In "incs\searchdisplay.asp"
Find this:
---------------------------------
strSQL = request("strSQL")
---------------------------------
Replace with this:
---------------------------------
strSQL = ""
---------------------------------
<ali202>