About 77,400 results
Open links in new tab
  1. How can prepared statements protect from SQL injection attacks?

    Nov 25, 2011 · How do prepared statements help us prevent SQL injection attacks? Wikipedia says: Prepared statements are resilient against SQL injection, because parameter values, …

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

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

  4. How can I prevent SQL injection in PHP? - Stack Overflow

    Sep 13, 2008 · The correct way to avoid SQL injection attacks, no matter which database you use, is to separate the data from SQL, so that data stays data and will never be interpreted as …

  5. What is SQL injection? - Stack Overflow

    SQL injection is a fault in the application code, not typically in the database or in the database access library or framework. Most cases of SQL injection can be avoided by using query …

  6. security - How does the SQL injection from the "Bobby Tables" …

    Dec 2, 2008 · The potential impact of a successful SQL injection attack cannot be underestimated--depending on the database system and application configuration, it can be …

  7. How to protect against SQL Injection in dynamic queries?

    Can you add an example in Java or pseudo-code that illustrates the dynamic building steps. Also, how is this guarding or protecting against SQL-injection (the key question)?

  8. c# - SQL injection on INSERT - Stack Overflow

    Here's a description of how you could perform an SQL Injection attack. You need to use parameterized SQL statements to prevent this. And this isn't just for security reasons. For …

  9. Testing if a site is vulnerable to Sql Injection - Stack Overflow

    Jul 4, 2022 · I was reading about sql injection and i understand how it works if there is a form where the user can enter his username and login. What i dont get is how websites without a …

  10. How can I avoid SQL injection attacks in my ASP.NET application?

    Nov 20, 2008 · I need to avoid being vulnerable to SQL injection in my ASP.NET application. How might I accomplish this?