├── .github └── workflows │ └── build.yaml ├── .gitignore ├── .goreleaser.yaml ├── Makefile ├── README.md ├── go.mod ├── go.sum ├── main.go └── nginx-ingress ├── Makefile ├── bad_config.conf ├── danger.c ├── danger.so ├── danger.so.old ├── exploit.go ├── payload.go └── validate.json /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esonhugh/ingressNightmare-CVE-2025-1974-exps/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /.goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esonhugh/ingressNightmare-CVE-2025-1974-exps/HEAD/.goreleaser.yaml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esonhugh/ingressNightmare-CVE-2025-1974-exps/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esonhugh/ingressNightmare-CVE-2025-1974-exps/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esonhugh/ingressNightmare-CVE-2025-1974-exps/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esonhugh/ingressNightmare-CVE-2025-1974-exps/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esonhugh/ingressNightmare-CVE-2025-1974-exps/HEAD/main.go -------------------------------------------------------------------------------- /nginx-ingress/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esonhugh/ingressNightmare-CVE-2025-1974-exps/HEAD/nginx-ingress/Makefile -------------------------------------------------------------------------------- /nginx-ingress/bad_config.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esonhugh/ingressNightmare-CVE-2025-1974-exps/HEAD/nginx-ingress/bad_config.conf -------------------------------------------------------------------------------- /nginx-ingress/danger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esonhugh/ingressNightmare-CVE-2025-1974-exps/HEAD/nginx-ingress/danger.c -------------------------------------------------------------------------------- /nginx-ingress/danger.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esonhugh/ingressNightmare-CVE-2025-1974-exps/HEAD/nginx-ingress/danger.so -------------------------------------------------------------------------------- /nginx-ingress/danger.so.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esonhugh/ingressNightmare-CVE-2025-1974-exps/HEAD/nginx-ingress/danger.so.old -------------------------------------------------------------------------------- /nginx-ingress/exploit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esonhugh/ingressNightmare-CVE-2025-1974-exps/HEAD/nginx-ingress/exploit.go -------------------------------------------------------------------------------- /nginx-ingress/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esonhugh/ingressNightmare-CVE-2025-1974-exps/HEAD/nginx-ingress/payload.go -------------------------------------------------------------------------------- /nginx-ingress/validate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esonhugh/ingressNightmare-CVE-2025-1974-exps/HEAD/nginx-ingress/validate.json --------------------------------------------------------------------------------