A3:2021 | SQL Injection Mitigation (1) | Cycubics Docs
Immutable Queries
These are the best defense against SQL injection. They either do not have data that could get interpreted or they treat the data as a single entity that is bound to a column without interpretation.
Static Queries
Parameterized Queries
Stored Procedures
Only if stored procedure does not generate dynamic SQL.
Immutable Queries
These are the best defense against SQL injection. They either do not have data that could get interpreted or they treat the data as a single entity that is bound to a column without interpretation.
Static Queries
Parameterized Queries
Stored Procedures
Only if stored procedure does not generate dynamic SQL.
PreviousA3:2021 | Injection | SQL Injection Mitigation | Cycubix DocsNextA3:2021 | SQL Injection Mitigation (2) |
Last updated