About 197,000 results
Open links in new tab
  1. Testing if a site is vulnerable to Sql Injection - Stack Overflow

    Jul 4, 2022 · Edit: As far as TESTING your site for SQL injection, understand it gets A LOT more complex than just 'append a symbol'. If your site is critical, and you (or your company) can …

  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. security - "Blind SQL Injection (Time-Based)" vulnerability in …

    Jan 22, 2025 · Are there any tools or practices I can use to verify that all potential SQL injection vulnerabilities have been addressed in my application? Additional Information: The application …

  4. ModSecurity False Positive SQL Injection - Stack Overflow

    Jul 14, 2020 · And the rule is: SQL Injection Attack: Common Injection Testing Detected id:'981318' The process you can do can be similar than in ModSecurity: Access denied with …

  5. sql injection - Specify parameters with SQLMAP - Stack Overflow

    Mar 27, 2013 · I'm a student learning php & mysql development. i have setup a private lab ( VM ) inside my computer to test & learn how sql injection works. When things get harder i use …

  6. mysql - SQL Injection via Rest API Body - Stack Overflow

    I'm currently checking if my Rest API is vulnerable to an SQL Injection but I'm confused on the process. My API accepts JSON, then sends the requests to a Mysql database. I've tried …

  7. testing - using SQLMAP to test SQL injection in ASP.NET web …

    Sep 19, 2018 · I am trying to get SQLMAP tool to test the possibilities of SQL injection on my asp.net web application which has forms authentication. But I am not getting any clear …

  8. How can sanitation that escapes single quotes be defeated by SQL ...

    Mar 21, 2013 · However, this type of attack is very uncommon because the database must be configured to accept GBK unicode strings (and I'm not sure that MS-SQL can do this). Second …

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

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