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