Rename SourceNode.qll to FlowSources.qll

This commit is contained in:
Ed Minnix
2024-01-15 21:51:17 -05:00
parent 392eac5f9a
commit 3c9c07ec40
4 changed files with 6 additions and 3 deletions

View File

@@ -1,5 +1,8 @@
private import semmle.code.csharp.dataflow.internal.ExternalFlow
private import codeql.threatmodels.ThreatModels
import semmle.code.csharp.security.dataflow.flowsources.Remote
import semmle.code.csharp.security.dataflow.flowsources.Local
import semmle.code.csharp.security.dataflow.flowsources.Stored
/**
* A data flow source.

View File

@@ -5,7 +5,7 @@
import csharp
private import semmle.code.csharp.frameworks.system.windows.Forms
private import semmle.code.csharp.dataflow.internal.ExternalFlow
private import semmle.code.csharp.security.dataflow.flowsources.SourceNode
private import semmle.code.csharp.security.dataflow.flowsources.FlowSources
/** A data flow source of local data. */
abstract class LocalFlowSource extends SourceNode {

View File

@@ -13,7 +13,7 @@ private import semmle.code.csharp.frameworks.WCF
private import semmle.code.csharp.frameworks.microsoft.Owin
private import semmle.code.csharp.frameworks.microsoft.AspNetCore
private import semmle.code.csharp.dataflow.internal.ExternalFlow
private import semmle.code.csharp.security.dataflow.flowsources.SourceNode
private import semmle.code.csharp.security.dataflow.flowsources.FlowSources
/** A data flow source of remote user input. */
abstract class RemoteFlowSource extends SourceNode {

View File

@@ -9,7 +9,7 @@ private import semmle.code.csharp.frameworks.system.data.Entity
private import semmle.code.csharp.frameworks.EntityFramework
private import semmle.code.csharp.frameworks.NHibernate
private import semmle.code.csharp.frameworks.Sql
private import semmle.code.csharp.security.dataflow.flowsources.SourceNode
private import semmle.code.csharp.security.dataflow.flowsources.FlowSources
/** A data flow source of stored user input. */
abstract class StoredFlowSource extends SourceNode {