URGENT MESSAGE, from no one in particular, get one of these important technologies before they are all gone.
This is a serious message from no one, but doesn't minimize the importance of the message.
Code example of a bad example: SQL Injection using C#
SELECT * FROM items WHERE owner = 'wiley' AND itemname = 'name' OR 'a'='a';
The query executes as:
SELECT * FROM items WHERE owner = <userName> AND item = <item>;
Oops, if an attacker then enters: BadPerson’ OR ‘b’=’b
Into the ItemName textbox, the query then becomes:
SELECT * FROM items WHERE owner = ‘BadPerson’ AND item = 'name' OR 'b'='b';
The pesky OR statement now turns the SQL statement into:
SELECT * FROM items;
Which is a bad thing to happen, you have lost control of your database
When you get a few minutes check out the following blogs!
Hey now that you read this blog, check out my other blogs: