SQL injection is a code injection technique that exploits a security vulnerability occurring in the database layer of an application, such as queries.

learn more… | top users | synonyms (1)

0
votes
0answers
34 views

building a Python SQL injection vulnerability tester [closed]

I'm building a small script in Python which would inject some data (from a file) into the input fields on some random website. It would inject SQL injection test strings into forms. I get all the ...
-1
votes
2answers
25 views

Will the use of secure protocols such as HTTPS or SFTP eliminate SQL injection and XSS attackes? why?

I am not working with any code I am just trying to get a better understanding of security based around SQL Injection and XSS attacks. My main questions is 'Will the use of HTTPS or SFTP eliminate SQL ...
0
votes
4answers
53 views

How i can make my code secure from SQL Injection [duplicate]

I know i am not secure when i am using this code so anything i can add in my code? I have tried my self sql injection they are somewhere working but not much as i dont have much knowledge about sql ...
0
votes
1answer
69 views

Which method is more secure between MySQLi and PDO [closed]

So far, I'm seeing that both MySQLi and PDO are good methods when connecting to the database. What I need is which method is more secure between the two. Especially for a person developing a site for ...
-1
votes
1answer
35 views

How to save my login form from sql injection [duplicate]

I have problem with my login form sql injection is working on it so how to stop it. I am using mysql_real_escape_string but nothing changed if(isset($_POST['submit-login'])) { $user = ...
0
votes
1answer
38 views

SQL injection simulation example

I try to simulate an sql injection within a joomla module, but I it not working. I did some debug in the joomla and I arrive to the following problem. The code works well in php admin: SELECT cd.*, ...
0
votes
1answer
35 views

SQL injection attack(hacker posting spam hyperlinks) into our sql db columns. [closed]

does anyone know why our website is getting these sql injection attacks (the hacker posts spam paydayloan hyperlinks into our database columns)? I know how to remove the error just not find the ...
0
votes
1answer
57 views

Convert mysql_query to PDO statements

While there are a large number of PDO usage examples I have not been able to successfully convert from mysql_query to PDO statements. Here's what works but is insecure: <?php $db = ...
0
votes
2answers
45 views

Which characters must be removed / escapes from PHP forms in SQL queries?

Innocently I thought that there's no problem to store into a db an UTF-8 string, even if they contains strange characters. On the contrary I've read here and there that some characters, as newlines, ...
0
votes
2answers
56 views

SQL Injection via input from escaped database entry possible?

While developing a PHP Application I thought about this situation: A user submits some kind of text in a form, on the serverside the text is escaped and inserted into the database. The question is: Is ...
2
votes
1answer
46 views

SQL Injection Prevention - GET_VARS

I have a url, that when valid would look like this: site.com/page.php?id=12345 I'm trying to understand if we're vunderable to sql injection. In this particular instance, the value should only be ...
0
votes
0answers
21 views

escaping sybase query with hexadecimal of single qoute

I am working with a Sybase database (not of my creating) and PHP, and I see that all single quotes in the database are stored as hexadecimal representation of single quote "\x16". I don't believe this ...
0
votes
1answer
19 views

Error when attempting to “cleanly” insert data into a MySQL database; Fatal error: Call to a member function execute() on a non-object in

I'm relatively new to PHP and I'm attempting to make a registration + login system. I am running into an issue when I attempt to safely insert the users "username" and "password" into my database. I ...
-1
votes
1answer
29 views

Parameterized statements and security

I want to make this page secure, but i dont know where should i start. Because i've got injected yesterday I treid mysql escaping string, but i didn't help much. And i dont know anything about PDO, ...
2
votes
6answers
90 views

Can this be victim of sql injection

Hi I am getting id value from a drop down list and passing it to a code behind method which passes value to sql to do some operation. I was wondering if it is the right way of doing it. if it is not ...
0
votes
3answers
41 views

Check for SQL Keywords in C#

if i allow users to type in a textbox and then perform a search against my db, there is the potential for sql injection. i could use regex, thats my first thought. but i had a better idea. why not ...
0
votes
1answer
41 views

Gets results only when empty

I have this sql statement that returns rows from a customer table. The user has the option for searching with what ever they want to type in. I had this working, until I tried to protect against sql ...
-3
votes
2answers
49 views

can this function prevent sql injection and xss?

function clean( $value ) { if(function_exists( "mysql_real_escape_string" ) ) { if( get_magic_quotes_gpc() ) { $value = stripslashes( $value ); } $value = ...
0
votes
1answer
18 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
4answers
130 views

Does SSL alone prevent SQL injection?

I'm working on tightening up the security on my app and the first thing I'm planning on doing is serving the entire app via SSL. I'm wondering how secure this is if it were to be the only measure I ...
0
votes
3answers
47 views

Is this stored procedure vulnerable to SQL Injection?

This stored procedure will check for username and password and return 1 if credentials matches else 0. CREATE PROCEDURE usp_CheckPermisssions @UserName NVARCHAR(50), @Password NVARCHAR(50) ...
2
votes
3answers
51 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 ...
1
vote
3answers
67 views

Sql Injection parameterised query [closed]

I need to achieve function below public PartyDetails GetAllPartyDetails(string name) { try { String query = "select * from [Party Details] where name=@name "; ...
3
votes
2answers
65 views

Is it a good idea to use safemysql class to prevent SQL injections? [closed]

I wanted to know if anyone has expierience with this script/class safemysql? (except the developer of this script) It is announced to be the safest way for mysql-queries and to prevent sites from ...
1
vote
1answer
44 views

SQL Injection within a stored procedure?

I've found somewhere in the code where a string isn't being escaped properly. I've been trying to see if it is exploitable (don't worry, I'll end up escaping it or using prepared statements anyway, ...
0
votes
2answers
39 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 ...
-1
votes
2answers
81 views

How to hide SQL statements from hackers? [closed]

I want to hide my DB connection details from hackers when they view source code as they can send malicious code to my DB. For example: <?php ...
1
vote
2answers
57 views

Does this open the door for SQL Injection?

Setting my var: Foo = request("Bar") Building SQL Query: John.Source = "SELECT ID, Name FROM dbo.USER where Name = '"&Foo&"' and ID = '1'" I found this in someones project, does this ...
2
votes
3answers
48 views

Use Primary Key to reference row for UPDATE

I have a MySQL database which I'm trying to do an update or delete command with: $query = "UPDATE db SET this='$_POST[f_that]',this2='$_POST[f_that2]' WHERE index='$_POST[f_index]'"; This returns a ...
0
votes
0answers
32 views

JPA query with where clause: vulnerable to injections?

When using JPA query builder with a construct similar to below, does the code remain protected from injection attacks? ... Predicate zipCode = cb.like(Root.<String>get("ZIPCode"), "%" + ...
-1
votes
3answers
55 views

Null character in Sql Injection [closed]

Going through sql injection on hakipedia, i understand that the injections are assumed to go along a parameter (which becomes a part of the sql query at the server end). e.g. select news from ...
-1
votes
3answers
49 views

Php 'update' command script possibly needs sql injection protection? [duplicate]

My database recently suffered from a sql injection attack, mostly because I am relatively new to programming and did not know about something like that. I have been trying to learn how to prevent ...
0
votes
0answers
54 views

Protecting mysql database from injection attacks with pdo script

Recently, my database experienced an attack from mysql injections. I did not know about injections before this incident. However, I have been studying up on what it is and how to prevent it, but I ...
1
vote
2answers
77 views

Testing query for SQL injection

I have written a code in php which enables an admin to login. The password info is fetched from the table. I know it is not a good practice to write such kind of code and i should use prepared ...
-1
votes
1answer
35 views

How to verify security of meekrodb?

Meekrodb is a simple php-->mysql library. How do I test/verify that it is secure, such as against sql injection attacks?
1
vote
0answers
37 views

SQL Injection for PHPBB2 on Profile.php

This SQL code is vulnerable, but I haven't been able to get the correct code. Here's the SQL Query: UPDATE phpbb_users SET user_email = 'bob@seed.com', user_icq = '', user_website = '', user_occ = ...
1
vote
3answers
85 views

Which is better approach to stop sql injection

I have database function which select data on different where condition's.There is two possible approach to achieve this. First public string select(string name) { string s = null; ...
-4
votes
0answers
44 views

How can i check the jhackguard plugin

I am using jhackguard plugin for joomla site 1.5.24 to prevent the sql injection ,xss,html Injection . But i have checked the site ,First i enable the jhackguard plugin then in the site by passing ...
-1
votes
1answer
34 views

2 SQL Statements: 1 invalid, 1 valid, does the valid one get executed?

Say for example I have this MySQL statement: select somefield from table where otherfield='some')%$#@%; insert into table..... Will the insert statement get executed even if the first statement ...
1
vote
1answer
77 views

Preventing SQL Injection without parameterized queries?

I'm using ASP.NET, C# and MS SQL, I've created a rules builder page that allows users to build complex rules. This page builds what comes after the "Where" clause in a SQL call, but the rules page ...
1
vote
1answer
62 views

Find Security Bugs - Real SQL injection or false positive?

I am using FindBug along with the plugin Find Security Bugs to help me find security flaws in my code. I am not sure why some code is flagged as vulnerable to SQL injection. Here are two examples: ...
-1
votes
1answer
41 views

Does hash values contain quotes?

Does hash values contain quotes? If it is dependent to the algorithm, I want to know about blowfish using phpass. I'm asking in regard to SQL injection because I don't want prepare the query for ...
3
votes
2answers
90 views

Prevention of SQL injection with PHP for SQL Server and without PDO [duplicate]

I can sanitize and validate my input as much as possible but that definitely doesn't cover everything and if I scrub hard enough, thoroughly enough, I will completely wipe away my input. I realize ...
0
votes
1answer
95 views

Oracle Database and .NET (C#) - How to prevent SQL Injections

I'll use a select in asp.net page which i.e: string name=TexBox1.Text; string pas=TextBox2.Text; string c="select * from users where name='"+name+"' and password ='"+pas+"'"; İs there any methods ...
1
vote
2answers
88 views

SqlInjection with prepared statement without bind variable?

As we know the best way to avoid sql injection is using prepared statement with bind variables. But i have question what if i use just prepared statement but not bind variables like below where ...
0
votes
0answers
55 views

How to make a LIKE query in where safe against SQLi

I have this line User.where("email LIKE ?", "%#{@search}%") which brakeman says it could be used for sql injection Is there a better, safer way to write this line (to search for users with email ...
-1
votes
1answer
57 views

php mysql injection solution [closed]

I have a news web site, and one of my friends told me that I had a problem with sql. He give me this example: www.mysite.com/news.php?id=2898231 and told me that with this url he can see everything ...
0
votes
1answer
28 views

Escaping Variables in View?

I'm wondering how to escape variables in my view, in my Node.js project. For example #{name} in my .jade view file seems vulnerable to SQL Injection or XSS. Is there a standard way to resolve this? I ...
0
votes
3answers
49 views

Does a SQL CLR stored procedure prevent injection?

I have written a CLR stored procedure in C# like this [Microsoft.SqlServer.Server.SqlProcedure] public static void IsUserNameExists(string strUserName, out SqlBoolean returnValue) { using ...
0
votes
2answers
134 views

How to prevent SQL Injection for URL Parameter changing (DELETE Statement) PHP

I have a code like below for DELETE entry by URL Parameter <td><a href="deletecar.php?car_id=<?php echo $row_cars['car_id']; ?>" onclick=" if ( !confirm('Are you sure to DELETE?') ) ...

1 2 3 4 5 27