0
votes
1answer
17 views

Will ExecutionEngine.execute(String,Map<String,Object>) prevent “NoSQL Injection Attacks”?

So, I've used PrepareStatements in SQL based databases via JDBC to prevent against SQL injection attacks. I want to know if using Neo4J's Java API ...
2
votes
3answers
50 views

PDO, Prepared statements and SQL-Injection again

After reading several articles about PDO and MySQLi prepared statements, also already read tens of questions concerning prepared statements and SQL injection on stackoverflow.com , people were saying ...
0
votes
2answers
38 views

Avoid SQL Injection in query using dynamically loaded tables and database names

I'm developing a system to manage in a very simple way some tables in the database. The system first loads with Ajax the databases the user can see and manage. Then load the tables in that database ...
0
votes
2answers
60 views

PHP Prepare Statements - Query returns true but it is not updating in sql table

I am trying to learn how to make my PHP code more secure from SQL Injections, and currently trying prepared statements but I'm having a bit of trouble making this work. I was getting thrown the ...
0
votes
2answers
32 views

The difference between emulated prepares and direct prepare calls?

Is database still vulnerable to SQL injection with prepare statements, like in the following example (I'm using PDO and php version 5.3): $unsafe = $_POST['user_input']; $stmt = ...
-1
votes
1answer
55 views

Feedback on my first prepared statement [closed]

I've just completed my first prepared statement, converted to using them for security reasons. I've tested it and it works however I am looking for feedback (constructive criticism welcomed) regarding ...
1
vote
1answer
96 views

Dynamically adding columns for SQL PreparedStatement - still safe against injection?

I am trying to prevent SQL injection in my Java program. I want to use PreparedStatements to do this, but I don't know the number of columns or their names in advance (the program allows ...
4
votes
2answers
260 views

Understanding Prepared Statements - PHP

I am working on a school project for the finacial aid office at a university. The project is in production and have most of it done apart from a few little tweaks here and there. My main concern over ...
3
votes
2answers
358 views

Switching mySQL insert and update statements to PDO prepared statements to prevent SQL injection

I'm trying to switch these mySQl INSERT INTO and Update statements to PDO prepared statements (primarily to prevent SQL Injection), but I'm having some difficulty getting the syntax right. I’m ...
-2
votes
1answer
178 views

SQL injection - how to use preparedstatement in java

i have a SQL which is dynamically build,the following is the query : private String constructTownSearchQuery(String country, String stateName,String districtName,String townName) { ...
2
votes
1answer
447 views

Preventing SQL Injection in JDBC without using Prepared Statements

I am aware that using Prepared Statements is the best way to protect against SQL Injection (and syntax errors due to unescaped characters in unchecked input). My current situation is that I am ...
2
votes
1answer
687 views

mysqli prepared statement , how to loop the result set

I was researching about mysqli prepared statements and i have 2 questions about it. As i was reading, i figure out that the order of execution of a prepared statement looks something like the ...
0
votes
2answers
183 views

SQL Injection Guide In Java (or any other language)

I have a jsp code which has a query like 'select * from MyTable where Column1='+request.getParameter('q'), which is executed from a java.sql.Statement. Now, provided we can append the query by ...
0
votes
2answers
102 views

SQL injection: why doesn't everyone use prepared statements? [closed]

I'm currently writing for my study about SQL injection and can't find an answer to the following question: why doesn't everyone use prepared statements? After my current research, its the best way to ...
-1
votes
1answer
33 views

PDO When do i need to parametire my queries?

So I am using PDO to try and be safe against SQL injections. My question is should I check/verify my database information before using it? For example: $stmt = $pdo -> prepare(SELECT userID FROM ...
5
votes
3answers
399 views

PHP: using prepared statements and protecting against SQL injection vs escape

I do understand that the prepared statements is the ultimate way to seek protection against the SQL injection. However, they provide coverage in a limited fashion; for example, in cases where I let ...
1
vote
2answers
192 views

MySQL prepared statements do I still need to use mysql_escape_string

Do I still need to use mysql_escape_string to avoid SQL Injection attacks if I am using prepared statements in MySQL 5.3?
-2
votes
2answers
117 views

is this sample sql statement considered parameterized and therefore safe?

$dbh->prepare("INSERT INTO whatever (col1,col2) values (%d,%s)",$_GET['unescaped_and_unfiltered_col1_value'],$_GET['unescaped_and_unfiltered_col2_value']); How is the above method any different ...
0
votes
2answers
304 views

EJB3 SQL Injection

I would like to know how safe is EJB3 to prevent SQL Injection.I've read that using prepared statements is quite safe, but for instance with a function like this @Override public ...
0
votes
4answers
335 views

Preventing SQL Injections on INSERT-only queries. Is it a big deal?

This is my first time creating a PHP form that will run a MySQL query using INSERT INTO to store data in a production DB. Will this pass for "secure" or is it over-kill? $orderText = ...
1
vote
3answers
215 views

PHP & mySQLi: Do I still need to check user input when using prepare statements?

If I'm using prepare statements in mySQLi, would I still need to escape or check user input in any way. So for example if I had the code: $members = new mysqli("localhost", "user", "pass", ...
5
votes
3answers
701 views

Preventing sql injection - why should one escape the input if using prepared statements?

I am doing some research in web security, and the reviser of my article said: "It should be clear that to avoid SQL Injection, the application should use prepared statements, stored procedures and ...
12
votes
6answers
3k views

How prepared statements can protect from SQL injection attacks?

How prepared statements can protect from SQL injection attacks? Wikipedia says: Prepared statements are resilient against SQL injection, because parameter values, which are transmitted later ...
2
votes
2answers
246 views

Why isn't PHP PDO protecting my query from injection?

I'm still in the progress of learning PDO fully, but I was kind of surprised when I checked this evening if it worked to SQL Inject the URL parameter, and to my surprise, it did work. So I started ...
4
votes
1answer
149 views

MYSQL Second-Order Attacks Questions

right now im using prepared statements, to select / insert data to mysql. Ok my question i found out about Second Order Attacks. So the user for example registers on my site. And uses a as email or ...
0
votes
2answers
161 views

Detecting Injection in Hibernate

I'm using Hibernate and I want to prevent injections into Hibernate prepared statements. Is there a straightforward way to do this? Regards, Hamed Let me rephrase my problem. :-) I have a lot of ...
1
vote
1answer
130 views

MySQLi prepare is for security reasons?

So, I started to use MySQLi extension as I heard it will be the supported one in the future. I read about that instead of using mysql_real_escape_string() I must use prepare() for security reasons, ...
6
votes
1answer
4k views

how to prevent SQL Injection in JSP?

I'm pretty new in jsp, I'm playing with languages this 2 years, just say stop to me ^^, Last week I was doing some PHP stuffs, I've done a lil solution to prevent SQL injections, PHP is always myman, ...
0
votes
2answers
971 views

Converting Dynamic SQL Query to a Prepared statement in Java

I'm wanting to write a program that converts a SQL Dynamic Query into a prepared statement in Java. So if given a string like "SELECT * FROM EMPLOYEE_TABLE WHERE FIRST_NAME='BOB';" I'd like to ...
11
votes
3answers
2k views

Is mysql_real_escape_string() broken?

Some people believe that mysql_real_escape_string() has some flaws and cannot protect your query even when properly used. Bringing some fossilized articles as a proof. So, the question is: is ...
9
votes
4answers
4k views

PDO in Codeigniter - Protect vs SQL Injection

True PHP Security experts, is PDO the way to go or would I be ok with Codeigniter's Active Record class? I have read http://codeigniter.com/forums/viewthread/179618/ and am not 100% convinced. I ...
10
votes
3answers
868 views

Are dynamic mysql queries with sql escaping just as secure as prepared statements?

I have an application which would greatly benefit by using dynamic mysql queries in combination with mysql (mysqli) real escape string. If I ran all data received from the user through mysql real ...
4
votes
4answers
812 views

How do we know PDO is escaping SQL Injections?

I am newbie with PDO libraries. I am working on development environment with mysql as my database. I am able to run through my queries using prepare and execute function while using "?" placeholder ...
13
votes
3answers
2k views

Does the preparedStatement avoid SQL injection?

I have read and tried to inject vulnerable sql queries to my application. It is not safe enough. I am simply using the Statement Connection for database validations and other insertion operations. Is ...
9
votes
5answers
652 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 ...
6
votes
3answers
483 views

Does prepared statement prevent SQL-Injection here

The code below is from SAMATE Reference Dataset. I used it to test a static analysis tool. As you can see the code should prevent SQL-Injection both by using a sanitization method as well as using a ...
2
votes
3answers
1k views

mysqli prepared statements and mysqli_real_escape_string

I'm currently using the mysqli php extension. Traditionally I have used mysqli_real_escape_string to escape user input. However I am looking at changing over the code (hopefully in as few steps as ...
5
votes
6answers
560 views

Safely using prepared statements to query database

I'm trying to write a function that is versatile in the queries it is allowed to make, but also safe from injection. The code below throws an error as is, but if I run it with 'name' instead of ...
2
votes
5answers
195 views

Is using a database-level MD5 function a bigger security risk than an application level function?

I've got a chunk of code that validates a user's username and password, which goes something like this: $sql = "SELECT * FROM user WHERE username='{$_POST['username']}' AND ...
12
votes
5answers
7k views

How does a PreparedStatement avoid or prevent SQL injection?

I know that PreparedStatements avoid/prevent SQL Injection. How does it do that? Will the final form query that is constructed using PreparedStatements will be a string or otherwise?
3
votes
6answers
3k views

Preventing SQL injection without prepared statements (JDBC)

I have a database log appender that inserts a variable number of log lines into the database every once in a while. I'd like to create an SQL statement in a way that prevents SQL injection, but not ...
10
votes
6answers
4k views

Why is using a mysql prepared statement more secure than using the common escape functions?

There's a comment in another question that says the following: "When it comes to database queries, always try and use prepared parameterised queries. The mysqli and PDO libraries support ...
11
votes
4answers
8k views

SQL injections with prepared statements?

If I remember correctly, I think Jeff has mentioned in the Stack Overflow podcast a possible weakness in SQL prepared statements. I'm wondering what kind(s) of weakness(es) did he refer to? Was it ...