├── .gitignore ├── Image ├── exec.png ├── lua.png └── upload.png ├── LICENSE ├── README.md ├── go.mod ├── go.sum ├── main.go ├── redisrce ├── exp.so └── redisrec.go └── utils └── utils.go /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /Image/exec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyylhn/redis_rce/HEAD/Image/exec.png -------------------------------------------------------------------------------- /Image/lua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyylhn/redis_rce/HEAD/Image/lua.png -------------------------------------------------------------------------------- /Image/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyylhn/redis_rce/HEAD/Image/upload.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyylhn/redis_rce/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyylhn/redis_rce/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyylhn/redis_rce/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyylhn/redis_rce/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyylhn/redis_rce/HEAD/main.go -------------------------------------------------------------------------------- /redisrce/exp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyylhn/redis_rce/HEAD/redisrce/exp.so -------------------------------------------------------------------------------- /redisrce/redisrec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyylhn/redis_rce/HEAD/redisrce/redisrec.go -------------------------------------------------------------------------------- /utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyylhn/redis_rce/HEAD/utils/utils.go --------------------------------------------------------------------------------