File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
java/ql/lib/semmle/code/java/security Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -203,6 +203,7 @@ module TempDirSystemGetPropertyDirectlyToMkdir =
203
203
/**
204
204
* A `MethodCall` against a method that creates a temporary file or directory in a shared temporary directory.
205
205
*/
206
+ overlay [ local?]
206
207
abstract class MethodCallInsecureFileCreation extends MethodCall {
207
208
/**
208
209
* Gets the type of entity created (e.g. `file`, `directory`, ...).
@@ -218,6 +219,7 @@ abstract class MethodCallInsecureFileCreation extends MethodCall {
218
219
/**
219
220
* An insecure call to `java.io.File.createTempFile`.
220
221
*/
222
+ overlay [ local?]
221
223
class MethodCallInsecureFileCreateTempFile extends MethodCallInsecureFileCreation {
222
224
MethodCallInsecureFileCreateTempFile ( ) {
223
225
this .getMethod ( ) instanceof MethodFileCreateTempFile and
@@ -246,6 +248,7 @@ class MethodGuavaFilesCreateTempFile extends Method {
246
248
/**
247
249
* A call to the `com.google.common.io.Files.createTempDir` method.
248
250
*/
251
+ overlay [ local?]
249
252
class MethodCallInsecureGuavaFilesCreateTempFile extends MethodCallInsecureFileCreation {
250
253
MethodCallInsecureGuavaFilesCreateTempFile ( ) {
251
254
this .getMethod ( ) instanceof MethodGuavaFilesCreateTempFile
You can’t perform that action at this time.
0 commit comments