About 63,500 results
Open links in new tab
  1. Examples of XSS that I can use to test my page input?

    Code injection vulnerabilities such as XSS or SQL injection are always a result of improper use or lack of data escaping. In PHP you must use htmlspecialchars() on everything you output to the …

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

  3. Azure Application Gateway WAF with False Positive on SQL Injection

    To do this in Azure go to the rules in the Web application firewall section. In my case I use OData which was identified by WAF as a vulnerability, the solution was to disable the rule "942360 - …

  4. Java - escape string to prevent SQL injection - Stack Overflow

    After searching an testing alot of solution for prevent sqlmap from sql injection, in case of legacy system which cant apply prepared statments every where. java-security-cross-site-scripting …

  5. unit testing - Best way to test SQL queries - Stack Overflow

    Our test will be a SQL select query, with the following structure: a test name and a case statement catenated together. The test name is just an arbitrary string. The case statement is just case …

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

    Is it possible to prevent SQL injections in Node.js (preferably with a module) in the same way that PHP had Prepared Statements that protected against them. If so, how? If not, what are some …

  7. unit testing - Is it possible to use Dependency Injection with xUnit ...

    22 Yes there is now, these two questions and answers should be consolidated in my opinion, see answer here Net Core: Execute All Dependency Injection in Xunit Test for AppService, …

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

  9. Testing if Request.QueryString is vulnerable to SQL Injection

    No matter how the QueryString is passed, you are not vulnerable to SQL injection attacks. Unless, your SQL statements are actually stored procedures that build the query dynamically via string …

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