Probably, but the default Snitz isn't vulnerable to that type of attack. Replacing numerical values (with the exception of
. To eliminate the error message report from
Search for the following lines (appx 141-143):
case "display" '## Display Profile
if strDBNTUserName = "" then
Between them, insert these:
If Request("id") > "" Then
If Not IsNumeric(Request("id")) Then Response.Redirect "default.asp"
If (IsNumeric(Request("id")) And Request("id") < 1) Then Response.Redirect "default.asp"
End If