Skip to content

Commit 61ba5ba

Browse files
committed
Update Query_Parameterization_Cheat_Sheet.md
added clearification
1 parent 302124b commit 61ba5ba

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

cheatsheets/Query_Parameterization_Cheat_Sheet.md

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ This cheat sheet is a derivative work of the [SQL Injection Prevention Cheat She
1212

1313
SQL Injection is best prevented through the use of [*parameterized queries*](SQL_Injection_Prevention_Cheat_Sheet.md). The following chart demonstrates, with real-world code samples, how to build parameterized queries in most of the common web languages. The purpose of these code samples is to demonstrate to the web developer how to avoid SQL Injection when building database queries within a web application.
1414

15+
Please note, many client side frameworks and libraries offer client side query parameterization. These libraries often just build queries with string concatenation before sending raw queries to a server. Please ensure that query parameterization is done server-side!
16+
1517
### Prepared Statement Examples
1618

1719
#### Using Java built-in feature

0 commit comments

Comments
 (0)