├── .gitignore ├── 1.png ├── LICENSE ├── README.md ├── RedisModulesSDK ├── Makefile ├── exp │ ├── Makefile │ └── exp.c ├── redismodule.h └── rmutil │ ├── Makefile │ ├── alloc.c │ ├── alloc.h │ ├── heap.c │ ├── heap.h │ ├── logging.h │ ├── periodic.c │ ├── periodic.h │ ├── priority_queue.c │ ├── priority_queue.h │ ├── sds.c │ ├── sds.h │ ├── sdsalloc.h │ ├── strings.c │ ├── strings.h │ ├── test.h │ ├── test_heap.c │ ├── test_periodic.c │ ├── test_priority_queue.c │ ├── test_util.h │ ├── test_vector.c │ ├── util.c │ ├── util.h │ ├── vector.c │ └── vector.h └── redis-master.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulhub/redis-rogue-getshell/HEAD/.gitignore -------------------------------------------------------------------------------- /1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulhub/redis-rogue-getshell/HEAD/1.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulhub/redis-rogue-getshell/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulhub/redis-rogue-getshell/HEAD/README.md -------------------------------------------------------------------------------- /RedisModulesSDK/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulhub/redis-rogue-getshell/HEAD/RedisModulesSDK/Makefile -------------------------------------------------------------------------------- /RedisModulesSDK/exp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulhub/redis-rogue-getshell/HEAD/RedisModulesSDK/exp/Makefile -------------------------------------------------------------------------------- /RedisModulesSDK/exp/exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulhub/redis-rogue-getshell/HEAD/RedisModulesSDK/exp/exp.c -------------------------------------------------------------------------------- /RedisModulesSDK/redismodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulhub/redis-rogue-getshell/HEAD/RedisModulesSDK/redismodule.h -------------------------------------------------------------------------------- /RedisModulesSDK/rmutil/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulhub/redis-rogue-getshell/HEAD/RedisModulesSDK/rmutil/Makefile -------------------------------------------------------------------------------- /RedisModulesSDK/rmutil/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulhub/redis-rogue-getshell/HEAD/RedisModulesSDK/rmutil/alloc.c -------------------------------------------------------------------------------- /RedisModulesSDK/rmutil/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulhub/redis-rogue-getshell/HEAD/RedisModulesSDK/rmutil/alloc.h -------------------------------------------------------------------------------- /RedisModulesSDK/rmutil/heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulhub/redis-rogue-getshell/HEAD/RedisModulesSDK/rmutil/heap.c -------------------------------------------------------------------------------- /RedisModulesSDK/rmutil/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulhub/redis-rogue-getshell/HEAD/RedisModulesSDK/rmutil/heap.h -------------------------------------------------------------------------------- /RedisModulesSDK/rmutil/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulhub/redis-rogue-getshell/HEAD/RedisModulesSDK/rmutil/logging.h -------------------------------------------------------------------------------- /RedisModulesSDK/rmutil/periodic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulhub/redis-rogue-getshell/HEAD/RedisModulesSDK/rmutil/periodic.c -------------------------------------------------------------------------------- /RedisModulesSDK/rmutil/periodic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulhub/redis-rogue-getshell/HEAD/RedisModulesSDK/rmutil/periodic.h -------------------------------------------------------------------------------- /RedisModulesSDK/rmutil/priority_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulhub/redis-rogue-getshell/HEAD/RedisModulesSDK/rmutil/priority_queue.c -------------------------------------------------------------------------------- /RedisModulesSDK/rmutil/priority_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulhub/redis-rogue-getshell/HEAD/RedisModulesSDK/rmutil/priority_queue.h -------------------------------------------------------------------------------- /RedisModulesSDK/rmutil/sds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulhub/redis-rogue-getshell/HEAD/RedisModulesSDK/rmutil/sds.c -------------------------------------------------------------------------------- /RedisModulesSDK/rmutil/sds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulhub/redis-rogue-getshell/HEAD/RedisModulesSDK/rmutil/sds.h -------------------------------------------------------------------------------- /RedisModulesSDK/rmutil/sdsalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulhub/redis-rogue-getshell/HEAD/RedisModulesSDK/rmutil/sdsalloc.h -------------------------------------------------------------------------------- /RedisModulesSDK/rmutil/strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulhub/redis-rogue-getshell/HEAD/RedisModulesSDK/rmutil/strings.c -------------------------------------------------------------------------------- /RedisModulesSDK/rmutil/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulhub/redis-rogue-getshell/HEAD/RedisModulesSDK/rmutil/strings.h -------------------------------------------------------------------------------- /RedisModulesSDK/rmutil/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulhub/redis-rogue-getshell/HEAD/RedisModulesSDK/rmutil/test.h -------------------------------------------------------------------------------- /RedisModulesSDK/rmutil/test_heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulhub/redis-rogue-getshell/HEAD/RedisModulesSDK/rmutil/test_heap.c -------------------------------------------------------------------------------- /RedisModulesSDK/rmutil/test_periodic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulhub/redis-rogue-getshell/HEAD/RedisModulesSDK/rmutil/test_periodic.c -------------------------------------------------------------------------------- /RedisModulesSDK/rmutil/test_priority_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulhub/redis-rogue-getshell/HEAD/RedisModulesSDK/rmutil/test_priority_queue.c -------------------------------------------------------------------------------- /RedisModulesSDK/rmutil/test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulhub/redis-rogue-getshell/HEAD/RedisModulesSDK/rmutil/test_util.h -------------------------------------------------------------------------------- /RedisModulesSDK/rmutil/test_vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulhub/redis-rogue-getshell/HEAD/RedisModulesSDK/rmutil/test_vector.c -------------------------------------------------------------------------------- /RedisModulesSDK/rmutil/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulhub/redis-rogue-getshell/HEAD/RedisModulesSDK/rmutil/util.c -------------------------------------------------------------------------------- /RedisModulesSDK/rmutil/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulhub/redis-rogue-getshell/HEAD/RedisModulesSDK/rmutil/util.h -------------------------------------------------------------------------------- /RedisModulesSDK/rmutil/vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulhub/redis-rogue-getshell/HEAD/RedisModulesSDK/rmutil/vector.c -------------------------------------------------------------------------------- /RedisModulesSDK/rmutil/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulhub/redis-rogue-getshell/HEAD/RedisModulesSDK/rmutil/vector.h -------------------------------------------------------------------------------- /redis-master.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulhub/redis-rogue-getshell/HEAD/redis-master.py --------------------------------------------------------------------------------