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

    Sep 13, 2008 · SQL injection works by tricking the script into including malicious strings when it creates SQL to send to the database. So by sending the actual SQL separately from the …

  2. 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 …

  3. SQL injection that gets around mysql_real_escape_string ()

    Apr 21, 2011 · 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 ...

  4. 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, …

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

    If you say you use mysql_query that doesn't support multiple queries, you cannot directly add DELETE / UPDATE / INSERT, but it's possible to modify data under some circumstances. For …

  6. 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

  7. SQL Injection: or 1=1 vs ' or 1=1; -- - - Stack Overflow

    Mar 30, 2020 · Trying to learn and understand SQL injection. Can anyone explain to me why ' or 1=1; -- - allowed me to bypass authentication and or 1=1 did not?

  8. mysql - SQL Injection and the LIMIT clause - Stack Overflow

    SQL Injection occurs if “ externally-influenced input […] could modify the intended SQL command ”. And in this case it’s clear that user input can modify the intended SQL command.

  9. 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 …

  10. Python: best practice and securest way to connect to MySQL and …

    Sep 22, 2021 · What is the safest way to run queries on MySQL? I am aware of the dangers involved with MySQL and SQL injection. However, I do not know how I should run my queries …