Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b192f6d commit 88e0759Copy full SHA for 88e0759
1 file changed
java/ql/src/semmle/code/java/dataflow/FlowSources.qll
@@ -204,6 +204,13 @@ private class BeanValidationSource extends RemoteFlowSource {
204
/** Class for `tainted` user input. */
205
abstract class UserInput extends DataFlow::Node { }
206
207
+/**
208
+ * Input that may be controlled by a remote user.
209
+ */
210
+private class RemoteUserInput extends UserInput {
211
+ RemoteUserInput() { this instanceof RemoteFlowSource }
212
+}
213
+
214
/** A node with input that may be controlled by a local user. */
215
abstract class LocalUserInput extends UserInput { }
216
0 commit comments