├── README.md ├── attack ├── CowBoy │ ├── README.md │ ├── deploy │ │ ├── Dockerfile │ │ ├── run.sh │ │ ├── src │ │ │ ├── CowBoy │ │ │ └── flag │ │ └── start.sh │ └── prob │ │ ├── CowBoy │ │ ├── Makefile │ │ ├── libc-2.23.so │ │ ├── yay.c │ │ ├── yay.h │ │ └── yo.c ├── DungeonQuest │ ├── Makefile │ ├── README.md │ ├── deploy │ │ ├── Dockerfile │ │ ├── DungeonQuest.xinetd │ │ ├── bin │ │ │ ├── DungeonQuest │ │ │ ├── flag │ │ │ ├── qemu-aarch64 │ │ │ └── run.sh │ │ └── start.sh │ └── src │ │ ├── DungeonQuest │ │ ├── Makefile │ │ └── pwnme.c ├── LeakIt │ ├── README.md │ ├── deploy │ │ ├── Dockerfile │ │ ├── admin_gpg.conf │ │ ├── copybot.sh │ │ ├── gpg.conf │ │ ├── setup.sh │ │ └── start.sh │ ├── docker-compose.yml │ ├── prob │ │ ├── Makefile │ │ ├── leakit │ │ └── leakit.c │ ├── run.sh │ └── stop.sh ├── Through_The_Router │ ├── README.md │ ├── Rules.png │ └── ttr.json ├── WebCached │ ├── README.md │ └── deploy │ │ ├── Dockerfile │ │ ├── nginx.conf │ │ ├── requirements.txt │ │ ├── run.sh │ │ ├── src │ │ ├── run.py │ │ ├── session_interface.py │ │ └── templates │ │ │ └── main.html │ │ └── uwsgi.ini ├── catch_the_bug │ ├── README.md │ ├── deploy │ │ ├── Dockerfile │ │ ├── bug │ │ ├── build_docker.sh │ │ ├── flag │ │ ├── libc-2.26.so │ │ ├── run_docker.sh │ │ ├── start.sh │ │ ├── stop_docker.sh │ │ └── xinetd_file │ └── prob │ │ ├── Makefile │ │ ├── inc │ │ ├── init.h │ │ ├── main.h │ │ ├── menu.h │ │ └── utils.h │ │ └── src │ │ ├── init.c │ │ ├── main.c │ │ ├── menu.c │ │ └── utils.c ├── crashcollector │ ├── README.md │ ├── deploy │ │ ├── Dockerfile │ │ ├── crashcollector │ │ ├── flag │ │ ├── libc-2.23.so │ │ ├── run.sh │ │ └── super.pl │ └── prob │ │ ├── Makefile │ │ ├── crashcollector │ │ ├── crashcollector.c │ │ ├── libc-2.23.so │ │ └── regnum.h ├── dvchat │ ├── README.md │ ├── deploy │ │ ├── Dockerfile │ │ ├── dvchat │ │ ├── flag │ │ ├── libc-2.23.so │ │ ├── run.sh │ │ └── super.pl │ └── prob │ │ ├── Makefile │ │ ├── dvchat │ │ ├── dvchat.c │ │ └── x.py └── noleak │ ├── README.md │ ├── deploy │ ├── Dockerfile │ ├── flag │ ├── noleak │ ├── run.sh │ └── super.pl │ └── src │ ├── Makefile │ ├── noleak │ ├── noleak.c │ └── super.pl ├── coding ├── HideInSSL │ ├── README.md │ └── prob │ │ ├── SSL_client.py │ │ ├── SSL_client_hello │ │ ├── SSL_server.py │ │ └── flag │ │ ├── 01.png │ │ ├── 02.tif │ │ ├── 03.gif │ │ ├── 04.jpg │ │ ├── 05.bmp │ │ ├── 06.png │ │ ├── 07.tif │ │ ├── 08.gif │ │ ├── 09.jpg │ │ ├── 10.bmp │ │ ├── 11.png │ │ ├── 12.tif │ │ ├── 13.gif │ │ ├── 14.jpg │ │ ├── 15.bmp │ │ ├── 16.png │ │ ├── 17.tif │ │ ├── 18.gif │ │ ├── 19.jpg │ │ ├── 20.bmp │ │ ├── 21.png │ │ └── 22.tif ├── Lambda_Beauty │ ├── Makefile │ ├── README.md │ ├── deploy │ │ ├── Dockerfile │ │ ├── Lambda │ │ │ ├── Ast.fs │ │ │ ├── Lambda.fs │ │ │ ├── Lambda.fsproj │ │ │ ├── Lexer.fs │ │ │ ├── Lexer.fsl │ │ │ ├── Parser.fs │ │ │ ├── Parser.fsi │ │ │ └── Parser.fsy │ │ ├── chal.sh │ │ ├── chal.xinetd │ │ ├── chal │ │ │ ├── Program.fs │ │ │ └── chal.fsproj │ │ ├── repl.sh │ │ ├── repl.xinetd │ │ ├── repl │ │ │ ├── Program.fs │ │ │ └── repl.fsproj │ │ ├── run.sh │ │ └── start.sh │ └── dist.zip └── What_does_the_drone_say? │ ├── README.md │ └── prob │ └── gen.py ├── crypto ├── Slider │ ├── README.md │ └── deploy │ │ ├── Dockerfile │ │ ├── run.sh │ │ ├── src │ │ ├── flag.txt │ │ └── slider.py │ │ └── start.sh ├── Tracer │ ├── README.md │ ├── deploy │ │ └── files.tar.gz │ └── prob │ │ ├── Makefile │ │ ├── What_I_did │ │ ├── flag │ │ ├── run.sh │ │ ├── yay.c │ │ ├── yay.h │ │ └── yo.c └── Volatile │ ├── README.md │ └── deploy │ ├── Volatile.tar.gz │ ├── data.txt │ ├── flag.txt │ ├── key.pem │ ├── rsa.py │ └── util.py ├── defense ├── BankRobber │ ├── README.md │ └── deploy │ │ └── src │ │ └── SCTFBank.sol ├── SDN-NotOpenNetwork │ ├── PacketGen.py │ ├── README.md │ └── non.json └── SSS_binary │ ├── README.md │ └── src │ ├── Makefile │ ├── astparser.c │ ├── astparser.h │ ├── asttree.c │ ├── asttree.h │ ├── runner.c │ ├── script.c │ ├── script.h │ ├── valcell.c │ ├── valcell.h │ ├── valenv.c │ └── valenv.h ├── qual_top10_players.png └── reversing ├── LowerLevel ├── README.md ├── deploy │ ├── curcuit.png │ └── output.txt └── prob │ ├── gen_output.py │ └── not7segwithdes.fzz ├── SMachine ├── README.md ├── deploy │ └── smachine.tar.gz └── prob │ ├── Makefile │ ├── flag.orig │ ├── main.c │ ├── main.h │ └── prob.sm └── dingJMax ├── README.md ├── deploy └── dingJMax └── prob ├── Makefile ├── note_gen.py ├── stage.h ├── yay.c ├── yay.h ├── yo.c └── yo.h /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/README.md -------------------------------------------------------------------------------- /attack/CowBoy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/CowBoy/README.md -------------------------------------------------------------------------------- /attack/CowBoy/deploy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/CowBoy/deploy/Dockerfile -------------------------------------------------------------------------------- /attack/CowBoy/deploy/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/CowBoy/deploy/run.sh -------------------------------------------------------------------------------- /attack/CowBoy/deploy/src/CowBoy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/CowBoy/deploy/src/CowBoy -------------------------------------------------------------------------------- /attack/CowBoy/deploy/src/flag: -------------------------------------------------------------------------------- 1 | SCTF{H4v3_y0u_ev3r_seen_CowBoy_B1B0P?} 2 | -------------------------------------------------------------------------------- /attack/CowBoy/deploy/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/CowBoy/deploy/start.sh -------------------------------------------------------------------------------- /attack/CowBoy/prob/CowBoy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/CowBoy/prob/CowBoy -------------------------------------------------------------------------------- /attack/CowBoy/prob/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/CowBoy/prob/Makefile -------------------------------------------------------------------------------- /attack/CowBoy/prob/libc-2.23.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/CowBoy/prob/libc-2.23.so -------------------------------------------------------------------------------- /attack/CowBoy/prob/yay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/CowBoy/prob/yay.c -------------------------------------------------------------------------------- /attack/CowBoy/prob/yay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/CowBoy/prob/yay.h -------------------------------------------------------------------------------- /attack/CowBoy/prob/yo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/CowBoy/prob/yo.c -------------------------------------------------------------------------------- /attack/DungeonQuest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/DungeonQuest/Makefile -------------------------------------------------------------------------------- /attack/DungeonQuest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/DungeonQuest/README.md -------------------------------------------------------------------------------- /attack/DungeonQuest/deploy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/DungeonQuest/deploy/Dockerfile -------------------------------------------------------------------------------- /attack/DungeonQuest/deploy/DungeonQuest.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/DungeonQuest/deploy/DungeonQuest.xinetd -------------------------------------------------------------------------------- /attack/DungeonQuest/deploy/bin/DungeonQuest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/DungeonQuest/deploy/bin/DungeonQuest -------------------------------------------------------------------------------- /attack/DungeonQuest/deploy/bin/flag: -------------------------------------------------------------------------------- 1 | SCTF{Why_NX_D0es_N0t_W0rk_TT} 2 | -------------------------------------------------------------------------------- /attack/DungeonQuest/deploy/bin/qemu-aarch64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/DungeonQuest/deploy/bin/qemu-aarch64 -------------------------------------------------------------------------------- /attack/DungeonQuest/deploy/bin/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/DungeonQuest/deploy/bin/run.sh -------------------------------------------------------------------------------- /attack/DungeonQuest/deploy/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/DungeonQuest/deploy/start.sh -------------------------------------------------------------------------------- /attack/DungeonQuest/src/DungeonQuest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/DungeonQuest/src/DungeonQuest -------------------------------------------------------------------------------- /attack/DungeonQuest/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/DungeonQuest/src/Makefile -------------------------------------------------------------------------------- /attack/DungeonQuest/src/pwnme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/DungeonQuest/src/pwnme.c -------------------------------------------------------------------------------- /attack/LeakIt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/LeakIt/README.md -------------------------------------------------------------------------------- /attack/LeakIt/deploy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/LeakIt/deploy/Dockerfile -------------------------------------------------------------------------------- /attack/LeakIt/deploy/admin_gpg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/LeakIt/deploy/admin_gpg.conf -------------------------------------------------------------------------------- /attack/LeakIt/deploy/copybot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/LeakIt/deploy/copybot.sh -------------------------------------------------------------------------------- /attack/LeakIt/deploy/gpg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/LeakIt/deploy/gpg.conf -------------------------------------------------------------------------------- /attack/LeakIt/deploy/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/LeakIt/deploy/setup.sh -------------------------------------------------------------------------------- /attack/LeakIt/deploy/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/LeakIt/deploy/start.sh -------------------------------------------------------------------------------- /attack/LeakIt/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/LeakIt/docker-compose.yml -------------------------------------------------------------------------------- /attack/LeakIt/prob/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/LeakIt/prob/Makefile -------------------------------------------------------------------------------- /attack/LeakIt/prob/leakit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/LeakIt/prob/leakit -------------------------------------------------------------------------------- /attack/LeakIt/prob/leakit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/LeakIt/prob/leakit.c -------------------------------------------------------------------------------- /attack/LeakIt/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/LeakIt/run.sh -------------------------------------------------------------------------------- /attack/LeakIt/stop.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | docker-compose stop 3 | -------------------------------------------------------------------------------- /attack/Through_The_Router/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/Through_The_Router/README.md -------------------------------------------------------------------------------- /attack/Through_The_Router/Rules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/Through_The_Router/Rules.png -------------------------------------------------------------------------------- /attack/Through_The_Router/ttr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/Through_The_Router/ttr.json -------------------------------------------------------------------------------- /attack/WebCached/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/WebCached/README.md -------------------------------------------------------------------------------- /attack/WebCached/deploy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/WebCached/deploy/Dockerfile -------------------------------------------------------------------------------- /attack/WebCached/deploy/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/WebCached/deploy/nginx.conf -------------------------------------------------------------------------------- /attack/WebCached/deploy/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | uwsgi 3 | redis 4 | -------------------------------------------------------------------------------- /attack/WebCached/deploy/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/WebCached/deploy/run.sh -------------------------------------------------------------------------------- /attack/WebCached/deploy/src/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/WebCached/deploy/src/run.py -------------------------------------------------------------------------------- /attack/WebCached/deploy/src/session_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/WebCached/deploy/src/session_interface.py -------------------------------------------------------------------------------- /attack/WebCached/deploy/src/templates/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/WebCached/deploy/src/templates/main.html -------------------------------------------------------------------------------- /attack/WebCached/deploy/uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/WebCached/deploy/uwsgi.ini -------------------------------------------------------------------------------- /attack/catch_the_bug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/catch_the_bug/README.md -------------------------------------------------------------------------------- /attack/catch_the_bug/deploy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/catch_the_bug/deploy/Dockerfile -------------------------------------------------------------------------------- /attack/catch_the_bug/deploy/bug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/catch_the_bug/deploy/bug -------------------------------------------------------------------------------- /attack/catch_the_bug/deploy/build_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/catch_the_bug/deploy/build_docker.sh -------------------------------------------------------------------------------- /attack/catch_the_bug/deploy/flag: -------------------------------------------------------------------------------- 1 | SCTF{Y0u_4r3_7h3_3xp3r7_0f_BUGS!} 2 | -------------------------------------------------------------------------------- /attack/catch_the_bug/deploy/libc-2.26.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/catch_the_bug/deploy/libc-2.26.so -------------------------------------------------------------------------------- /attack/catch_the_bug/deploy/run_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/catch_the_bug/deploy/run_docker.sh -------------------------------------------------------------------------------- /attack/catch_the_bug/deploy/start.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | /etc/init.d/xinetd restart 3 | sleep infinity; 4 | -------------------------------------------------------------------------------- /attack/catch_the_bug/deploy/stop_docker.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | docker rm -f bug 3 | -------------------------------------------------------------------------------- /attack/catch_the_bug/deploy/xinetd_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/catch_the_bug/deploy/xinetd_file -------------------------------------------------------------------------------- /attack/catch_the_bug/prob/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/catch_the_bug/prob/Makefile -------------------------------------------------------------------------------- /attack/catch_the_bug/prob/inc/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/catch_the_bug/prob/inc/init.h -------------------------------------------------------------------------------- /attack/catch_the_bug/prob/inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/catch_the_bug/prob/inc/main.h -------------------------------------------------------------------------------- /attack/catch_the_bug/prob/inc/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/catch_the_bug/prob/inc/menu.h -------------------------------------------------------------------------------- /attack/catch_the_bug/prob/inc/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/catch_the_bug/prob/inc/utils.h -------------------------------------------------------------------------------- /attack/catch_the_bug/prob/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/catch_the_bug/prob/src/init.c -------------------------------------------------------------------------------- /attack/catch_the_bug/prob/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/catch_the_bug/prob/src/main.c -------------------------------------------------------------------------------- /attack/catch_the_bug/prob/src/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/catch_the_bug/prob/src/menu.c -------------------------------------------------------------------------------- /attack/catch_the_bug/prob/src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/catch_the_bug/prob/src/utils.c -------------------------------------------------------------------------------- /attack/crashcollector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/crashcollector/README.md -------------------------------------------------------------------------------- /attack/crashcollector/deploy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/crashcollector/deploy/Dockerfile -------------------------------------------------------------------------------- /attack/crashcollector/deploy/crashcollector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/crashcollector/deploy/crashcollector -------------------------------------------------------------------------------- /attack/crashcollector/deploy/flag: -------------------------------------------------------------------------------- 1 | SCTF{Thanks_For_4ll_Your_Cr4sh3S} 2 | -------------------------------------------------------------------------------- /attack/crashcollector/deploy/libc-2.23.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/crashcollector/deploy/libc-2.23.so -------------------------------------------------------------------------------- /attack/crashcollector/deploy/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/crashcollector/deploy/run.sh -------------------------------------------------------------------------------- /attack/crashcollector/deploy/super.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/crashcollector/deploy/super.pl -------------------------------------------------------------------------------- /attack/crashcollector/prob/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/crashcollector/prob/Makefile -------------------------------------------------------------------------------- /attack/crashcollector/prob/crashcollector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/crashcollector/prob/crashcollector -------------------------------------------------------------------------------- /attack/crashcollector/prob/crashcollector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/crashcollector/prob/crashcollector.c -------------------------------------------------------------------------------- /attack/crashcollector/prob/libc-2.23.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/crashcollector/prob/libc-2.23.so -------------------------------------------------------------------------------- /attack/crashcollector/prob/regnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/crashcollector/prob/regnum.h -------------------------------------------------------------------------------- /attack/dvchat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/dvchat/README.md -------------------------------------------------------------------------------- /attack/dvchat/deploy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/dvchat/deploy/Dockerfile -------------------------------------------------------------------------------- /attack/dvchat/deploy/dvchat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/dvchat/deploy/dvchat -------------------------------------------------------------------------------- /attack/dvchat/deploy/flag: -------------------------------------------------------------------------------- 1 | SCTF{N0P4RK1NG4TKA1ST} 2 | -------------------------------------------------------------------------------- /attack/dvchat/deploy/libc-2.23.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/dvchat/deploy/libc-2.23.so -------------------------------------------------------------------------------- /attack/dvchat/deploy/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/dvchat/deploy/run.sh -------------------------------------------------------------------------------- /attack/dvchat/deploy/super.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/dvchat/deploy/super.pl -------------------------------------------------------------------------------- /attack/dvchat/prob/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/dvchat/prob/Makefile -------------------------------------------------------------------------------- /attack/dvchat/prob/dvchat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/dvchat/prob/dvchat -------------------------------------------------------------------------------- /attack/dvchat/prob/dvchat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/dvchat/prob/dvchat.c -------------------------------------------------------------------------------- /attack/dvchat/prob/x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/dvchat/prob/x.py -------------------------------------------------------------------------------- /attack/noleak/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/noleak/README.md -------------------------------------------------------------------------------- /attack/noleak/deploy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/noleak/deploy/Dockerfile -------------------------------------------------------------------------------- /attack/noleak/deploy/flag: -------------------------------------------------------------------------------- 1 | SCTF{PwNaBlE.KrIsTheBesT!} 2 | -------------------------------------------------------------------------------- /attack/noleak/deploy/noleak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/noleak/deploy/noleak -------------------------------------------------------------------------------- /attack/noleak/deploy/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/noleak/deploy/run.sh -------------------------------------------------------------------------------- /attack/noleak/deploy/super.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/noleak/deploy/super.pl -------------------------------------------------------------------------------- /attack/noleak/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/noleak/src/Makefile -------------------------------------------------------------------------------- /attack/noleak/src/noleak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/noleak/src/noleak -------------------------------------------------------------------------------- /attack/noleak/src/noleak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/noleak/src/noleak.c -------------------------------------------------------------------------------- /attack/noleak/src/super.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/attack/noleak/src/super.pl -------------------------------------------------------------------------------- /coding/HideInSSL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/HideInSSL/README.md -------------------------------------------------------------------------------- /coding/HideInSSL/prob/SSL_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/HideInSSL/prob/SSL_client.py -------------------------------------------------------------------------------- /coding/HideInSSL/prob/SSL_client_hello: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/HideInSSL/prob/SSL_client_hello -------------------------------------------------------------------------------- /coding/HideInSSL/prob/SSL_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/HideInSSL/prob/SSL_server.py -------------------------------------------------------------------------------- /coding/HideInSSL/prob/flag/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/HideInSSL/prob/flag/01.png -------------------------------------------------------------------------------- /coding/HideInSSL/prob/flag/02.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/HideInSSL/prob/flag/02.tif -------------------------------------------------------------------------------- /coding/HideInSSL/prob/flag/03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/HideInSSL/prob/flag/03.gif -------------------------------------------------------------------------------- /coding/HideInSSL/prob/flag/04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/HideInSSL/prob/flag/04.jpg -------------------------------------------------------------------------------- /coding/HideInSSL/prob/flag/05.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/HideInSSL/prob/flag/05.bmp -------------------------------------------------------------------------------- /coding/HideInSSL/prob/flag/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/HideInSSL/prob/flag/06.png -------------------------------------------------------------------------------- /coding/HideInSSL/prob/flag/07.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/HideInSSL/prob/flag/07.tif -------------------------------------------------------------------------------- /coding/HideInSSL/prob/flag/08.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/HideInSSL/prob/flag/08.gif -------------------------------------------------------------------------------- /coding/HideInSSL/prob/flag/09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/HideInSSL/prob/flag/09.jpg -------------------------------------------------------------------------------- /coding/HideInSSL/prob/flag/10.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/HideInSSL/prob/flag/10.bmp -------------------------------------------------------------------------------- /coding/HideInSSL/prob/flag/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/HideInSSL/prob/flag/11.png -------------------------------------------------------------------------------- /coding/HideInSSL/prob/flag/12.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/HideInSSL/prob/flag/12.tif -------------------------------------------------------------------------------- /coding/HideInSSL/prob/flag/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/HideInSSL/prob/flag/13.gif -------------------------------------------------------------------------------- /coding/HideInSSL/prob/flag/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/HideInSSL/prob/flag/14.jpg -------------------------------------------------------------------------------- /coding/HideInSSL/prob/flag/15.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/HideInSSL/prob/flag/15.bmp -------------------------------------------------------------------------------- /coding/HideInSSL/prob/flag/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/HideInSSL/prob/flag/16.png -------------------------------------------------------------------------------- /coding/HideInSSL/prob/flag/17.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/HideInSSL/prob/flag/17.tif -------------------------------------------------------------------------------- /coding/HideInSSL/prob/flag/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/HideInSSL/prob/flag/18.gif -------------------------------------------------------------------------------- /coding/HideInSSL/prob/flag/19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/HideInSSL/prob/flag/19.jpg -------------------------------------------------------------------------------- /coding/HideInSSL/prob/flag/20.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/HideInSSL/prob/flag/20.bmp -------------------------------------------------------------------------------- /coding/HideInSSL/prob/flag/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/HideInSSL/prob/flag/21.png -------------------------------------------------------------------------------- /coding/HideInSSL/prob/flag/22.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/HideInSSL/prob/flag/22.tif -------------------------------------------------------------------------------- /coding/Lambda_Beauty/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/Lambda_Beauty/Makefile -------------------------------------------------------------------------------- /coding/Lambda_Beauty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/Lambda_Beauty/README.md -------------------------------------------------------------------------------- /coding/Lambda_Beauty/deploy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/Lambda_Beauty/deploy/Dockerfile -------------------------------------------------------------------------------- /coding/Lambda_Beauty/deploy/Lambda/Ast.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/Lambda_Beauty/deploy/Lambda/Ast.fs -------------------------------------------------------------------------------- /coding/Lambda_Beauty/deploy/Lambda/Lambda.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/Lambda_Beauty/deploy/Lambda/Lambda.fs -------------------------------------------------------------------------------- /coding/Lambda_Beauty/deploy/Lambda/Lambda.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/Lambda_Beauty/deploy/Lambda/Lambda.fsproj -------------------------------------------------------------------------------- /coding/Lambda_Beauty/deploy/Lambda/Lexer.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/Lambda_Beauty/deploy/Lambda/Lexer.fs -------------------------------------------------------------------------------- /coding/Lambda_Beauty/deploy/Lambda/Lexer.fsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/Lambda_Beauty/deploy/Lambda/Lexer.fsl -------------------------------------------------------------------------------- /coding/Lambda_Beauty/deploy/Lambda/Parser.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/Lambda_Beauty/deploy/Lambda/Parser.fs -------------------------------------------------------------------------------- /coding/Lambda_Beauty/deploy/Lambda/Parser.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/Lambda_Beauty/deploy/Lambda/Parser.fsi -------------------------------------------------------------------------------- /coding/Lambda_Beauty/deploy/Lambda/Parser.fsy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/Lambda_Beauty/deploy/Lambda/Parser.fsy -------------------------------------------------------------------------------- /coding/Lambda_Beauty/deploy/chal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/Lambda_Beauty/deploy/chal.sh -------------------------------------------------------------------------------- /coding/Lambda_Beauty/deploy/chal.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/Lambda_Beauty/deploy/chal.xinetd -------------------------------------------------------------------------------- /coding/Lambda_Beauty/deploy/chal/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/Lambda_Beauty/deploy/chal/Program.fs -------------------------------------------------------------------------------- /coding/Lambda_Beauty/deploy/chal/chal.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/Lambda_Beauty/deploy/chal/chal.fsproj -------------------------------------------------------------------------------- /coding/Lambda_Beauty/deploy/repl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/Lambda_Beauty/deploy/repl.sh -------------------------------------------------------------------------------- /coding/Lambda_Beauty/deploy/repl.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/Lambda_Beauty/deploy/repl.xinetd -------------------------------------------------------------------------------- /coding/Lambda_Beauty/deploy/repl/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/Lambda_Beauty/deploy/repl/Program.fs -------------------------------------------------------------------------------- /coding/Lambda_Beauty/deploy/repl/repl.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/Lambda_Beauty/deploy/repl/repl.fsproj -------------------------------------------------------------------------------- /coding/Lambda_Beauty/deploy/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/Lambda_Beauty/deploy/run.sh -------------------------------------------------------------------------------- /coding/Lambda_Beauty/deploy/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/Lambda_Beauty/deploy/start.sh -------------------------------------------------------------------------------- /coding/Lambda_Beauty/dist.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/Lambda_Beauty/dist.zip -------------------------------------------------------------------------------- /coding/What_does_the_drone_say?/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/What_does_the_drone_say?/README.md -------------------------------------------------------------------------------- /coding/What_does_the_drone_say?/prob/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/coding/What_does_the_drone_say?/prob/gen.py -------------------------------------------------------------------------------- /crypto/Slider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/crypto/Slider/README.md -------------------------------------------------------------------------------- /crypto/Slider/deploy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/crypto/Slider/deploy/Dockerfile -------------------------------------------------------------------------------- /crypto/Slider/deploy/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/crypto/Slider/deploy/run.sh -------------------------------------------------------------------------------- /crypto/Slider/deploy/src/flag.txt: -------------------------------------------------------------------------------- 1 | SCTF{Did_y0u_3nj0y_my_5lid3r?} -------------------------------------------------------------------------------- /crypto/Slider/deploy/src/slider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/crypto/Slider/deploy/src/slider.py -------------------------------------------------------------------------------- /crypto/Slider/deploy/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/crypto/Slider/deploy/start.sh -------------------------------------------------------------------------------- /crypto/Tracer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/crypto/Tracer/README.md -------------------------------------------------------------------------------- /crypto/Tracer/deploy/files.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/crypto/Tracer/deploy/files.tar.gz -------------------------------------------------------------------------------- /crypto/Tracer/prob/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/crypto/Tracer/prob/Makefile -------------------------------------------------------------------------------- /crypto/Tracer/prob/What_I_did: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/crypto/Tracer/prob/What_I_did -------------------------------------------------------------------------------- /crypto/Tracer/prob/flag: -------------------------------------------------------------------------------- 1 | SCTF{Ev3r_get_th4t_feelin9_of_dejavu_L0LOL} 2 | -------------------------------------------------------------------------------- /crypto/Tracer/prob/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/crypto/Tracer/prob/run.sh -------------------------------------------------------------------------------- /crypto/Tracer/prob/yay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/crypto/Tracer/prob/yay.c -------------------------------------------------------------------------------- /crypto/Tracer/prob/yay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/crypto/Tracer/prob/yay.h -------------------------------------------------------------------------------- /crypto/Tracer/prob/yo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/crypto/Tracer/prob/yo.c -------------------------------------------------------------------------------- /crypto/Volatile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/crypto/Volatile/README.md -------------------------------------------------------------------------------- /crypto/Volatile/deploy/Volatile.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/crypto/Volatile/deploy/Volatile.tar.gz -------------------------------------------------------------------------------- /crypto/Volatile/deploy/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/crypto/Volatile/deploy/data.txt -------------------------------------------------------------------------------- /crypto/Volatile/deploy/flag.txt: -------------------------------------------------------------------------------- 1 | SCTF{Claaaasic_RSA_challenge_from_errors} 2 | -------------------------------------------------------------------------------- /crypto/Volatile/deploy/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/crypto/Volatile/deploy/key.pem -------------------------------------------------------------------------------- /crypto/Volatile/deploy/rsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/crypto/Volatile/deploy/rsa.py -------------------------------------------------------------------------------- /crypto/Volatile/deploy/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/crypto/Volatile/deploy/util.py -------------------------------------------------------------------------------- /defense/BankRobber/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/defense/BankRobber/README.md -------------------------------------------------------------------------------- /defense/BankRobber/deploy/src/SCTFBank.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/defense/BankRobber/deploy/src/SCTFBank.sol -------------------------------------------------------------------------------- /defense/SDN-NotOpenNetwork/PacketGen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/defense/SDN-NotOpenNetwork/PacketGen.py -------------------------------------------------------------------------------- /defense/SDN-NotOpenNetwork/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/defense/SDN-NotOpenNetwork/README.md -------------------------------------------------------------------------------- /defense/SDN-NotOpenNetwork/non.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/defense/SDN-NotOpenNetwork/non.json -------------------------------------------------------------------------------- /defense/SSS_binary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/defense/SSS_binary/README.md -------------------------------------------------------------------------------- /defense/SSS_binary/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/defense/SSS_binary/src/Makefile -------------------------------------------------------------------------------- /defense/SSS_binary/src/astparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/defense/SSS_binary/src/astparser.c -------------------------------------------------------------------------------- /defense/SSS_binary/src/astparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/defense/SSS_binary/src/astparser.h -------------------------------------------------------------------------------- /defense/SSS_binary/src/asttree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/defense/SSS_binary/src/asttree.c -------------------------------------------------------------------------------- /defense/SSS_binary/src/asttree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/defense/SSS_binary/src/asttree.h -------------------------------------------------------------------------------- /defense/SSS_binary/src/runner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/defense/SSS_binary/src/runner.c -------------------------------------------------------------------------------- /defense/SSS_binary/src/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/defense/SSS_binary/src/script.c -------------------------------------------------------------------------------- /defense/SSS_binary/src/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/defense/SSS_binary/src/script.h -------------------------------------------------------------------------------- /defense/SSS_binary/src/valcell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/defense/SSS_binary/src/valcell.c -------------------------------------------------------------------------------- /defense/SSS_binary/src/valcell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/defense/SSS_binary/src/valcell.h -------------------------------------------------------------------------------- /defense/SSS_binary/src/valenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/defense/SSS_binary/src/valenv.c -------------------------------------------------------------------------------- /defense/SSS_binary/src/valenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/defense/SSS_binary/src/valenv.h -------------------------------------------------------------------------------- /qual_top10_players.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/qual_top10_players.png -------------------------------------------------------------------------------- /reversing/LowerLevel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/reversing/LowerLevel/README.md -------------------------------------------------------------------------------- /reversing/LowerLevel/deploy/curcuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/reversing/LowerLevel/deploy/curcuit.png -------------------------------------------------------------------------------- /reversing/LowerLevel/deploy/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/reversing/LowerLevel/deploy/output.txt -------------------------------------------------------------------------------- /reversing/LowerLevel/prob/gen_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/reversing/LowerLevel/prob/gen_output.py -------------------------------------------------------------------------------- /reversing/LowerLevel/prob/not7segwithdes.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/reversing/LowerLevel/prob/not7segwithdes.fzz -------------------------------------------------------------------------------- /reversing/SMachine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/reversing/SMachine/README.md -------------------------------------------------------------------------------- /reversing/SMachine/deploy/smachine.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/reversing/SMachine/deploy/smachine.tar.gz -------------------------------------------------------------------------------- /reversing/SMachine/prob/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/reversing/SMachine/prob/Makefile -------------------------------------------------------------------------------- /reversing/SMachine/prob/flag.orig: -------------------------------------------------------------------------------- 1 | SCTF{SMach1N3_WiLL_R3TURN..} 2 | -------------------------------------------------------------------------------- /reversing/SMachine/prob/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/reversing/SMachine/prob/main.c -------------------------------------------------------------------------------- /reversing/SMachine/prob/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/reversing/SMachine/prob/main.h -------------------------------------------------------------------------------- /reversing/SMachine/prob/prob.sm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/reversing/SMachine/prob/prob.sm -------------------------------------------------------------------------------- /reversing/dingJMax/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/reversing/dingJMax/README.md -------------------------------------------------------------------------------- /reversing/dingJMax/deploy/dingJMax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/reversing/dingJMax/deploy/dingJMax -------------------------------------------------------------------------------- /reversing/dingJMax/prob/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/reversing/dingJMax/prob/Makefile -------------------------------------------------------------------------------- /reversing/dingJMax/prob/note_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/reversing/dingJMax/prob/note_gen.py -------------------------------------------------------------------------------- /reversing/dingJMax/prob/stage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/reversing/dingJMax/prob/stage.h -------------------------------------------------------------------------------- /reversing/dingJMax/prob/yay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/reversing/dingJMax/prob/yay.c -------------------------------------------------------------------------------- /reversing/dingJMax/prob/yay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/reversing/dingJMax/prob/yay.h -------------------------------------------------------------------------------- /reversing/dingJMax/prob/yo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/reversing/dingJMax/prob/yo.c -------------------------------------------------------------------------------- /reversing/dingJMax/prob/yo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaishack/sctf2018_qual/HEAD/reversing/dingJMax/prob/yo.h --------------------------------------------------------------------------------