Skip to content

Commit 0f85b98

Browse files
committed
Update models to match new data extensions names
1 parent 0e93257 commit 0f85b98

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

csharp/ql/lib/semmle/code/csharp/security/dataflow/LDAPInjectionQuery.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ class RemoteSource extends Source instanceof RemoteFlowSource { }
7171

7272
/** LDAP sinks defined through Models as Data. */
7373
private class ExternalLdapExprSink extends Sink {
74-
ExternalLdapExprSink() { sinkNode(this, "ldap") }
74+
ExternalLdapExprSink() { sinkNode(this, "ldap-injection") }
7575
}
7676

7777
/**

csharp/ql/lib/semmle/code/csharp/security/dataflow/LogForgingQuery.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ private class LogForgingTraceMessageSink extends Sink, TraceMessageSink { }
7575

7676
/** Log Forging sinks defined through Models as Data. */
7777
private class ExternalLoggingExprSink extends Sink {
78-
ExternalLoggingExprSink() { sinkNode(this, "logging") }
78+
ExternalLoggingExprSink() { sinkNode(this, "log-injection") }
7979
}
8080

8181
/**

csharp/ql/lib/semmle/code/csharp/security/dataflow/UrlRedirectQuery.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class RemoteSource extends Source instanceof RemoteFlowSource { }
7373

7474
/** URL Redirection sinks defined through Models as Data. */
7575
private class ExternalUrlRedirectExprSink extends Sink {
76-
ExternalUrlRedirectExprSink() { sinkNode(this, "url-redirect") }
76+
ExternalUrlRedirectExprSink() { sinkNode(this, "url-redirection") }
7777
}
7878

7979
/**

0 commit comments

Comments
 (0)