Add change note re: MyBatis improvement

This commit is contained in:
Chris Smowton
2022-12-08 14:02:25 +00:00
committed by GitHub
parent 85ee4e6ca1
commit 596c4fcac3

View File

@@ -0,0 +1,4 @@
---
category: minorAnalysis
---
* We now detect SQL injection via the MyBatis library when the `@Param` annotation is not used, but the unannotated parameter is referred to by name regardless. This is an undocumented feature of the MyBatis library; the documentation suggests either `@Param` should be used, or a parameter should be referred to by position, e.g. `{arg0}`.