We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbfbd2c commit 4b1c027Copy full SHA for 4b1c027
javascript/ql/lib/semmle/javascript/security/dataflow/RemoteFlowSources.qll
@@ -11,10 +11,9 @@ cached
11
private module Cached {
12
/** A data flow source of remote user input. */
13
cached
14
- abstract class RemoteFlowSource extends DataFlow::Node {
15
- /** Gets a human-readable string that describes the type of this remote flow source. */
+ abstract class RemoteFlowSource extends ThreatModelSource::Range {
16
17
- abstract string getSourceType();
+ override string getThreatModel() { result = "remote" }
18
19
/**
20
* Holds if this can be a user-controlled object, such as a JSON object parsed from user-controlled data.
0 commit comments