├── LFA ├── Dockerfile ├── LFA.c ├── Readme.md ├── docker_build.sh ├── docker_run.sh ├── doit.py ├── extconf.rb ├── iovecpwn.rb └── sandbox_patch ├── SimpleGC ├── Dockerfile ├── README.md ├── docker_build.sh ├── docker_run.sh ├── sgc.c └── shell.py ├── esprfs ├── Makefile ├── README.md ├── basebox │ ├── .vagrant │ │ └── machines │ │ │ └── default │ │ │ └── virtualbox │ │ │ ├── action_provision │ │ │ ├── action_set_name │ │ │ ├── creator_uid │ │ │ ├── id │ │ │ ├── index_uuid │ │ │ ├── synced_folders │ │ │ └── vagrant_cwd │ ├── Vagrantfile │ ├── build.sh │ ├── esprfs.ko │ └── vagrant-reboot.rb ├── file-mmu.c ├── inode.c ├── internal.h ├── kcompressor.c ├── kcompressor.h ├── pwn.c ├── pwn.sh └── service │ ├── .vagrant │ └── machines │ │ └── default │ │ └── virtualbox │ │ ├── action_provision │ │ ├── action_set_name │ │ ├── creator_uid │ │ ├── id │ │ ├── index_uuid │ │ ├── private_key │ │ ├── synced_folders │ │ └── vagrant_cwd │ └── Vagrantfile └── m0rph ├── dump_sc.py ├── keycheck.s └── morph.c /LFA/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkth/34c3ctf/HEAD/LFA/Dockerfile -------------------------------------------------------------------------------- /LFA/LFA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkth/34c3ctf/HEAD/LFA/LFA.c -------------------------------------------------------------------------------- /LFA/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkth/34c3ctf/HEAD/LFA/Readme.md -------------------------------------------------------------------------------- /LFA/docker_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | docker build -t bkth/lfa . 3 | -------------------------------------------------------------------------------- /LFA/docker_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkth/34c3ctf/HEAD/LFA/docker_run.sh -------------------------------------------------------------------------------- /LFA/doit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkth/34c3ctf/HEAD/LFA/doit.py -------------------------------------------------------------------------------- /LFA/extconf.rb: -------------------------------------------------------------------------------- 1 | require 'mkmf' 2 | 3 | create_makefile('LFA') 4 | -------------------------------------------------------------------------------- /LFA/iovecpwn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkth/34c3ctf/HEAD/LFA/iovecpwn.rb -------------------------------------------------------------------------------- /LFA/sandbox_patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkth/34c3ctf/HEAD/LFA/sandbox_patch -------------------------------------------------------------------------------- /SimpleGC/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkth/34c3ctf/HEAD/SimpleGC/Dockerfile -------------------------------------------------------------------------------- /SimpleGC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkth/34c3ctf/HEAD/SimpleGC/README.md -------------------------------------------------------------------------------- /SimpleGC/docker_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | docker build -t bkth/sgc . 3 | -------------------------------------------------------------------------------- /SimpleGC/docker_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkth/34c3ctf/HEAD/SimpleGC/docker_run.sh -------------------------------------------------------------------------------- /SimpleGC/sgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkth/34c3ctf/HEAD/SimpleGC/sgc.c -------------------------------------------------------------------------------- /SimpleGC/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkth/34c3ctf/HEAD/SimpleGC/shell.py -------------------------------------------------------------------------------- /esprfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkth/34c3ctf/HEAD/esprfs/Makefile -------------------------------------------------------------------------------- /esprfs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkth/34c3ctf/HEAD/esprfs/README.md -------------------------------------------------------------------------------- /esprfs/basebox/.vagrant/machines/default/virtualbox/action_provision: -------------------------------------------------------------------------------- 1 | 1.5:b2a2e7e3-143c-462c-bebd-3803571a2c56 -------------------------------------------------------------------------------- /esprfs/basebox/.vagrant/machines/default/virtualbox/action_set_name: -------------------------------------------------------------------------------- 1 | 1514411086 -------------------------------------------------------------------------------- /esprfs/basebox/.vagrant/machines/default/virtualbox/creator_uid: -------------------------------------------------------------------------------- 1 | 501 -------------------------------------------------------------------------------- /esprfs/basebox/.vagrant/machines/default/virtualbox/id: -------------------------------------------------------------------------------- 1 | b2a2e7e3-143c-462c-bebd-3803571a2c56 -------------------------------------------------------------------------------- /esprfs/basebox/.vagrant/machines/default/virtualbox/index_uuid: -------------------------------------------------------------------------------- 1 | de50eed03e0c47daac601f89df2bd494 -------------------------------------------------------------------------------- /esprfs/basebox/.vagrant/machines/default/virtualbox/synced_folders: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /esprfs/basebox/.vagrant/machines/default/virtualbox/vagrant_cwd: -------------------------------------------------------------------------------- 1 | /Users/bkth/34c3ctf/esprfs/basebox -------------------------------------------------------------------------------- /esprfs/basebox/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkth/34c3ctf/HEAD/esprfs/basebox/Vagrantfile -------------------------------------------------------------------------------- /esprfs/basebox/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkth/34c3ctf/HEAD/esprfs/basebox/build.sh -------------------------------------------------------------------------------- /esprfs/basebox/esprfs.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkth/34c3ctf/HEAD/esprfs/basebox/esprfs.ko -------------------------------------------------------------------------------- /esprfs/basebox/vagrant-reboot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkth/34c3ctf/HEAD/esprfs/basebox/vagrant-reboot.rb -------------------------------------------------------------------------------- /esprfs/file-mmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkth/34c3ctf/HEAD/esprfs/file-mmu.c -------------------------------------------------------------------------------- /esprfs/inode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkth/34c3ctf/HEAD/esprfs/inode.c -------------------------------------------------------------------------------- /esprfs/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkth/34c3ctf/HEAD/esprfs/internal.h -------------------------------------------------------------------------------- /esprfs/kcompressor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkth/34c3ctf/HEAD/esprfs/kcompressor.c -------------------------------------------------------------------------------- /esprfs/kcompressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkth/34c3ctf/HEAD/esprfs/kcompressor.h -------------------------------------------------------------------------------- /esprfs/pwn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkth/34c3ctf/HEAD/esprfs/pwn.c -------------------------------------------------------------------------------- /esprfs/pwn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkth/34c3ctf/HEAD/esprfs/pwn.sh -------------------------------------------------------------------------------- /esprfs/service/.vagrant/machines/default/virtualbox/action_provision: -------------------------------------------------------------------------------- 1 | 1.5:85a3c780-ab12-4a97-805e-2715612b43f9 -------------------------------------------------------------------------------- /esprfs/service/.vagrant/machines/default/virtualbox/action_set_name: -------------------------------------------------------------------------------- 1 | 1514411819 -------------------------------------------------------------------------------- /esprfs/service/.vagrant/machines/default/virtualbox/creator_uid: -------------------------------------------------------------------------------- 1 | 501 -------------------------------------------------------------------------------- /esprfs/service/.vagrant/machines/default/virtualbox/id: -------------------------------------------------------------------------------- 1 | 85a3c780-ab12-4a97-805e-2715612b43f9 -------------------------------------------------------------------------------- /esprfs/service/.vagrant/machines/default/virtualbox/index_uuid: -------------------------------------------------------------------------------- 1 | 21c3c368128e4b91a8ceb86677a94051 -------------------------------------------------------------------------------- /esprfs/service/.vagrant/machines/default/virtualbox/private_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkth/34c3ctf/HEAD/esprfs/service/.vagrant/machines/default/virtualbox/private_key -------------------------------------------------------------------------------- /esprfs/service/.vagrant/machines/default/virtualbox/synced_folders: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /esprfs/service/.vagrant/machines/default/virtualbox/vagrant_cwd: -------------------------------------------------------------------------------- 1 | /Users/bkth/34c3ctf/esprfs/service -------------------------------------------------------------------------------- /esprfs/service/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkth/34c3ctf/HEAD/esprfs/service/Vagrantfile -------------------------------------------------------------------------------- /m0rph/dump_sc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkth/34c3ctf/HEAD/m0rph/dump_sc.py -------------------------------------------------------------------------------- /m0rph/keycheck.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkth/34c3ctf/HEAD/m0rph/keycheck.s -------------------------------------------------------------------------------- /m0rph/morph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkth/34c3ctf/HEAD/m0rph/morph.c --------------------------------------------------------------------------------