|
|||||||||||
|
Re: Serverside script injection?
From: Marco Aldegheri <marco2(at)argentea.it>
Date: Mon Jan 13 2003 - 08:51:58 EST
I found an example "built to duplicate some of PHPs built in
functionality" is suggested in:
Public Sub VarsFromForm
For Each item In request.form
execute(item & "=""" & Replace(request.form(item), Chr(34),
Chr(34) & Chr(34)) & """")
Next
For Each item In request.QueryString
execute(item & "=""" & Replace(request.QueryString(item), Chr(34),
Chr(34) & Chr(34)) & """")
Next
End Sub
In a 'normal' use if the page is called like:
xyz.asp?a=1&b=2
If this page is called with a querystring like: xyz.asp?response.write%20Application("password"):Pippo=1 the command [response.write Application("password")] is executed and the value "1" is assigned to the variable Pippo ...
Best regards,
joh ket wrote:
This archive was generated by hypermail 2.1.8 : Wed Aug 23 2006 - 14:07:47 EDT |
||||||||||
|
|||||||||||