现在我在下面有一个示例 ASP 脚本:
<%Set objConn = CreateObject("ADODB.Connection")
objConn.Open Application("WebUsersConnection")
sSQL="SELECT * FROM Users where Username=? & Request("user") & _"?and Password=? & Request("pwd") & "?
Set RS = objConn.Execute(sSQL)
If RS.EOF then
Response.Redirect("login.asp?msg=Invalid Login")
Else
Session.Authorized = True
Set RS = nothing
Set objConn = nothing Response.Redirect("mainpage.asp")
End If%>
请问这个脚本会导致什么样的SQL注入?执行的结果是什么,以及任何可以使用上述脚本注入应用程序的示例 SQL?它是从纸上提取的。谢谢