├── 35c3ctf └── pwn_namespaces │ ├── Dockerfile │ ├── README.md │ ├── binaries.c │ ├── exploit.py │ └── namespaces ├── README.md ├── cscg_2020 ├── captcha.md ├── evmoji.md ├── follow_the_white_rabbit_cave.md ├── follow_the_white_rabbit_datamining.md ├── intro_crypto1.md ├── intro_crypto2.md ├── intro_crypto3.md ├── intro_pwn1.md ├── intro_pwn2.md ├── intro_pwn3.md ├── intro_rev1.md ├── intro_rev2.md ├── intro_rev3.md ├── intro_steg1.md ├── intro_steg2.md ├── intro_steg3.md ├── local_fun_inclusion.md ├── polyrun.md ├── reme_part_1.md ├── reme_part_2.md ├── ropnop.md ├── rsa_service.md ├── sanity_check.md ├── squirrel_as_a_service.md ├── staywoke_shop.md ├── win_eXPerience_1.md ├── win_eXPerience_2.md └── xmas_shopping_site.md ├── defcon_quals_2018 └── pwn_124_its_a_me │ ├── README.md │ ├── exploit.py │ ├── libc.so.6 │ ├── mario │ └── pow.py ├── google_ctf_2020 ├── sandbox_namespacefs │ ├── README.md │ ├── nsfs.cc │ └── nsfs.proto └── sandbox_threading │ └── README.md ├── google_ctf_quals_2018 └── pwn_283_execve_sandbox │ ├── README.md │ ├── execve-sandbox.c │ └── exploit.py ├── hxp_ctf_2017 ├── pwn_200_sandb0x │ ├── README.md │ ├── exploit.py │ └── wrapper.py └── pwn_300_hardened_flag_store │ ├── README.md │ ├── exploit.py │ └── flag_store ├── kaizen_ctf_2017 ├── Riggity_Wrecked_700 │ ├── README.md │ ├── exploit.py │ └── validator └── heapy_800 │ ├── README.md │ ├── exploit.py │ └── heapy ├── midnight_sun_ctf_quals_2019 ├── pwn_gissa2 │ ├── README.md │ └── gissa_igen └── pwn_hfs_vm │ ├── README.md │ ├── exploit.py │ └── hfs-vm └── polictf_2017 └── lamermi_484 ├── AverageService.java ├── MyClient.java ├── Payload0.java ├── Payload1.java ├── Payload2.java ├── Payload3.java └── README.md /35c3ctf/pwn_namespaces/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/35c3ctf/pwn_namespaces/Dockerfile -------------------------------------------------------------------------------- /35c3ctf/pwn_namespaces/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/35c3ctf/pwn_namespaces/README.md -------------------------------------------------------------------------------- /35c3ctf/pwn_namespaces/binaries.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/35c3ctf/pwn_namespaces/binaries.c -------------------------------------------------------------------------------- /35c3ctf/pwn_namespaces/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/35c3ctf/pwn_namespaces/exploit.py -------------------------------------------------------------------------------- /35c3ctf/pwn_namespaces/namespaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/35c3ctf/pwn_namespaces/namespaces -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/README.md -------------------------------------------------------------------------------- /cscg_2020/captcha.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/cscg_2020/captcha.md -------------------------------------------------------------------------------- /cscg_2020/evmoji.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/cscg_2020/evmoji.md -------------------------------------------------------------------------------- /cscg_2020/follow_the_white_rabbit_cave.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/cscg_2020/follow_the_white_rabbit_cave.md -------------------------------------------------------------------------------- /cscg_2020/follow_the_white_rabbit_datamining.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/cscg_2020/follow_the_white_rabbit_datamining.md -------------------------------------------------------------------------------- /cscg_2020/intro_crypto1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/cscg_2020/intro_crypto1.md -------------------------------------------------------------------------------- /cscg_2020/intro_crypto2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/cscg_2020/intro_crypto2.md -------------------------------------------------------------------------------- /cscg_2020/intro_crypto3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/cscg_2020/intro_crypto3.md -------------------------------------------------------------------------------- /cscg_2020/intro_pwn1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/cscg_2020/intro_pwn1.md -------------------------------------------------------------------------------- /cscg_2020/intro_pwn2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/cscg_2020/intro_pwn2.md -------------------------------------------------------------------------------- /cscg_2020/intro_pwn3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/cscg_2020/intro_pwn3.md -------------------------------------------------------------------------------- /cscg_2020/intro_rev1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/cscg_2020/intro_rev1.md -------------------------------------------------------------------------------- /cscg_2020/intro_rev2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/cscg_2020/intro_rev2.md -------------------------------------------------------------------------------- /cscg_2020/intro_rev3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/cscg_2020/intro_rev3.md -------------------------------------------------------------------------------- /cscg_2020/intro_steg1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/cscg_2020/intro_steg1.md -------------------------------------------------------------------------------- /cscg_2020/intro_steg2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/cscg_2020/intro_steg2.md -------------------------------------------------------------------------------- /cscg_2020/intro_steg3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/cscg_2020/intro_steg3.md -------------------------------------------------------------------------------- /cscg_2020/local_fun_inclusion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/cscg_2020/local_fun_inclusion.md -------------------------------------------------------------------------------- /cscg_2020/polyrun.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/cscg_2020/polyrun.md -------------------------------------------------------------------------------- /cscg_2020/reme_part_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/cscg_2020/reme_part_1.md -------------------------------------------------------------------------------- /cscg_2020/reme_part_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/cscg_2020/reme_part_2.md -------------------------------------------------------------------------------- /cscg_2020/ropnop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/cscg_2020/ropnop.md -------------------------------------------------------------------------------- /cscg_2020/rsa_service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/cscg_2020/rsa_service.md -------------------------------------------------------------------------------- /cscg_2020/sanity_check.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/cscg_2020/sanity_check.md -------------------------------------------------------------------------------- /cscg_2020/squirrel_as_a_service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/cscg_2020/squirrel_as_a_service.md -------------------------------------------------------------------------------- /cscg_2020/staywoke_shop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/cscg_2020/staywoke_shop.md -------------------------------------------------------------------------------- /cscg_2020/win_eXPerience_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/cscg_2020/win_eXPerience_1.md -------------------------------------------------------------------------------- /cscg_2020/win_eXPerience_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/cscg_2020/win_eXPerience_2.md -------------------------------------------------------------------------------- /cscg_2020/xmas_shopping_site.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/cscg_2020/xmas_shopping_site.md -------------------------------------------------------------------------------- /defcon_quals_2018/pwn_124_its_a_me/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/defcon_quals_2018/pwn_124_its_a_me/README.md -------------------------------------------------------------------------------- /defcon_quals_2018/pwn_124_its_a_me/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/defcon_quals_2018/pwn_124_its_a_me/exploit.py -------------------------------------------------------------------------------- /defcon_quals_2018/pwn_124_its_a_me/libc.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/defcon_quals_2018/pwn_124_its_a_me/libc.so.6 -------------------------------------------------------------------------------- /defcon_quals_2018/pwn_124_its_a_me/mario: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/defcon_quals_2018/pwn_124_its_a_me/mario -------------------------------------------------------------------------------- /defcon_quals_2018/pwn_124_its_a_me/pow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/defcon_quals_2018/pwn_124_its_a_me/pow.py -------------------------------------------------------------------------------- /google_ctf_2020/sandbox_namespacefs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/google_ctf_2020/sandbox_namespacefs/README.md -------------------------------------------------------------------------------- /google_ctf_2020/sandbox_namespacefs/nsfs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/google_ctf_2020/sandbox_namespacefs/nsfs.cc -------------------------------------------------------------------------------- /google_ctf_2020/sandbox_namespacefs/nsfs.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/google_ctf_2020/sandbox_namespacefs/nsfs.proto -------------------------------------------------------------------------------- /google_ctf_2020/sandbox_threading/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/google_ctf_2020/sandbox_threading/README.md -------------------------------------------------------------------------------- /google_ctf_quals_2018/pwn_283_execve_sandbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/google_ctf_quals_2018/pwn_283_execve_sandbox/README.md -------------------------------------------------------------------------------- /google_ctf_quals_2018/pwn_283_execve_sandbox/execve-sandbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/google_ctf_quals_2018/pwn_283_execve_sandbox/execve-sandbox.c -------------------------------------------------------------------------------- /google_ctf_quals_2018/pwn_283_execve_sandbox/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/google_ctf_quals_2018/pwn_283_execve_sandbox/exploit.py -------------------------------------------------------------------------------- /hxp_ctf_2017/pwn_200_sandb0x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/hxp_ctf_2017/pwn_200_sandb0x/README.md -------------------------------------------------------------------------------- /hxp_ctf_2017/pwn_200_sandb0x/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/hxp_ctf_2017/pwn_200_sandb0x/exploit.py -------------------------------------------------------------------------------- /hxp_ctf_2017/pwn_200_sandb0x/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/hxp_ctf_2017/pwn_200_sandb0x/wrapper.py -------------------------------------------------------------------------------- /hxp_ctf_2017/pwn_300_hardened_flag_store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/hxp_ctf_2017/pwn_300_hardened_flag_store/README.md -------------------------------------------------------------------------------- /hxp_ctf_2017/pwn_300_hardened_flag_store/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/hxp_ctf_2017/pwn_300_hardened_flag_store/exploit.py -------------------------------------------------------------------------------- /hxp_ctf_2017/pwn_300_hardened_flag_store/flag_store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/hxp_ctf_2017/pwn_300_hardened_flag_store/flag_store -------------------------------------------------------------------------------- /kaizen_ctf_2017/Riggity_Wrecked_700/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/kaizen_ctf_2017/Riggity_Wrecked_700/README.md -------------------------------------------------------------------------------- /kaizen_ctf_2017/Riggity_Wrecked_700/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/kaizen_ctf_2017/Riggity_Wrecked_700/exploit.py -------------------------------------------------------------------------------- /kaizen_ctf_2017/Riggity_Wrecked_700/validator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/kaizen_ctf_2017/Riggity_Wrecked_700/validator -------------------------------------------------------------------------------- /kaizen_ctf_2017/heapy_800/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/kaizen_ctf_2017/heapy_800/README.md -------------------------------------------------------------------------------- /kaizen_ctf_2017/heapy_800/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/kaizen_ctf_2017/heapy_800/exploit.py -------------------------------------------------------------------------------- /kaizen_ctf_2017/heapy_800/heapy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/kaizen_ctf_2017/heapy_800/heapy -------------------------------------------------------------------------------- /midnight_sun_ctf_quals_2019/pwn_gissa2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/midnight_sun_ctf_quals_2019/pwn_gissa2/README.md -------------------------------------------------------------------------------- /midnight_sun_ctf_quals_2019/pwn_gissa2/gissa_igen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/midnight_sun_ctf_quals_2019/pwn_gissa2/gissa_igen -------------------------------------------------------------------------------- /midnight_sun_ctf_quals_2019/pwn_hfs_vm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/midnight_sun_ctf_quals_2019/pwn_hfs_vm/README.md -------------------------------------------------------------------------------- /midnight_sun_ctf_quals_2019/pwn_hfs_vm/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/midnight_sun_ctf_quals_2019/pwn_hfs_vm/exploit.py -------------------------------------------------------------------------------- /midnight_sun_ctf_quals_2019/pwn_hfs_vm/hfs-vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/midnight_sun_ctf_quals_2019/pwn_hfs_vm/hfs-vm -------------------------------------------------------------------------------- /polictf_2017/lamermi_484/AverageService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/polictf_2017/lamermi_484/AverageService.java -------------------------------------------------------------------------------- /polictf_2017/lamermi_484/MyClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/polictf_2017/lamermi_484/MyClient.java -------------------------------------------------------------------------------- /polictf_2017/lamermi_484/Payload0.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/polictf_2017/lamermi_484/Payload0.java -------------------------------------------------------------------------------- /polictf_2017/lamermi_484/Payload1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/polictf_2017/lamermi_484/Payload1.java -------------------------------------------------------------------------------- /polictf_2017/lamermi_484/Payload2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/polictf_2017/lamermi_484/Payload2.java -------------------------------------------------------------------------------- /polictf_2017/lamermi_484/Payload3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/polictf_2017/lamermi_484/Payload3.java -------------------------------------------------------------------------------- /polictf_2017/lamermi_484/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LevitatingLion/ctf-writeups/HEAD/polictf_2017/lamermi_484/README.md --------------------------------------------------------------------------------