type
Post
status
Invisible
date
Oct 22, 2022
slug
summary
Review
tags
Cyber Security
Review
category
Review
icon
password
Property
Feb 12, 2023 02:22 PM
II Database
SQLi Countermeasures
- Defensive coding
- Manual defensive coding practices (e.g., input type checking, pattern matching)
- Parameterized query insertion: more accurately specify the structure of an SQL query and pass the value parameters. (Pre-compiling a SQL statement)
- Detection
- Signature based: match specific attack patterns
- Anomaly based: define normal behavior then detect behavior patterns outside the normal range
- Code analysis: the use of a test suite to detect SQLi vulnerabilities
- Run-time prevention
- Check queries at runtime to see if they conform to a model of expected queries
- Author:Rroscha
- URL:https://rroscha.vercel.app//article/313da53b-68d4-45da-90ec-1fbf2c6bdc09
- Copyright:All articles in this blog, except for special statements, adopt BY-NC-SA agreement. Please indicate the source!
Relate Posts