Fixed column name on sql injection lesson 6
This commit is contained in:
parent
4e07e0ebfa
commit
9a0995dae5
@ -2,9 +2,9 @@
|
||||
|
||||
The query in the code builds a dynamic query as seen in the previous example. The query in the code builds a dynamic query by concatenating strings making it susceptible to String SQL injection:
|
||||
|
||||
-------------------------------------------------------
|
||||
"select * from users where name = ‘" + userName + "'";
|
||||
-------------------------------------------------------
|
||||
------------------------------------------------------------
|
||||
"select * from users where LAST_NAME = ‘" + userName + "'";
|
||||
------------------------------------------------------------
|
||||
|
||||
Using the form below try to retrieve all the users from the users table. You shouldn't need to know any specific user name to get the complete list, however you can use 'Smith' to see the data for one user.
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user