make more imports private

This commit is contained in:
erik-krogh
2023-02-03 15:00:31 +01:00
parent c5350ca6a0
commit 8e05fdb369
2 changed files with 7 additions and 7 deletions

View File

@@ -5,9 +5,9 @@
*/
private import python
import semmle.python.dataflow.new.DataFlow
import semmle.python.dataflow.new.TaintTracking
import CommandInjectionCustomizations::CommandInjection as CommandInjection
private import semmle.python.dataflow.new.DataFlow
private import semmle.python.dataflow.new.TaintTracking
private import CommandInjectionCustomizations::CommandInjection as CommandInjection
private import semmle.python.Concepts as Concepts
/**

View File

@@ -7,11 +7,11 @@
*/
import python
import UnsafeShellCommandConstructionCustomizations::UnsafeShellCommandConstruction
import semmle.python.dataflow.new.DataFlow
import semmle.python.dataflow.new.TaintTracking
import CommandInjectionCustomizations::CommandInjection as CommandInjection
import semmle.python.dataflow.new.BarrierGuards
import UnsafeShellCommandConstructionCustomizations::UnsafeShellCommandConstruction
private import semmle.python.dataflow.new.TaintTracking
private import CommandInjectionCustomizations::CommandInjection as CommandInjection
private import semmle.python.dataflow.new.BarrierGuards
/**
* A taint-tracking configuration for detecting shell command constructed from library input vulnerabilities.