+ 3

What is SQL injection? How it can be prevented?

13th Dec 2016, 11:05 AM
Muhammed Rishad
2 Answers
+ 3
A SQL injection is a type of attack; somebody uses user input like a login field to change the sql to his needs. For preventing it, look into preparing sql pdo statements. This is also a good resource on sql injections: http://php.net/manual/en/security.database.sql-injection.php
13th Dec 2016, 11:42 AM
LaserHydra
LaserHydra - avatar
+ 2
SQL injection is a code injection technique, used to attack data-driven applications, in which nefarious SQL statements are inserted into an entry field for execution (e.g. to dump the database contents to the attacker). An SQL Injection can destroy your database. Trust no-one: Assume all user-submitted data is evil and validate and sanitize everything. Don't use dynamic SQL when it can be avoided: used prepared statements, parameterized queries or stored procedures instead whenever possible. Update and patch: vulnerabilities in applications and databases that hackers can exploit using SQL injection are regularly discovered, so it's vital to apply patches and updates as soon as practical. Firewall: Consider a web application firewall (WAF) – either software or appliance based – to help filter out malicious data. Good ones will have a comprehensive set of default rules, and make it easy to add new ones whenever necessary. A WAF can be particularly useful to provide some security protection against a particular new vulnerability before a patch is available. Reduce your attack surface: Get rid of any database functionality that you don't need to prevent a hacker taking advantage of it. For example, the xp_cmdshell extended stored procedure in MS SQL spawns a Windows command shell and passes in a string for execution, which could be very useful indeed for a hacker. The Windows process spawned by xp_cmdshell has the same security privileges as the SQL Server service account. Use appropriate privileges: don't connect to your database using an account with admin-level privileges unless there is some compelling reason to do so. Using a limited access account is far safer, and can limit what a hacker is able to do. Keep your secrets secret: Assume that your application is not secure and act accordingly by encrypting or hashing passwords and other confidential data including connection strings. Don't divulge more information than you need to: hackers can learn a great deal about database architecture from er
13th Dec 2016, 11:42 AM
Akwin Lopez
Akwin Lopez - avatar