我有一个简单的.aspx登录网站,我使用OleDB进行本地验证。
这是我的问题:找到SQL Injection漏洞后,我决定使用参数。但在使用参数后,我的响应始终为“0”(与“Authenticated = false”相同)。但是如果我不使用参数,我的响应是“1”(与“Authenticated = true”相同)。
这里有一些调试时的照片:
没有参数,其中response = 1(Authenticated):
使用代码:
string idstr = Request.QueryString["id"];
idstr.Replace("''", "");
string passpath = Request.QueryString["password"];
passpath.Replace("''", "");
OleDbConnection connect = new OleDbConnection();
OleDbCommand cmd = new OleDbCommand();
connect.ConnectionString = @"Provider=Microsoft.ACE.OLEDB.12.0; Data Source= C:\Users\hugow_000\Desktop\OSGS_Kantine_htm_design\Kantine_data.accdb; Persist Security Info = False;";
cmd.Connection = connect;
connect.Open();
cmd.CommandText = "select * from User_data where Stamnummer="+idstr+" and Wachtwoord="+ passpath;
OleDbDataReader read = cmd.ExecuteReader();
int code = 0;
while (read.Read())
{
code = code + 1;
}
if (code == 1)
{
Response.Redirect("~/AuthKeyGEN.aspx?Auth=true&id=" + idstr + "&password=" + passpath + "");
}
if (code > 1)
{
Response.Redirect("~/Login.aspx?response=0");
}
if (code < 1)
{
Response.Redirect("~/Login.aspx?response=0");
}
}
并使用代码:
string idstr = Request.QueryString["id"];
idstr.Replace("''", "");
string passpath = Request.QueryString["password"];
passpath.Replace("''", "");
OleDbConnection connect = new OleDbConnection();
OleDbCommand cmd = new OleDbCommand();
connect.ConnectionString = @"Provider=Microsoft.ACE.OLEDB.12.0; Data Source= C:\Users\hugow_000\Desktop\OSGS_Kantine_htm_design\Kantine_data.accdb; Persist Security Info = False;";
cmd.Connection = connect;
connect.Open();
cmd.CommandText = "select * from User_data where Stamnummer=@idstr and Wachtwoord=@passpath";
cmd.Parameters.Add("@idstr", OleDbType.BSTR).Value = idstr;
cmd.Parameters.Add("@passpath", OleDbType.BSTR).Value = passpath;
OleDbDataReader read = cmd.ExecuteReader();
int code = 0;
while (read.Read())
{
code = code + 1;
}
if (code == 1)
{
Response.Redirect("~/AuthKeyGEN.aspx?Auth=true&id=" + idstr + "&password=" + passpath + "");
}
if (code > 1)
{
Response.Redirect("~/Login.aspx?response=0");
}
if (code < 1)
{
Response.Redirect("~/Login.aspx?response=0");
}
}
我在两种情况下使用相同的凭据, 那么,如果我在这里使用参数,为什么我的响应始终为0?
提前致谢!
答案 0 :(得分:0)
看起来没有错,但尝试使用OleDbType.VarChar
代替OleDbType.BSTR
,因为这两个参数都属于string
类型;像
cmd.Parameters.Add("@idstr", OleDbType.VarChar).Value = idstr;
cmd.Parameters.Add("@passpath", OleDbType.VarChar).Value = passpath;
另外,请注意,不要使用select *
使用count()
查询,如下所示,您可以使用ExecuteScalar()
而非使用ExecuteReader()
"select count(*) from User_data
where Stamnummer=@idstr and Wachtwoord=@passpath";
答案 1 :(得分:0)
Access女士使用?作为参数占位符和订单很重要(您的订单是正确的)。可以将参数对象命名为引擎忽略的名称,因此它无关紧要,但可能会使代码更易读。请参阅OleDbCommand.Parameters作为参考。
cmd.CommandText = "select 1 from User_data where Stamnummer = ? and Wachtwoord= ?";
同样更改@Rahul指出VarChar
的参数类型。
ExecuteScalar
代替ExecuteReader。使用COUNT(*)或hardcode 1作为结果:select 1 from User_data ...