About 389,000 results
Open links in new tab
  1. mysql - How can I prevent SQL injection in PHP? - Stack Overflow

    Sep 13, 2008 · mysql_real_escape_string takes a string that is going to be used in a MySQL query and return the same string with all SQL injection attempts safely escaped. Basically, it …

  2. Which characters are actually capable of causing SQL injection in …

    Jan 17, 2013 · An obligatory addendum from 2020: Dealing with characters was proven to be inefficient and obsoleted You must use prepared statements and forget about escaping, …

  3. mysql - ¿Qué es la inyección SQL y cómo puedo evitarla? - Stack ...

    May 20, 2016 · 91 He encontrado bastantes preguntas en StackOverflow sobre programas o formularios web que guardan información en una base de datos (especialmente en PHP y …

  4. mysql - PHP MySQLI Prevent SQL Injection - Stack Overflow

    Apr 29, 2013 · php mysql security mysqli code-injection asked Apr 29, 2013 at 15:08 user2201765 1,043 6 18 21

  5. MySQL Injection - Use SELECT query to UPDATE/DELETE

    But to answer the question directly: there are a few ways that I know of by which injection into a MySQL SELECT can be used to modify data. Fortunately, they all require reasonably unusual …

  6. SQL injection that gets around mysql_real_escape_string ()

    Apr 21, 2011 · 796 Is there an SQL injection possibility even when using mysql_real_escape_string() function? Consider this sample situation. SQL is constructed in …

  7. mysql - What characters have to be escaped to prevent (My)SQL ...

    What characters have to be escaped to prevent (My)SQL injections? Asked 16 years, 5 months ago Modified 8 years, 3 months ago Viewed 73k times

  8. php - SQL Injection through mysql_query - Stack Overflow

    Jan 29, 2012 · Because mysql_query is not supporting multiple queries, So any injection that is doing like '; DROP TABLE mytable; -- won't be successful. However, the attacker can combine …

  9. mysql - SQL injection attack with php - Stack Overflow

    May 16, 2014 · Exploiting SQL injections is the art of providing values that, when incorporated into an SQL statement, result in a valid SQL statement syntax while changing the semantics …

  10. Preventing SQL injection in Node.js - Stack Overflow

    Here is a snippet of user registration code, which uses the sanitizer module, along with node-mysql's prepared statement-like syntax (which, as I mentioned above, does character …