About 167,000 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, which are …

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

    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, "dangerous …

  3. 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 commands by …

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

  5. 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)?

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

  7. 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 login page can be …

  8. security - How does the SQL injection from the "Bobby Tables" XKCD ...

    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 used by an attacker to …

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

  10. What are good ways to prevent SQL injection? [duplicate]

    May 17, 2015 · What if I want to actively identify an attempt of sql injection. Are there any good libraries to couple with this approach so I can identify and log an attack?