├── .gitignore ├── README.md ├── exploit.lua ├── luajit-expdev.c └── sandbox-escape ├── Dockerfile ├── README.md ├── exp-gen.py └── hax.lua /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xbigshaq/luajit-pwn/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xbigshaq/luajit-pwn/HEAD/README.md -------------------------------------------------------------------------------- /exploit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xbigshaq/luajit-pwn/HEAD/exploit.lua -------------------------------------------------------------------------------- /luajit-expdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xbigshaq/luajit-pwn/HEAD/luajit-expdev.c -------------------------------------------------------------------------------- /sandbox-escape/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xbigshaq/luajit-pwn/HEAD/sandbox-escape/Dockerfile -------------------------------------------------------------------------------- /sandbox-escape/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xbigshaq/luajit-pwn/HEAD/sandbox-escape/README.md -------------------------------------------------------------------------------- /sandbox-escape/exp-gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xbigshaq/luajit-pwn/HEAD/sandbox-escape/exp-gen.py -------------------------------------------------------------------------------- /sandbox-escape/hax.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xbigshaq/luajit-pwn/HEAD/sandbox-escape/hax.lua --------------------------------------------------------------------------------