nyx/tests/dynamic_fixtures/java/ssrf_unsupported.java

13 lines
290 B
Java
Raw Permalink Normal View History

2026-06-05 10:16:30 -05:00
// 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();
}
}