mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-09 19:45:13 +02:00
12 lines
290 B
Java
12 lines
290 B
Java
// SSRF — unsupported fixture.
|
|
// Entry is an instance method; test sets confidence = Low.
|
|
// Expected verdict: Unsupported
|
|
|
|
import java.io.*;
|
|
import java.net.*;
|
|
|
|
public class Entry {
|
|
public void fetch(String url) throws Exception {
|
|
new URL(url).openStream().close();
|
|
}
|
|
}
|