mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01:00
8 lines
182 B
Java
Executable File
8 lines
182 B
Java
Executable File
import java.io.IOException;
|
|
|
|
public class ZipFile {
|
|
public void PathInjection(String path) throws IOException {
|
|
new java.util.zip.ZipFile(path); // $ hasTaintFlow="path"
|
|
}
|
|
}
|