mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-21 20:18:06 +02:00
[pitboss] phase 17: Track L.15 — Gin / Echo / Fiber / Chi adapters + Axum / Actix / Rocket / Warp adapters
This commit is contained in:
parent
5393fe22f2
commit
2b96c6005b
33 changed files with 3247 additions and 27 deletions
26
tests/dynamic_fixtures/go_frameworks/gin/benign.go
Normal file
26
tests/dynamic_fixtures/go_frameworks/gin/benign.go
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
// Phase 17 (Track L.15) — gin benign control fixture.
|
||||
//
|
||||
// The /run route accepts a `cmd` query parameter but only runs an
|
||||
// allow-listed command, so the sink never sees attacker-controlled
|
||||
// bytes. Same adapter binding as the vuln fixture.
|
||||
package main
|
||||
|
||||
import (
|
||||
"os/exec"
|
||||
|
||||
"github.com/gin-gonic/gin"
|
||||
)
|
||||
|
||||
func Run(c *gin.Context) {
|
||||
cmd := c.Query("cmd")
|
||||
allow := map[string]string{"ls": "ls", "ps": "ps"}
|
||||
if safe, ok := allow[cmd]; ok {
|
||||
_ = exec.Command(safe).Run()
|
||||
}
|
||||
}
|
||||
|
||||
func main() {
|
||||
r := gin.Default()
|
||||
r.GET("/run", Run)
|
||||
_ = r
|
||||
}
|
||||
24
tests/dynamic_fixtures/go_frameworks/gin/vuln.go
Normal file
24
tests/dynamic_fixtures/go_frameworks/gin/vuln.go
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
// Phase 17 (Track L.15) — gin CMDI vuln fixture.
|
||||
//
|
||||
// The /run route forwards a `cmd` query parameter straight into
|
||||
// `os/exec.Command`, so any attacker who reaches the route can
|
||||
// execute arbitrary shell. Adapter binding: `r.GET("/run", Run)`
|
||||
// with `cmd` flowing through `c.Query`.
|
||||
package main
|
||||
|
||||
import (
|
||||
"os/exec"
|
||||
|
||||
"github.com/gin-gonic/gin"
|
||||
)
|
||||
|
||||
func Run(c *gin.Context) {
|
||||
cmd := c.Query("cmd")
|
||||
_ = exec.Command("sh", "-c", cmd).Run()
|
||||
}
|
||||
|
||||
func main() {
|
||||
r := gin.Default()
|
||||
r.GET("/run", Run)
|
||||
_ = r
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue