├── FLAGS.md ├── PRIMER.md ├── README.md ├── b-64-b-tuff ├── Makefile ├── README.md ├── challenge │ ├── Dockerfile │ ├── b-64-b-tuff.xinetd │ ├── src │ │ ├── Makefile │ │ ├── b-64-b-tuff.c │ │ └── flag.txt │ └── xinetd.conf ├── deployment │ ├── deploy.yaml │ └── service.yaml ├── distfiles │ ├── Makefile │ ├── README.md │ └── b-64-b-tuff.c └── solution │ ├── command_set.txt │ ├── run_raw │ ├── Makefile │ └── run_raw.c │ ├── shellcode │ ├── shellcode.asm │ ├── shellcode2.asm │ └── shellcode3.asm │ └── sploit.rb ├── docker-compose.yml ├── dontcrash ├── Makefile ├── README.md ├── challenge │ ├── Dockerfile │ ├── dontcrash.xinetd │ ├── src │ │ ├── Makefile │ │ ├── dontcrash.c │ │ └── flag.h │ └── xinetd.conf ├── deployment │ ├── deploy.yaml │ └── service.yaml └── distfiles │ ├── Makefile │ ├── README.md │ └── dontcrash.c ├── easyauth ├── Makefile ├── challenge │ ├── Dockerfile │ └── src │ │ ├── auth.php │ │ ├── index.php │ │ └── login_form.php ├── deployment │ ├── deploy.yaml │ └── service.yaml ├── distfiles │ ├── README.md │ └── index.php └── solution │ └── README.md ├── easycap ├── distfiles │ ├── README.md │ └── easycap.pcap └── solution │ └── README.md ├── easyreverse ├── challenge │ ├── Makefile │ └── easyreverse.c ├── distfiles │ ├── easyreverse-32 │ └── easyreverse-64 └── solution │ └── README.md ├── hashecute ├── Makefile ├── README.md ├── challenge │ ├── Dockerfile │ ├── hashecute.xinetd │ └── src │ │ ├── Makefile │ │ ├── flag.txt │ │ └── hashecute.c ├── deployment │ ├── deploy.yaml │ └── service.yaml ├── distfiles │ ├── Makefile │ ├── README.md │ └── hashecute.c └── solution │ └── sploit.rb ├── in-plain-sight ├── README.md ├── challenge │ ├── README.md │ ├── flag.txt │ └── poracle.diff ├── distfiles │ └── README.md └── solution │ └── solution.txt ├── nibbler ├── Makefile ├── README.md ├── challenge │ ├── Dockerfile │ ├── nibbler.xinetd │ └── src │ │ ├── Makefile │ │ ├── flag.txt │ │ └── nibbler.c ├── deployment │ ├── deploy.yaml │ └── service.yaml ├── distfiles │ ├── README.rd │ └── nibbler.c └── solution │ └── README.md ├── readfile-nz ├── Makefile ├── README.md ├── challenge │ ├── Dockerfile │ ├── readfile-nz.xinetd │ ├── src │ │ ├── Makefile │ │ ├── flag.txt │ │ └── readfile-nz.c │ └── xinetd.conf ├── deployment │ ├── deploy.yaml │ └── service.yaml ├── distfiles │ ├── Makefile │ ├── README.md │ └── readfile-nz.c └── solution │ └── pwn.asm ├── readfile ├── Makefile ├── README.md ├── challenge │ ├── Dockerfile │ ├── readfile.xinetd │ ├── src │ │ ├── Makefile │ │ ├── flag.txt │ │ └── readfile.c │ └── xinetd.conf ├── deployment │ ├── deploy.yaml │ └── service.yaml ├── distfiles │ ├── Makefile │ ├── README.md │ └── readfile.c └── solution │ └── pwn.asm ├── readmem-nz ├── Makefile ├── README.md ├── challenge │ ├── Dockerfile │ ├── readmem-nz.xinetd │ ├── src │ │ ├── Makefile │ │ ├── flag.h │ │ └── readmem-nz.c │ └── xinetd.conf ├── deployment │ ├── deploy.yaml │ └── service.yaml ├── distfiles │ ├── Makefile │ ├── README.md │ └── readmem-nz.c └── solution │ └── pwn.asm ├── readmem ├── Makefile ├── README.md ├── challenge │ ├── Dockerfile │ ├── readmem.xinetd │ ├── src │ │ ├── Makefile │ │ ├── flag.h │ │ └── readmem.c │ └── xinetd.conf ├── deployment │ ├── deploy.yaml │ └── service.yaml ├── distfiles │ ├── Makefile │ ├── README.md │ └── readmem.c └── solution │ └── pwn.asm ├── readstack-nz ├── Makefile ├── README.md ├── challenge │ ├── Dockerfile │ ├── readstack-nz.xinetd │ ├── src │ │ ├── Makefile │ │ ├── flag.h │ │ └── readstack-nz.c │ └── xinetd.conf ├── deployment │ ├── deploy.yaml │ └── service.yaml ├── distfiles │ ├── Makefile │ ├── README.md │ └── readstack-nz.c └── solution │ └── pwn.asm ├── readstack ├── Makefile ├── README.md ├── challenge │ ├── Dockerfile │ ├── readstack.xinetd │ ├── src │ │ ├── Makefile │ │ ├── flag.h │ │ └── readstack.c │ └── xinetd.conf ├── deployment │ ├── deploy.yaml │ └── service.yaml ├── distfiles │ ├── Makefile │ ├── README.md │ └── readstack.c └── solution │ └── pwn.asm ├── seteax-nz ├── Makefile ├── README.md ├── challenge │ ├── Dockerfile │ ├── seteax-nz.xinetd │ ├── src │ │ ├── Makefile │ │ ├── flag.h │ │ └── seteax-nz.c │ └── xinetd.conf ├── deployment │ ├── deploy.yaml │ └── service.yaml ├── distfiles │ ├── Makefile │ ├── README.md │ └── seteax-nz.c └── solution │ └── pwn.asm ├── seteax ├── Makefile ├── README.md ├── challenge │ ├── Dockerfile │ ├── seteax.xinetd │ ├── src │ │ ├── Makefile │ │ ├── flag.h │ │ └── seteax.c │ └── xinetd.conf ├── deployment │ ├── deploy.yaml │ └── service.yaml ├── distfiles │ ├── Makefile │ ├── README.md │ └── seteax.c └── solution │ └── pwn.asm ├── shortest ├── Makefile ├── challenge │ ├── Dockerfile │ ├── shortest.xinetd │ └── src │ │ ├── Makefile │ │ ├── README.md │ │ ├── flag.txt │ │ ├── shortest │ │ └── shortest.c ├── deployment │ ├── deploy.yaml │ └── service.yaml ├── distfiles │ ├── README.md │ └── shortest └── solution │ └── README.md ├── skipper ├── README.md ├── challenge │ ├── Makefile │ └── skipper.c ├── distfiles │ ├── README.md │ ├── skipper-32 │ └── skipper-64 └── solution │ └── README.md ├── skipper2 ├── challenge │ ├── Makefile │ └── skipper2.c ├── distfiles │ ├── README.md │ ├── skipper2-32 │ └── skipper2-64 └── solution │ └── README.md ├── tools ├── Makefile ├── assemble-to-stdout.rb ├── binary-to-string.rb └── run-raw-code.c ├── vhash ├── Makefile ├── challenge │ ├── Dockerfile │ ├── c_src │ │ ├── Makefile │ │ ├── vhash │ │ └── vhash.c │ └── php_src │ │ ├── auth.php │ │ ├── index.php │ │ └── login_form.php ├── deployment │ ├── deploy.yaml │ └── service.yaml ├── distfiles │ ├── README.md │ ├── index.php │ └── vhash └── solution │ └── README.md ├── writemem-nz ├── Makefile ├── README.md ├── challenge │ ├── Dockerfile │ ├── src │ │ ├── Makefile │ │ ├── flag.h │ │ └── writemem-nz.c │ ├── writemem-nz.xinetd │ └── xinetd.conf ├── deployment │ ├── deploy.yaml │ └── service.yaml ├── distfiles │ ├── Makefile │ ├── README.md │ └── writemem-nz.c └── solution │ └── pwn.asm ├── writemem ├── Makefile ├── README.md ├── challenge │ ├── Dockerfile │ ├── src │ │ ├── Makefile │ │ ├── flag.h │ │ └── writemem.c │ ├── writemem.xinetd │ └── xinetd.conf ├── deployment │ ├── deploy.yaml │ └── service.yaml ├── distfiles │ ├── Makefile │ ├── README.md │ └── writemem.c └── solution │ └── pwn.asm ├── writestack-nz ├── Makefile ├── README.md ├── challenge │ ├── Dockerfile │ ├── src │ │ ├── Makefile │ │ ├── flag.h │ │ └── writestack-nz.c │ ├── writestack-nz.xinetd │ └── xinetd.conf ├── deployment │ ├── deploy.yaml │ └── service.yaml ├── distfiles │ ├── Makefile │ ├── README.md │ └── writestack-nz.c └── solution │ └── pwn.asm ├── writestack ├── Makefile ├── README.md ├── challenge │ ├── Dockerfile │ ├── src │ │ ├── Makefile │ │ ├── flag.h │ │ └── writestack.c │ ├── writestack.xinetd │ └── xinetd.conf ├── deployment │ ├── deploy.yaml │ └── service.yaml ├── distfiles │ ├── Makefile │ ├── README.md │ └── writestack.c └── solution │ └── pwn.asm └── ximage ├── challenge ├── README.md ├── create_code.rb ├── embed_code.rb └── images │ ├── 2017_logo_small2.bmp │ ├── 660px-San_Francisco_districts_map.bmp │ ├── alcatraz.bmp │ ├── angry_cow.bmp │ ├── fireescape.bmp │ ├── happycow.bmp │ └── neoncow.bmp ├── distfiles ├── 2017_logo_small2.bmp ├── 660px-San_Francisco_districts_map.bmp ├── README.md ├── alcatraz.bmp ├── angry_cow.bmp ├── fireescape.bmp ├── happycow.bmp └── neoncow.bmp └── solution ├── README.md ├── extract_code.rb └── run_raw_code.c /FLAGS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/FLAGS.md -------------------------------------------------------------------------------- /PRIMER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/PRIMER.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/README.md -------------------------------------------------------------------------------- /b-64-b-tuff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/b-64-b-tuff/Makefile -------------------------------------------------------------------------------- /b-64-b-tuff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/b-64-b-tuff/README.md -------------------------------------------------------------------------------- /b-64-b-tuff/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/b-64-b-tuff/challenge/Dockerfile -------------------------------------------------------------------------------- /b-64-b-tuff/challenge/b-64-b-tuff.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/b-64-b-tuff/challenge/b-64-b-tuff.xinetd -------------------------------------------------------------------------------- /b-64-b-tuff/challenge/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/b-64-b-tuff/challenge/src/Makefile -------------------------------------------------------------------------------- /b-64-b-tuff/challenge/src/b-64-b-tuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/b-64-b-tuff/challenge/src/b-64-b-tuff.c -------------------------------------------------------------------------------- /b-64-b-tuff/challenge/src/flag.txt: -------------------------------------------------------------------------------- 1 | fa1782c9a706d83171b099175f4e7649 2 | -------------------------------------------------------------------------------- /b-64-b-tuff/challenge/xinetd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/b-64-b-tuff/challenge/xinetd.conf -------------------------------------------------------------------------------- /b-64-b-tuff/deployment/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/b-64-b-tuff/deployment/deploy.yaml -------------------------------------------------------------------------------- /b-64-b-tuff/deployment/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/b-64-b-tuff/deployment/service.yaml -------------------------------------------------------------------------------- /b-64-b-tuff/distfiles/Makefile: -------------------------------------------------------------------------------- 1 | ../challenge/src/Makefile -------------------------------------------------------------------------------- /b-64-b-tuff/distfiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/b-64-b-tuff/distfiles/README.md -------------------------------------------------------------------------------- /b-64-b-tuff/distfiles/b-64-b-tuff.c: -------------------------------------------------------------------------------- 1 | ../challenge/src/b-64-b-tuff.c -------------------------------------------------------------------------------- /b-64-b-tuff/solution/command_set.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/b-64-b-tuff/solution/command_set.txt -------------------------------------------------------------------------------- /b-64-b-tuff/solution/run_raw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/b-64-b-tuff/solution/run_raw/Makefile -------------------------------------------------------------------------------- /b-64-b-tuff/solution/run_raw/run_raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/b-64-b-tuff/solution/run_raw/run_raw.c -------------------------------------------------------------------------------- /b-64-b-tuff/solution/shellcode/shellcode.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/b-64-b-tuff/solution/shellcode/shellcode.asm -------------------------------------------------------------------------------- /b-64-b-tuff/solution/shellcode/shellcode2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/b-64-b-tuff/solution/shellcode/shellcode2.asm -------------------------------------------------------------------------------- /b-64-b-tuff/solution/shellcode/shellcode3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/b-64-b-tuff/solution/shellcode/shellcode3.asm -------------------------------------------------------------------------------- /b-64-b-tuff/solution/sploit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/b-64-b-tuff/solution/sploit.rb -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /dontcrash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/dontcrash/Makefile -------------------------------------------------------------------------------- /dontcrash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/dontcrash/README.md -------------------------------------------------------------------------------- /dontcrash/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/dontcrash/challenge/Dockerfile -------------------------------------------------------------------------------- /dontcrash/challenge/dontcrash.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/dontcrash/challenge/dontcrash.xinetd -------------------------------------------------------------------------------- /dontcrash/challenge/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/dontcrash/challenge/src/Makefile -------------------------------------------------------------------------------- /dontcrash/challenge/src/dontcrash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/dontcrash/challenge/src/dontcrash.c -------------------------------------------------------------------------------- /dontcrash/challenge/src/flag.h: -------------------------------------------------------------------------------- 1 | #define FLAG "f1cf195926f7b163cc52c7d9ab6db589" 2 | -------------------------------------------------------------------------------- /dontcrash/challenge/xinetd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/dontcrash/challenge/xinetd.conf -------------------------------------------------------------------------------- /dontcrash/deployment/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/dontcrash/deployment/deploy.yaml -------------------------------------------------------------------------------- /dontcrash/deployment/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/dontcrash/deployment/service.yaml -------------------------------------------------------------------------------- /dontcrash/distfiles/Makefile: -------------------------------------------------------------------------------- 1 | ../challenge/src/Makefile -------------------------------------------------------------------------------- /dontcrash/distfiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/dontcrash/distfiles/README.md -------------------------------------------------------------------------------- /dontcrash/distfiles/dontcrash.c: -------------------------------------------------------------------------------- 1 | ../challenge/src/dontcrash.c -------------------------------------------------------------------------------- /easyauth/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/easyauth/Makefile -------------------------------------------------------------------------------- /easyauth/challenge/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM php:7.0-apache 2 | 3 | # Upload the challenge 4 | ADD src/*.php /var/www/html/ 5 | 6 | EXPOSE 80 7 | -------------------------------------------------------------------------------- /easyauth/challenge/src/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/easyauth/challenge/src/auth.php -------------------------------------------------------------------------------- /easyauth/challenge/src/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/easyauth/challenge/src/index.php -------------------------------------------------------------------------------- /easyauth/challenge/src/login_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/easyauth/challenge/src/login_form.php -------------------------------------------------------------------------------- /easyauth/deployment/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/easyauth/deployment/deploy.yaml -------------------------------------------------------------------------------- /easyauth/deployment/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/easyauth/deployment/service.yaml -------------------------------------------------------------------------------- /easyauth/distfiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/easyauth/distfiles/README.md -------------------------------------------------------------------------------- /easyauth/distfiles/index.php: -------------------------------------------------------------------------------- 1 | ../challenge/src/index.php -------------------------------------------------------------------------------- /easyauth/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/easyauth/solution/README.md -------------------------------------------------------------------------------- /easycap/distfiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/easycap/distfiles/README.md -------------------------------------------------------------------------------- /easycap/distfiles/easycap.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/easycap/distfiles/easycap.pcap -------------------------------------------------------------------------------- /easycap/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/easycap/solution/README.md -------------------------------------------------------------------------------- /easyreverse/challenge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/easyreverse/challenge/Makefile -------------------------------------------------------------------------------- /easyreverse/challenge/easyreverse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/easyreverse/challenge/easyreverse.c -------------------------------------------------------------------------------- /easyreverse/distfiles/easyreverse-32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/easyreverse/distfiles/easyreverse-32 -------------------------------------------------------------------------------- /easyreverse/distfiles/easyreverse-64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/easyreverse/distfiles/easyreverse-64 -------------------------------------------------------------------------------- /easyreverse/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/easyreverse/solution/README.md -------------------------------------------------------------------------------- /hashecute/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/hashecute/Makefile -------------------------------------------------------------------------------- /hashecute/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/hashecute/README.md -------------------------------------------------------------------------------- /hashecute/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/hashecute/challenge/Dockerfile -------------------------------------------------------------------------------- /hashecute/challenge/hashecute.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/hashecute/challenge/hashecute.xinetd -------------------------------------------------------------------------------- /hashecute/challenge/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/hashecute/challenge/src/Makefile -------------------------------------------------------------------------------- /hashecute/challenge/src/flag.txt: -------------------------------------------------------------------------------- 1 | FLAG:ad678c882a03485652d2d409680aaf67 2 | -------------------------------------------------------------------------------- /hashecute/challenge/src/hashecute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/hashecute/challenge/src/hashecute.c -------------------------------------------------------------------------------- /hashecute/deployment/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/hashecute/deployment/deploy.yaml -------------------------------------------------------------------------------- /hashecute/deployment/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/hashecute/deployment/service.yaml -------------------------------------------------------------------------------- /hashecute/distfiles/Makefile: -------------------------------------------------------------------------------- 1 | ../challenge/src/Makefile -------------------------------------------------------------------------------- /hashecute/distfiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/hashecute/distfiles/README.md -------------------------------------------------------------------------------- /hashecute/distfiles/hashecute.c: -------------------------------------------------------------------------------- 1 | ../challenge/src/hashecute.c -------------------------------------------------------------------------------- /hashecute/solution/sploit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/hashecute/solution/sploit.rb -------------------------------------------------------------------------------- /in-plain-sight/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/in-plain-sight/README.md -------------------------------------------------------------------------------- /in-plain-sight/challenge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/in-plain-sight/challenge/README.md -------------------------------------------------------------------------------- /in-plain-sight/challenge/flag.txt: -------------------------------------------------------------------------------- 1 | FLAG:1d010f248d 2 | 3 | -------------------------------------------------------------------------------- /in-plain-sight/challenge/poracle.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/in-plain-sight/challenge/poracle.diff -------------------------------------------------------------------------------- /in-plain-sight/distfiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/in-plain-sight/distfiles/README.md -------------------------------------------------------------------------------- /in-plain-sight/solution/solution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/in-plain-sight/solution/solution.txt -------------------------------------------------------------------------------- /nibbler/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/nibbler/Makefile -------------------------------------------------------------------------------- /nibbler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/nibbler/README.md -------------------------------------------------------------------------------- /nibbler/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/nibbler/challenge/Dockerfile -------------------------------------------------------------------------------- /nibbler/challenge/nibbler.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/nibbler/challenge/nibbler.xinetd -------------------------------------------------------------------------------- /nibbler/challenge/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/nibbler/challenge/src/Makefile -------------------------------------------------------------------------------- /nibbler/challenge/src/flag.txt: -------------------------------------------------------------------------------- 1 | FLAG:c6888f365033505715038f57a551bce1 2 | -------------------------------------------------------------------------------- /nibbler/challenge/src/nibbler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/nibbler/challenge/src/nibbler.c -------------------------------------------------------------------------------- /nibbler/deployment/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/nibbler/deployment/deploy.yaml -------------------------------------------------------------------------------- /nibbler/deployment/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/nibbler/deployment/service.yaml -------------------------------------------------------------------------------- /nibbler/distfiles/README.rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/nibbler/distfiles/README.rd -------------------------------------------------------------------------------- /nibbler/distfiles/nibbler.c: -------------------------------------------------------------------------------- 1 | ../challenge/src/nibbler.c -------------------------------------------------------------------------------- /nibbler/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/nibbler/solution/README.md -------------------------------------------------------------------------------- /readfile-nz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readfile-nz/Makefile -------------------------------------------------------------------------------- /readfile-nz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readfile-nz/README.md -------------------------------------------------------------------------------- /readfile-nz/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readfile-nz/challenge/Dockerfile -------------------------------------------------------------------------------- /readfile-nz/challenge/readfile-nz.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readfile-nz/challenge/readfile-nz.xinetd -------------------------------------------------------------------------------- /readfile-nz/challenge/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readfile-nz/challenge/src/Makefile -------------------------------------------------------------------------------- /readfile-nz/challenge/src/flag.txt: -------------------------------------------------------------------------------- 1 | 520bb974b0d9d28690b7ad84ce9b700e 2 | -------------------------------------------------------------------------------- /readfile-nz/challenge/src/readfile-nz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readfile-nz/challenge/src/readfile-nz.c -------------------------------------------------------------------------------- /readfile-nz/challenge/xinetd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readfile-nz/challenge/xinetd.conf -------------------------------------------------------------------------------- /readfile-nz/deployment/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readfile-nz/deployment/deploy.yaml -------------------------------------------------------------------------------- /readfile-nz/deployment/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readfile-nz/deployment/service.yaml -------------------------------------------------------------------------------- /readfile-nz/distfiles/Makefile: -------------------------------------------------------------------------------- 1 | ../challenge/src/Makefile -------------------------------------------------------------------------------- /readfile-nz/distfiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readfile-nz/distfiles/README.md -------------------------------------------------------------------------------- /readfile-nz/distfiles/readfile-nz.c: -------------------------------------------------------------------------------- 1 | ../challenge/src/readfile-nz.c -------------------------------------------------------------------------------- /readfile-nz/solution/pwn.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readfile-nz/solution/pwn.asm -------------------------------------------------------------------------------- /readfile/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readfile/Makefile -------------------------------------------------------------------------------- /readfile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readfile/README.md -------------------------------------------------------------------------------- /readfile/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readfile/challenge/Dockerfile -------------------------------------------------------------------------------- /readfile/challenge/readfile.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readfile/challenge/readfile.xinetd -------------------------------------------------------------------------------- /readfile/challenge/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readfile/challenge/src/Makefile -------------------------------------------------------------------------------- /readfile/challenge/src/flag.txt: -------------------------------------------------------------------------------- 1 | 0c49a8112e0c972ad8c1a4999732e278 2 | -------------------------------------------------------------------------------- /readfile/challenge/src/readfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readfile/challenge/src/readfile.c -------------------------------------------------------------------------------- /readfile/challenge/xinetd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readfile/challenge/xinetd.conf -------------------------------------------------------------------------------- /readfile/deployment/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readfile/deployment/deploy.yaml -------------------------------------------------------------------------------- /readfile/deployment/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readfile/deployment/service.yaml -------------------------------------------------------------------------------- /readfile/distfiles/Makefile: -------------------------------------------------------------------------------- 1 | ../challenge/src/Makefile -------------------------------------------------------------------------------- /readfile/distfiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readfile/distfiles/README.md -------------------------------------------------------------------------------- /readfile/distfiles/readfile.c: -------------------------------------------------------------------------------- 1 | ../challenge/src/readfile.c -------------------------------------------------------------------------------- /readfile/solution/pwn.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readfile/solution/pwn.asm -------------------------------------------------------------------------------- /readmem-nz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readmem-nz/Makefile -------------------------------------------------------------------------------- /readmem-nz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readmem-nz/README.md -------------------------------------------------------------------------------- /readmem-nz/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readmem-nz/challenge/Dockerfile -------------------------------------------------------------------------------- /readmem-nz/challenge/readmem-nz.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readmem-nz/challenge/readmem-nz.xinetd -------------------------------------------------------------------------------- /readmem-nz/challenge/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readmem-nz/challenge/src/Makefile -------------------------------------------------------------------------------- /readmem-nz/challenge/src/flag.h: -------------------------------------------------------------------------------- 1 | #define FLAG "12614b374349a431149019a3715346a0" 2 | -------------------------------------------------------------------------------- /readmem-nz/challenge/src/readmem-nz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readmem-nz/challenge/src/readmem-nz.c -------------------------------------------------------------------------------- /readmem-nz/challenge/xinetd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readmem-nz/challenge/xinetd.conf -------------------------------------------------------------------------------- /readmem-nz/deployment/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readmem-nz/deployment/deploy.yaml -------------------------------------------------------------------------------- /readmem-nz/deployment/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readmem-nz/deployment/service.yaml -------------------------------------------------------------------------------- /readmem-nz/distfiles/Makefile: -------------------------------------------------------------------------------- 1 | ../challenge/src/Makefile -------------------------------------------------------------------------------- /readmem-nz/distfiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readmem-nz/distfiles/README.md -------------------------------------------------------------------------------- /readmem-nz/distfiles/readmem-nz.c: -------------------------------------------------------------------------------- 1 | ../challenge/src/readmem-nz.c -------------------------------------------------------------------------------- /readmem-nz/solution/pwn.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readmem-nz/solution/pwn.asm -------------------------------------------------------------------------------- /readmem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readmem/Makefile -------------------------------------------------------------------------------- /readmem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readmem/README.md -------------------------------------------------------------------------------- /readmem/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readmem/challenge/Dockerfile -------------------------------------------------------------------------------- /readmem/challenge/readmem.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readmem/challenge/readmem.xinetd -------------------------------------------------------------------------------- /readmem/challenge/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readmem/challenge/src/Makefile -------------------------------------------------------------------------------- /readmem/challenge/src/flag.h: -------------------------------------------------------------------------------- 1 | #define FLAG "1266fb486d358bc50b9323fb3d93555e" 2 | -------------------------------------------------------------------------------- /readmem/challenge/src/readmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readmem/challenge/src/readmem.c -------------------------------------------------------------------------------- /readmem/challenge/xinetd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readmem/challenge/xinetd.conf -------------------------------------------------------------------------------- /readmem/deployment/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readmem/deployment/deploy.yaml -------------------------------------------------------------------------------- /readmem/deployment/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readmem/deployment/service.yaml -------------------------------------------------------------------------------- /readmem/distfiles/Makefile: -------------------------------------------------------------------------------- 1 | ../challenge/src/Makefile -------------------------------------------------------------------------------- /readmem/distfiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readmem/distfiles/README.md -------------------------------------------------------------------------------- /readmem/distfiles/readmem.c: -------------------------------------------------------------------------------- 1 | ../challenge/src/readmem.c -------------------------------------------------------------------------------- /readmem/solution/pwn.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readmem/solution/pwn.asm -------------------------------------------------------------------------------- /readstack-nz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readstack-nz/Makefile -------------------------------------------------------------------------------- /readstack-nz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readstack-nz/README.md -------------------------------------------------------------------------------- /readstack-nz/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readstack-nz/challenge/Dockerfile -------------------------------------------------------------------------------- /readstack-nz/challenge/readstack-nz.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readstack-nz/challenge/readstack-nz.xinetd -------------------------------------------------------------------------------- /readstack-nz/challenge/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readstack-nz/challenge/src/Makefile -------------------------------------------------------------------------------- /readstack-nz/challenge/src/flag.h: -------------------------------------------------------------------------------- 1 | #define FLAG "7ea70ea6e8801cc7eb55b838d1802065" 2 | -------------------------------------------------------------------------------- /readstack-nz/challenge/src/readstack-nz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readstack-nz/challenge/src/readstack-nz.c -------------------------------------------------------------------------------- /readstack-nz/challenge/xinetd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readstack-nz/challenge/xinetd.conf -------------------------------------------------------------------------------- /readstack-nz/deployment/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readstack-nz/deployment/deploy.yaml -------------------------------------------------------------------------------- /readstack-nz/deployment/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readstack-nz/deployment/service.yaml -------------------------------------------------------------------------------- /readstack-nz/distfiles/Makefile: -------------------------------------------------------------------------------- 1 | ../challenge/src/Makefile -------------------------------------------------------------------------------- /readstack-nz/distfiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readstack-nz/distfiles/README.md -------------------------------------------------------------------------------- /readstack-nz/distfiles/readstack-nz.c: -------------------------------------------------------------------------------- 1 | ../challenge/src/readstack-nz.c -------------------------------------------------------------------------------- /readstack-nz/solution/pwn.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readstack-nz/solution/pwn.asm -------------------------------------------------------------------------------- /readstack/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readstack/Makefile -------------------------------------------------------------------------------- /readstack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readstack/README.md -------------------------------------------------------------------------------- /readstack/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readstack/challenge/Dockerfile -------------------------------------------------------------------------------- /readstack/challenge/readstack.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readstack/challenge/readstack.xinetd -------------------------------------------------------------------------------- /readstack/challenge/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readstack/challenge/src/Makefile -------------------------------------------------------------------------------- /readstack/challenge/src/flag.h: -------------------------------------------------------------------------------- 1 | #define FLAG "f7d94cabcd6a1ca223b82a1e35bc9faf" 2 | -------------------------------------------------------------------------------- /readstack/challenge/src/readstack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readstack/challenge/src/readstack.c -------------------------------------------------------------------------------- /readstack/challenge/xinetd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readstack/challenge/xinetd.conf -------------------------------------------------------------------------------- /readstack/deployment/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readstack/deployment/deploy.yaml -------------------------------------------------------------------------------- /readstack/deployment/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readstack/deployment/service.yaml -------------------------------------------------------------------------------- /readstack/distfiles/Makefile: -------------------------------------------------------------------------------- 1 | ../challenge/src/Makefile -------------------------------------------------------------------------------- /readstack/distfiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readstack/distfiles/README.md -------------------------------------------------------------------------------- /readstack/distfiles/readstack.c: -------------------------------------------------------------------------------- 1 | ../challenge/src/readstack.c -------------------------------------------------------------------------------- /readstack/solution/pwn.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/readstack/solution/pwn.asm -------------------------------------------------------------------------------- /seteax-nz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/seteax-nz/Makefile -------------------------------------------------------------------------------- /seteax-nz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/seteax-nz/README.md -------------------------------------------------------------------------------- /seteax-nz/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/seteax-nz/challenge/Dockerfile -------------------------------------------------------------------------------- /seteax-nz/challenge/seteax-nz.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/seteax-nz/challenge/seteax-nz.xinetd -------------------------------------------------------------------------------- /seteax-nz/challenge/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/seteax-nz/challenge/src/Makefile -------------------------------------------------------------------------------- /seteax-nz/challenge/src/flag.h: -------------------------------------------------------------------------------- 1 | #define FLAG "a0be35135882ab563f2c80110416617b" 2 | -------------------------------------------------------------------------------- /seteax-nz/challenge/src/seteax-nz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/seteax-nz/challenge/src/seteax-nz.c -------------------------------------------------------------------------------- /seteax-nz/challenge/xinetd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/seteax-nz/challenge/xinetd.conf -------------------------------------------------------------------------------- /seteax-nz/deployment/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/seteax-nz/deployment/deploy.yaml -------------------------------------------------------------------------------- /seteax-nz/deployment/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/seteax-nz/deployment/service.yaml -------------------------------------------------------------------------------- /seteax-nz/distfiles/Makefile: -------------------------------------------------------------------------------- 1 | ../challenge/src/Makefile -------------------------------------------------------------------------------- /seteax-nz/distfiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/seteax-nz/distfiles/README.md -------------------------------------------------------------------------------- /seteax-nz/distfiles/seteax-nz.c: -------------------------------------------------------------------------------- 1 | ../challenge/src/seteax-nz.c -------------------------------------------------------------------------------- /seteax-nz/solution/pwn.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/seteax-nz/solution/pwn.asm -------------------------------------------------------------------------------- /seteax/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/seteax/Makefile -------------------------------------------------------------------------------- /seteax/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/seteax/README.md -------------------------------------------------------------------------------- /seteax/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/seteax/challenge/Dockerfile -------------------------------------------------------------------------------- /seteax/challenge/seteax.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/seteax/challenge/seteax.xinetd -------------------------------------------------------------------------------- /seteax/challenge/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/seteax/challenge/src/Makefile -------------------------------------------------------------------------------- /seteax/challenge/src/flag.h: -------------------------------------------------------------------------------- 1 | #define FLAG "73afdc142ba6789826605b3c840f66f0" 2 | -------------------------------------------------------------------------------- /seteax/challenge/src/seteax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/seteax/challenge/src/seteax.c -------------------------------------------------------------------------------- /seteax/challenge/xinetd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/seteax/challenge/xinetd.conf -------------------------------------------------------------------------------- /seteax/deployment/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/seteax/deployment/deploy.yaml -------------------------------------------------------------------------------- /seteax/deployment/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/seteax/deployment/service.yaml -------------------------------------------------------------------------------- /seteax/distfiles/Makefile: -------------------------------------------------------------------------------- 1 | ../challenge/src/Makefile -------------------------------------------------------------------------------- /seteax/distfiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/seteax/distfiles/README.md -------------------------------------------------------------------------------- /seteax/distfiles/seteax.c: -------------------------------------------------------------------------------- 1 | ../challenge/src/seteax.c -------------------------------------------------------------------------------- /seteax/solution/pwn.asm: -------------------------------------------------------------------------------- 1 | bits 32 2 | 3 | mov eax, 0 4 | ret 5 | -------------------------------------------------------------------------------- /shortest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/shortest/Makefile -------------------------------------------------------------------------------- /shortest/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/shortest/challenge/Dockerfile -------------------------------------------------------------------------------- /shortest/challenge/shortest.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/shortest/challenge/shortest.xinetd -------------------------------------------------------------------------------- /shortest/challenge/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/shortest/challenge/src/Makefile -------------------------------------------------------------------------------- /shortest/challenge/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/shortest/challenge/src/README.md -------------------------------------------------------------------------------- /shortest/challenge/src/flag.txt: -------------------------------------------------------------------------------- 1 | FLAG:63a2add44cc48ba13165c43ef4914b6a 2 | -------------------------------------------------------------------------------- /shortest/challenge/src/shortest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/shortest/challenge/src/shortest -------------------------------------------------------------------------------- /shortest/challenge/src/shortest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/shortest/challenge/src/shortest.c -------------------------------------------------------------------------------- /shortest/deployment/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/shortest/deployment/deploy.yaml -------------------------------------------------------------------------------- /shortest/deployment/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/shortest/deployment/service.yaml -------------------------------------------------------------------------------- /shortest/distfiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/shortest/distfiles/README.md -------------------------------------------------------------------------------- /shortest/distfiles/shortest: -------------------------------------------------------------------------------- 1 | ../challenge/src/shortest -------------------------------------------------------------------------------- /shortest/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/shortest/solution/README.md -------------------------------------------------------------------------------- /skipper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/skipper/README.md -------------------------------------------------------------------------------- /skipper/challenge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/skipper/challenge/Makefile -------------------------------------------------------------------------------- /skipper/challenge/skipper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/skipper/challenge/skipper.c -------------------------------------------------------------------------------- /skipper/distfiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/skipper/distfiles/README.md -------------------------------------------------------------------------------- /skipper/distfiles/skipper-32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/skipper/distfiles/skipper-32 -------------------------------------------------------------------------------- /skipper/distfiles/skipper-64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/skipper/distfiles/skipper-64 -------------------------------------------------------------------------------- /skipper/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/skipper/solution/README.md -------------------------------------------------------------------------------- /skipper2/challenge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/skipper2/challenge/Makefile -------------------------------------------------------------------------------- /skipper2/challenge/skipper2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/skipper2/challenge/skipper2.c -------------------------------------------------------------------------------- /skipper2/distfiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/skipper2/distfiles/README.md -------------------------------------------------------------------------------- /skipper2/distfiles/skipper2-32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/skipper2/distfiles/skipper2-32 -------------------------------------------------------------------------------- /skipper2/distfiles/skipper2-64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/skipper2/distfiles/skipper2-64 -------------------------------------------------------------------------------- /skipper2/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/skipper2/solution/README.md -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/assemble-to-stdout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/tools/assemble-to-stdout.rb -------------------------------------------------------------------------------- /tools/binary-to-string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/tools/binary-to-string.rb -------------------------------------------------------------------------------- /tools/run-raw-code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/tools/run-raw-code.c -------------------------------------------------------------------------------- /vhash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/vhash/Makefile -------------------------------------------------------------------------------- /vhash/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/vhash/challenge/Dockerfile -------------------------------------------------------------------------------- /vhash/challenge/c_src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/vhash/challenge/c_src/Makefile -------------------------------------------------------------------------------- /vhash/challenge/c_src/vhash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/vhash/challenge/c_src/vhash -------------------------------------------------------------------------------- /vhash/challenge/c_src/vhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/vhash/challenge/c_src/vhash.c -------------------------------------------------------------------------------- /vhash/challenge/php_src/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/vhash/challenge/php_src/auth.php -------------------------------------------------------------------------------- /vhash/challenge/php_src/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/vhash/challenge/php_src/index.php -------------------------------------------------------------------------------- /vhash/challenge/php_src/login_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/vhash/challenge/php_src/login_form.php -------------------------------------------------------------------------------- /vhash/deployment/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/vhash/deployment/deploy.yaml -------------------------------------------------------------------------------- /vhash/deployment/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/vhash/deployment/service.yaml -------------------------------------------------------------------------------- /vhash/distfiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/vhash/distfiles/README.md -------------------------------------------------------------------------------- /vhash/distfiles/index.php: -------------------------------------------------------------------------------- 1 | ../challenge/php_src/index.php -------------------------------------------------------------------------------- /vhash/distfiles/vhash: -------------------------------------------------------------------------------- 1 | ../challenge/c_src/vhash -------------------------------------------------------------------------------- /vhash/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/vhash/solution/README.md -------------------------------------------------------------------------------- /writemem-nz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/writemem-nz/Makefile -------------------------------------------------------------------------------- /writemem-nz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/writemem-nz/README.md -------------------------------------------------------------------------------- /writemem-nz/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/writemem-nz/challenge/Dockerfile -------------------------------------------------------------------------------- /writemem-nz/challenge/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/writemem-nz/challenge/src/Makefile -------------------------------------------------------------------------------- /writemem-nz/challenge/src/flag.h: -------------------------------------------------------------------------------- 1 | #define FLAG "91555dee6d1defcef5d44ae5687abcbc" 2 | -------------------------------------------------------------------------------- /writemem-nz/challenge/src/writemem-nz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/writemem-nz/challenge/src/writemem-nz.c -------------------------------------------------------------------------------- /writemem-nz/challenge/writemem-nz.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/writemem-nz/challenge/writemem-nz.xinetd -------------------------------------------------------------------------------- /writemem-nz/challenge/xinetd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/writemem-nz/challenge/xinetd.conf -------------------------------------------------------------------------------- /writemem-nz/deployment/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/writemem-nz/deployment/deploy.yaml -------------------------------------------------------------------------------- /writemem-nz/deployment/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/writemem-nz/deployment/service.yaml -------------------------------------------------------------------------------- /writemem-nz/distfiles/Makefile: -------------------------------------------------------------------------------- 1 | ../challenge/src/Makefile -------------------------------------------------------------------------------- /writemem-nz/distfiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/writemem-nz/distfiles/README.md -------------------------------------------------------------------------------- /writemem-nz/distfiles/writemem-nz.c: -------------------------------------------------------------------------------- 1 | ../challenge/src/writemem-nz.c -------------------------------------------------------------------------------- /writemem-nz/solution/pwn.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/writemem-nz/solution/pwn.asm -------------------------------------------------------------------------------- /writemem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/writemem/Makefile -------------------------------------------------------------------------------- /writemem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/writemem/README.md -------------------------------------------------------------------------------- /writemem/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/writemem/challenge/Dockerfile -------------------------------------------------------------------------------- /writemem/challenge/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/writemem/challenge/src/Makefile -------------------------------------------------------------------------------- /writemem/challenge/src/flag.h: -------------------------------------------------------------------------------- 1 | #define FLAG "3f1b3f32aca7ac2d46500125c15a5993" 2 | 3 | -------------------------------------------------------------------------------- /writemem/challenge/src/writemem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/writemem/challenge/src/writemem.c -------------------------------------------------------------------------------- /writemem/challenge/writemem.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/writemem/challenge/writemem.xinetd -------------------------------------------------------------------------------- /writemem/challenge/xinetd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/writemem/challenge/xinetd.conf -------------------------------------------------------------------------------- /writemem/deployment/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/writemem/deployment/deploy.yaml -------------------------------------------------------------------------------- /writemem/deployment/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/writemem/deployment/service.yaml -------------------------------------------------------------------------------- /writemem/distfiles/Makefile: -------------------------------------------------------------------------------- 1 | ../challenge/src/Makefile -------------------------------------------------------------------------------- /writemem/distfiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/writemem/distfiles/README.md -------------------------------------------------------------------------------- /writemem/distfiles/writemem.c: -------------------------------------------------------------------------------- 1 | ../challenge/src/writemem.c -------------------------------------------------------------------------------- /writemem/solution/pwn.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/writemem/solution/pwn.asm -------------------------------------------------------------------------------- /writestack-nz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/writestack-nz/Makefile -------------------------------------------------------------------------------- /writestack-nz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/writestack-nz/README.md -------------------------------------------------------------------------------- /writestack-nz/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/writestack-nz/challenge/Dockerfile -------------------------------------------------------------------------------- /writestack-nz/challenge/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/writestack-nz/challenge/src/Makefile -------------------------------------------------------------------------------- /writestack-nz/challenge/src/flag.h: -------------------------------------------------------------------------------- 1 | #define FLAG "ef303ea023f6fbdd554a050d3c35a7f3" 2 | -------------------------------------------------------------------------------- /writestack-nz/challenge/src/writestack-nz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/writestack-nz/challenge/src/writestack-nz.c -------------------------------------------------------------------------------- /writestack-nz/challenge/writestack-nz.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/writestack-nz/challenge/writestack-nz.xinetd -------------------------------------------------------------------------------- /writestack-nz/challenge/xinetd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/writestack-nz/challenge/xinetd.conf -------------------------------------------------------------------------------- /writestack-nz/deployment/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/writestack-nz/deployment/deploy.yaml -------------------------------------------------------------------------------- /writestack-nz/deployment/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/writestack-nz/deployment/service.yaml -------------------------------------------------------------------------------- /writestack-nz/distfiles/Makefile: -------------------------------------------------------------------------------- 1 | ../challenge/src/Makefile -------------------------------------------------------------------------------- /writestack-nz/distfiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/writestack-nz/distfiles/README.md -------------------------------------------------------------------------------- /writestack-nz/distfiles/writestack-nz.c: -------------------------------------------------------------------------------- 1 | ../challenge/src/writestack-nz.c -------------------------------------------------------------------------------- /writestack-nz/solution/pwn.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/writestack-nz/solution/pwn.asm -------------------------------------------------------------------------------- /writestack/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/writestack/Makefile -------------------------------------------------------------------------------- /writestack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/writestack/README.md -------------------------------------------------------------------------------- /writestack/challenge/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/writestack/challenge/Dockerfile -------------------------------------------------------------------------------- /writestack/challenge/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/writestack/challenge/src/Makefile -------------------------------------------------------------------------------- /writestack/challenge/src/flag.h: -------------------------------------------------------------------------------- 1 | #define FLAG "328218b8372dbfe89b8f9917fe03fd20" 2 | -------------------------------------------------------------------------------- /writestack/challenge/src/writestack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/writestack/challenge/src/writestack.c -------------------------------------------------------------------------------- /writestack/challenge/writestack.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/writestack/challenge/writestack.xinetd -------------------------------------------------------------------------------- /writestack/challenge/xinetd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/writestack/challenge/xinetd.conf -------------------------------------------------------------------------------- /writestack/deployment/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/writestack/deployment/deploy.yaml -------------------------------------------------------------------------------- /writestack/deployment/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/writestack/deployment/service.yaml -------------------------------------------------------------------------------- /writestack/distfiles/Makefile: -------------------------------------------------------------------------------- 1 | ../challenge/src/Makefile -------------------------------------------------------------------------------- /writestack/distfiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/writestack/distfiles/README.md -------------------------------------------------------------------------------- /writestack/distfiles/writestack.c: -------------------------------------------------------------------------------- 1 | ../challenge/src/writestack.c -------------------------------------------------------------------------------- /writestack/solution/pwn.asm: -------------------------------------------------------------------------------- 1 | bits 32 2 | 3 | mov dword [esp+0x18], 1 4 | ret 5 | -------------------------------------------------------------------------------- /ximage/challenge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/ximage/challenge/README.md -------------------------------------------------------------------------------- /ximage/challenge/create_code.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/ximage/challenge/create_code.rb -------------------------------------------------------------------------------- /ximage/challenge/embed_code.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/ximage/challenge/embed_code.rb -------------------------------------------------------------------------------- /ximage/challenge/images/2017_logo_small2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/ximage/challenge/images/2017_logo_small2.bmp -------------------------------------------------------------------------------- /ximage/challenge/images/660px-San_Francisco_districts_map.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/ximage/challenge/images/660px-San_Francisco_districts_map.bmp -------------------------------------------------------------------------------- /ximage/challenge/images/alcatraz.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/ximage/challenge/images/alcatraz.bmp -------------------------------------------------------------------------------- /ximage/challenge/images/angry_cow.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/ximage/challenge/images/angry_cow.bmp -------------------------------------------------------------------------------- /ximage/challenge/images/fireescape.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/ximage/challenge/images/fireescape.bmp -------------------------------------------------------------------------------- /ximage/challenge/images/happycow.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/ximage/challenge/images/happycow.bmp -------------------------------------------------------------------------------- /ximage/challenge/images/neoncow.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/ximage/challenge/images/neoncow.bmp -------------------------------------------------------------------------------- /ximage/distfiles/2017_logo_small2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/ximage/distfiles/2017_logo_small2.bmp -------------------------------------------------------------------------------- /ximage/distfiles/660px-San_Francisco_districts_map.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/ximage/distfiles/660px-San_Francisco_districts_map.bmp -------------------------------------------------------------------------------- /ximage/distfiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/ximage/distfiles/README.md -------------------------------------------------------------------------------- /ximage/distfiles/alcatraz.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/ximage/distfiles/alcatraz.bmp -------------------------------------------------------------------------------- /ximage/distfiles/angry_cow.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/ximage/distfiles/angry_cow.bmp -------------------------------------------------------------------------------- /ximage/distfiles/fireescape.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/ximage/distfiles/fireescape.bmp -------------------------------------------------------------------------------- /ximage/distfiles/happycow.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/ximage/distfiles/happycow.bmp -------------------------------------------------------------------------------- /ximage/distfiles/neoncow.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/ximage/distfiles/neoncow.bmp -------------------------------------------------------------------------------- /ximage/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/ximage/solution/README.md -------------------------------------------------------------------------------- /ximage/solution/extract_code.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/ximage/solution/extract_code.rb -------------------------------------------------------------------------------- /ximage/solution/run_raw_code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iagox86/ctfworkshop-2017/HEAD/ximage/solution/run_raw_code.c --------------------------------------------------------------------------------