C#: update 'remote' sink kind to 'file-content-store'

This commit is contained in:
Jami Cogswell
2023-05-16 14:03:19 -04:00
parent d3da5a7b28
commit 06a28f6221
5 changed files with 81 additions and 80 deletions

View File

@@ -19,7 +19,7 @@ private import semmle.code.csharp.dataflow.ExternalFlow
abstract class ExternalLocationSink extends DataFlow::ExprNode { }
private class ExternalModelSink extends ExternalLocationSink {
ExternalModelSink() { sinkNode(this, "remote") }
ExternalModelSink() { sinkNode(this, "file-content-store") }
}
/**