mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-09 19:45:13 +02:00
9 lines
230 B
PHP
9 lines
230 B
PHP
<?php
|
|
// Phase 11 (Track J.9) — PHP UNAUTHORIZED_ID vuln fixture.
|
|
const CALLER_ID = "alice";
|
|
$STORE = ["alice" => "alice@x", "bob" => "bob@x"];
|
|
|
|
function run($ownerId) {
|
|
global $STORE;
|
|
return $STORE[$ownerId] ?? null;
|
|
}
|