mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-21 20:18:06 +02:00
10 lines
230 B
Go
10 lines
230 B
Go
// Phase 11 (Track J.9) — Go UNAUTHORIZED_ID vuln fixture.
|
|
package vuln
|
|
|
|
const callerID = "alice"
|
|
|
|
var store = map[string]string{"alice": "alice@x", "bob": "bob@x"}
|
|
|
|
func Run(ownerID string) string {
|
|
return store[ownerID]
|
|
}
|