mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-09 19:45:13 +02:00
Dynamic (#77)
This commit is contained in:
parent
55247b7fcd
commit
991c84a1eb
1464 changed files with 225448 additions and 1985 deletions
29
tests/dynamic_fixtures/java/fileio_positive.java
Normal file
29
tests/dynamic_fixtures/java/fileio_positive.java
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
// File I/O — positive fixture.
|
||||
// Vulnerable: reads file at user-controlled path without sanitization.
|
||||
// Entry: Entry.readFile(String) Cap: FILE_IO
|
||||
// Expected verdict: Confirmed.
|
||||
//
|
||||
// The harness plants a canary file (`nyx_pt_canary`, whose CONTENT is the
|
||||
// collision-resistant marker) at the workdir root and an empty `testfiles/`
|
||||
// directory beside it. Reading `testfiles/ + userPath` without normalising is
|
||||
// the traversal sink: the vuln payload `../nyx_pt_canary` escapes `testfiles/`
|
||||
// back to the planted canary, so its marker content reaches stdout.
|
||||
|
||||
import java.io.*;
|
||||
import java.nio.file.*;
|
||||
|
||||
public class Entry {
|
||||
public static void readFile(String userPath) throws Exception {
|
||||
// Base directory the harness plants the canary one level above.
|
||||
Path testfileDir = Paths.get(System.getProperty("user.dir"), "testfiles");
|
||||
// Vulnerable: no normalisation / containment check on `userPath`.
|
||||
Path filePath = testfileDir.resolve(userPath);
|
||||
System.out.print("__NYX_SINK_HIT__\n");
|
||||
try {
|
||||
String content = new String(Files.readAllBytes(filePath));
|
||||
System.out.print(content);
|
||||
} catch (IOException e) {
|
||||
// silent
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue