Skip to content

Commit 8e05fdb

Browse files
committed
make more imports private
1 parent c5350ca commit 8e05fdb

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

python/ql/lib/semmle/python/security/dataflow/UnsafeShellCommandConstructionCustomizations.qll

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
*/
66

77
private import python
8-
import semmle.python.dataflow.new.DataFlow
9-
import semmle.python.dataflow.new.TaintTracking
10-
import CommandInjectionCustomizations::CommandInjection as CommandInjection
8+
private import semmle.python.dataflow.new.DataFlow
9+
private import semmle.python.dataflow.new.TaintTracking
10+
private import CommandInjectionCustomizations::CommandInjection as CommandInjection
1111
private import semmle.python.Concepts as Concepts
1212

1313
/**

python/ql/lib/semmle/python/security/dataflow/UnsafeShellCommandConstructionQuery.qll

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
*/
88

99
import python
10-
import UnsafeShellCommandConstructionCustomizations::UnsafeShellCommandConstruction
1110
import semmle.python.dataflow.new.DataFlow
12-
import semmle.python.dataflow.new.TaintTracking
13-
import CommandInjectionCustomizations::CommandInjection as CommandInjection
14-
import semmle.python.dataflow.new.BarrierGuards
11+
import UnsafeShellCommandConstructionCustomizations::UnsafeShellCommandConstruction
12+
private import semmle.python.dataflow.new.TaintTracking
13+
private import CommandInjectionCustomizations::CommandInjection as CommandInjection
14+
private import semmle.python.dataflow.new.BarrierGuards
1515

1616
/**
1717
* A taint-tracking configuration for detecting shell command constructed from library input vulnerabilities.

0 commit comments

Comments
 (0)