System Security
Web Security
10 Web Security Vulnerabilities You Can Prevent
Common Web Security Mistake #1: Injection flaws
Injection flaws result from a classic failure to filter untrusted input. It can happen when you pass unfiltered data to the SQL server (SQL injection), to the browser XSS – we’ll talk about this later), to the LDAP server (LDAP injection), or anywhere else. Prevention: The good news is that protecting against injection is “simply” a matter of filtering your input properly and thinking about whether an input can be trusted.
Comments
Post a Comment