mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-09 19:45:13 +02:00
15 lines
440 B
Go
15 lines
440 B
Go
// Command injection — adversarial collision fixture.
|
|
// Prints NYX_PWN_791_CMDI unconditionally without reaching a command sink
|
|
// and without emitting __NYX_SINK_HIT__.
|
|
// Expected verdict: Inconclusive(OracleCollisionSuspected)
|
|
// Entry: RunPing(host string) Cap: CODE_EXEC
|
|
|
|
package entry
|
|
|
|
import "fmt"
|
|
|
|
func RunPing(host string) {
|
|
// Coincidental oracle match — not a shell sink.
|
|
fmt.Println("NYX_PWN_791_CMDI")
|
|
_ = len(host)
|
|
}
|