Tagged Questions
SQL injection is a code injection technique that exploits a security vulnerability occurring in the database layer of an application, such as queries.
341
votes
18answers
50k views
Best way to stop SQL Injection in PHP
So specifically in a mysql database. Take the following code and tell me what to do.
// connect to the mysql database
$unsafe_variable = $_POST["user-input"];
mysql_query("INSERT INTO table ...
131
votes
13answers
12k views
XKCD SQL injection - please explain
Just looking at:
(Source: http://xkcd.com/327/)
What does this SQL do:
Robert'); DROP
TABLE STUDENTS; --
I know both ' and -- are for comments, but doesn't the word DROP get commented as well ...
129
votes
9answers
40k views
What's the best method for sanitizing user input with PHP?
Is there a catchall function somewhere that works well for sanitizing user input for sql injection and XSS attacks, while still allowing certain types of html tags?
60
votes
27answers
7k views
What is the best way to avoid SQL injection attacks?
I've provided a solution for Python... please flesh this out with examples for other languages.
56
votes
21answers
2k views
Avoiding SQL injection without parameters
We are having another discussion here at work about using parametrized sql queries in our code. We have two sides in the discussion: Me and some others that say we should always use parameters to ...
53
votes
12answers
5k views
Are Parameters really enough to prevent Sql injections?
I've been preaching both to my colleagues and here on SO about the goodness of using parameters in SQL queries, especially in .NET applications. I've even gone so far as to promise them as giving ...
44
votes
4answers
2k views
What is this hacker trying to do?
If you do a search for:
http://www.google.co.uk/search?q=0x57414954464F522044454C4159202730303A30303A313527&hl=en&start=30&sa=N
you will see a lot of examples of an attempted hack along ...
43
votes
5answers
11k views
Do htmlspecialchars and mysql_real_escape_string keep my PHP code safe from injection?
Earlier today a question was asked regarding input validation strategies in web apps.
The top answer, at time of writing, suggests in PHP just using htmlspecialchars and mysql_real_escape_string.
...
37
votes
5answers
8k views
Are PDO prepared statements sufficient to prevent SQL injection?
Let's say I have code like this:
$dbh = new PDO("blahblah");
$stmt = $dbh->prepare('SELECT * FROM users where username = :username');
$stmt->execute( array(':username' => ...
33
votes
19answers
10k views
Can I protect against SQL Injection by escaping single-quote and surrounding user input with single-quotes?
I realize that parameterized SQL queries is the optimal way to sanitize user input when building queries that contain user input, but I'm wondering what is wrong with taking user input and escaping ...
32
votes
13answers
5k views
Penetration testing tools
We have hundreds of websites which were developed in asp, .net and java and we are paying lot of money for an external agency to do a penetration testing for our sites to check for security loopholes. ...
29
votes
3answers
5k views
Does mysql_real_escape_string() FULLY protect against SQL injection?
On http://www.justinshattuck.com/2007/01/18/mysql-injection-cheat-sheet/?akst_action=share-this , there is a section that claims you can bypass mysql_real_escape_string with certain Asian character ...
27
votes
9answers
8k views
26
votes
4answers
950 views
Can someone explain this SQL injection attack to me?
I wanted to post this here as it is very much coding related and was something I had to clean up this week on one of my company's old ASP (classic) sites.
We got hit with the SQL injection attack ...
26
votes
4answers
486 views
Reference: What is a perfect code sample using the mysql extension?
This is to create a community learning resource. The goal is to have examples of good code that do not repeat the awful mistakes that can so often be found in copy+pasted PHP code. I have requested ...
25
votes
5answers
2k views
Someone has hacked my database - how did this guy do it?
Someone has hacked my database and has dropped the table :(.
In my PHP page there is one single query where I am using mysql_real_escape_string:
$db_host="sql2.netsons.com";
$db_name="xxx";
...
24
votes
14answers
4k views
When is it Best to Sanitize User Input?
User equals untrustworthy. Never trust untrustworthy user's input. I get that. However, I am wondering when the best time to sanitize input is. For example, do you blindly store user input and then ...
23
votes
8answers
24k views
Java - escape string to prevent SQL injection
I'm trying to put some anti sql injection in place in java and am finding it very difficult to work with the the "replaceAll" string function. Ultimately I need a function that will convert any ...
23
votes
11answers
2k views
Do stackoverflow users agree with the CWE/SANS Top 25 most dangerous programming mistakes?
Report released today on the "top 25" most dangerous programming mistakes. I'm interested to see if any here agree or can spot any glaring omissions (or outdated inclusions).
Also, in your opinion ...
19
votes
19answers
2k views
Is SQL injection a risk today?
I've been reading about SQL injection attacks and how to avoid them, although I can never seem to make the "awful" examples given work, e.g. this post
...
18
votes
5answers
486 views
Is there anything that can be put after the “ORDER BY” clause that can pose a security risk?
Basically, what I want to do is this:
mysql_query("SELECT ... FROM ... ORDER BY $_GET[order]")
They can obviously easily create a SQL error by putting non-sense in there, but mysql_query only ...
17
votes
6answers
4k views
Site has been hacked via SQL Injection
Recently my site was hacked via SQL injection. The Hacker used the following query
to get my DB name. I cannot understand this query they wrote.
Query:
...
16
votes
3answers
587 views
Delphi - prevent against SQL injection
I need to protect an application from SQL injection. Application is connecting to Oracle, using ADO, and search for the username and password to make the authentication.
From what I've read until ...
16
votes
4answers
4k views
Parameterized Queries with LIKE and IN conditions
Parameterized Queries in .Net always look like this in the examples:
SqlCommand comm = new SqlCommand("SELECT * FROM Products WHERE Category_ID=@categoryid", conn);
...
15
votes
4answers
265 views
Does using parameterized SqlCommand make my program immune to SQL injection?
I'm aware that SQL injection is rather dangerous. Now in my C# code I compose parameterized queries with SqlCommand class:
SqlCommand command = ...;
command.CommandText = "SELECT * FROM Jobs WHERE ...
15
votes
1answer
361 views
SQL Injection Detection - Have compiled regexes… looking for test injections
Over the weekend I've compiled a list of regexs to check for sql injections in GET, POST and COOKIE super globals. They are by all accounts very effective in detecting if a sql injection is found. ...
15
votes
7answers
1k views
Found a weak escape function for MySql, how to exploit?
In an application I'm working on I've found a weak escape function to prevent injection. I'm trying to prove this, but I'm having trouble coming up with a simple example.
The escape function works as ...
15
votes
7answers
1k views
Am I immune to SQL injections if I use stored procedures?
Lets say on MySQL database (if it matters).
13
votes
4answers
165 views
Escaping user input from database necessary?
So I know about MySQL injection and always escape all my user input before putting it in my database. However I was wondering, imagine a user tries to submit a query to inject, and I escape it. What ...
13
votes
8answers
593 views
Bad Code: Why is this dangerous? [closed]
Possible Duplicate:
Can I protect against SQL Injection by escaping single-quote and surrounding user input with single-quotes?
String badInput = rawInput.replace("'","''");
...
13
votes
7answers
10k views
SQL injection on INSERT
I have created a small survey web page on our company Intranet. This web page is not accessible from the outside.
The form is simply a couple of radio buttons and a comments box.
I would like to ...
13
votes
6answers
1k views
Attempted SQL injection attack - what are they trying to do?
I have a public facing website that has been receiving a number of SQL injection attacks over the last few weeks. I exclusively use parameterised stored procedures so I believe that there has been no ...
13
votes
2answers
3k views
Does LINQ's ExecuteCommand provide protection from SQL injection attacks?
I've got a situation where I need to use LINQ's ExecuteCommand method to run an insert.
Something like (simplified for purposes of this question):
object[] oParams = { Guid.NewGuid(), ...
12
votes
6answers
195 views
Can parameterized statement stop all SQL injection?
if yes, why there are still so many successful SQL injections? Just because some developers are too dumb to use parameterized statements? Thanks,
12
votes
9answers
610 views
Are there any differences between SQL Server and MySQL when it comes to preventing SQL injection?
I am used to developing in PHP/MySQL and have no experience developing with SQL Server. I've skimmed over the PHP MSSQL documentation and it looks similar to MySQLi in some of the methods I read ...
12
votes
12answers
706 views
How to notify someone that their website is vulnerable to SQL injection?
Original question:
An affiliate partner of us has a website that is vulnerable to SQL-injection.
We noticed this by accident (typo in an URL triggered an enormously informative error page).
Now we ...
12
votes
6answers
11k views
Ways to prevent SQL Injection Attack & XSS in Java Web Application
I'm writing a java class which would be invoked by a servlet filter and which checks for injection attack attempts and XSS for a java web application based on Struts. The InjectionAttackChecker class ...
12
votes
6answers
1k views
Do you have any SQL Injection Testing “Ammo”?
When reading about SQL Injection and XSS i was wondering if you guys have a single string that could be used to identify those vulnerabilities and others.
A string that could be thrown into a website ...
11
votes
2answers
5k views
Examples of SQL Injections through addslashes()?
In PHP, I know that mysql_real_escape in much safer than using addslashes.
However, I could not find an example of a situation where addslashes would let an SQL Injection happen.
Can anyone give some ...
11
votes
15answers
1k views
Is there some way to inject SQL even if the ' character is deleted?
If from an SQL query I remove all the ' characters, is there some other way to do an SQL injection attack on the database?
How can it be done? Can anyone give me examples?
10
votes
4answers
500 views
How to prevent SQL injection with dynamic tablenames?
I had this discussion with a high rep php guy:
PDO has no use here. as well as mysql_real_escape_string.
extremely poor quality.
This of course is cool, but I honestly don't know what's wrong ...
10
votes
4answers
1k views
Testing for security vulnerabilities in web applications: Best practices?
I'm developing a web application. Like, a proper one, I've used things like Joomla in the past to make awesome stuff but have now finally got my hands dirty with PHP, MySQL and CodeIgniter.
When ...
10
votes
13answers
420 views
Are sql injection attacks only a threat on a page that has a form?
I know it's a simple question, but in everything I've read, I've never seen this spelled out specifically.
If you do a query on a page, do you need to worry about SQL injection attacks? Or is it only ...
10
votes
11answers
2k views
What are all of the allowable characters for people's names?
There are the standard A-Z, a-z characters, but also there are hyphens, em dashes, quotes, etc.
Plus, there are all of the international characters, like umlauts, etc.
So, for an English-based ...
10
votes
9answers
9k views
Classic ASP SQL Injection Protection
What is a strong way to protect against sql injection for a classic asp app?
FYI I am using it with an access DB. (I didnt write the app)
9
votes
4answers
522 views
SQL injection that gets around mysql_real_escape_string()
Is there an SQL injection possibility even when using mysql_real_escape_string() function?
Consider this sample situation. SQL is constructed in PHP like this:
$login = ...
9
votes
5answers
419 views
How should be test with phpunit for xss + sql injection?
How should be test with phpunit php web application for xss + sql injection?
I thinking to find program that output xss+ other attacks to test my application forms.
This program/service should be all ...
9
votes
5answers
306 views
Does using preparedStatement mean there will not be any SQL Injection?
I have read that to prevent SQL Injection one must use PreparedStatement.
Does that mean if i am using perparedStatement then no one can perform SQL Injection in any of my page? Is it foolproof ...
9
votes
12answers
726 views
How do I protect this function from SQL injection?
public static bool TruncateTable(string dbAlias, string tableName)
{
string sqlStatement = string.Format("TRUNCATE TABLE {0}", tableName);
return ExecuteNonQuery(dbAlias, sqlStatement) > 0;
}
9
votes
13answers
2k views
What is SQL injection? [closed]
Possible Duplicates:
XKCD SQL injection - please explain
http://stackoverflow.com/search?q=sql+injection
Can someone explain SQL injection? How does it cause vulnerabilities? Where ...