Compare commits

...

1 Commits

Author SHA1 Message Date
Chris Smowton
596c4fcac3 Add change note re: MyBatis improvement 2022-12-08 14:02:25 +00:00

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}`.