File tree Expand file tree Collapse file tree
java/ql/src/semmle/code/java/dataflow Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -196,22 +196,6 @@ private class WebSocketMessageParameterSource extends RemoteFlowSource {
196196 override string getSourceType ( ) { result = "Websocket onText parameter" }
197197}
198198
199- private class BeanValidationSource extends RemoteFlowSource {
200- BeanValidationSource ( ) {
201- exists ( Method m , Parameter v |
202- this .asParameter ( ) = v and
203- m .getParameter ( 0 ) = v and
204- m .getDeclaringType ( )
205- .getASourceSupertype + ( )
206- .hasQualifiedName ( "javax.validation" , "ConstraintValidator" ) and
207- m .hasName ( "isValid" ) and
208- m .fromSource ( )
209- )
210- }
211-
212- override string getSourceType ( ) { result = "BeanValidation source" }
213- }
214-
215199/** Class for `tainted` user input. */
216200abstract class UserInput extends DataFlow:: Node { }
217201
You can’t perform that action at this time.
0 commit comments