├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── crypto ├── basic_rsa │ ├── README.md │ └── src │ │ ├── Dockerfile │ │ ├── const.py │ │ └── server.py ├── exclusive │ ├── README.md │ ├── file │ │ ├── encrypt.py │ │ └── output.txt │ ├── solver │ │ └── solver.py │ └── src │ │ ├── encrypt.py │ │ └── secret.py ├── l0g0n │ ├── README.md │ ├── file │ │ └── server.py │ ├── pic │ │ ├── l0g0n_1.png │ │ └── l0g0n_2.png │ └── src │ │ ├── Dockerfile │ │ ├── secret.py │ │ └── server.py ├── lcg │ ├── README.md │ ├── file │ │ └── server.py │ └── src │ │ ├── Dockerfile │ │ ├── const.py │ │ └── server.py └── veni_vidi │ └── README.md ├── forensics ├── ALLIGATOR_01 │ └── README.md ├── ALLIGATOR_02 │ └── README.md ├── ALLIGATOR_03 │ ├── README.md │ └── file │ │ ├── wani_secret.zip │ │ └── wani_secret │ │ └── flag.txt ├── chunk_eater │ ├── README.md │ ├── file │ │ └── eaten.png │ └── pic │ │ └── flag.png ├── logged_flag │ ├── README.md │ ├── file │ │ ├── key_log.txt │ │ └── secret.jpg │ └── pic │ │ └── original.jpg └── zero_size_png │ ├── README.md │ ├── file │ └── dyson.png │ ├── pic │ └── flag.png │ └── solver │ └── for_zero.py ├── misc ├── mqtt_challenge │ ├── README.md │ └── pic │ │ ├── mqtt1.png │ │ ├── mqtt2.png │ │ ├── mqtt3.png │ │ └── mqtt_pubsub.png └── number │ ├── README.md │ ├── checker │ └── mis_number.py │ ├── file │ └── number.py │ └── src │ ├── Dockerfile │ ├── docker-compose.yml │ └── server.py ├── pwn ├── 01-netcat │ ├── Dockerfile │ ├── README.md │ ├── docker-compose.yml │ ├── file │ │ ├── pwn01 │ │ └── pwn01.c │ └── src │ │ ├── FLAG │ │ ├── Makefile │ │ ├── chall │ │ ├── init.sh │ │ ├── main.c │ │ ├── pwn.xinetd │ │ └── redir.sh ├── 02-var-rewrite │ ├── Dockerfile │ ├── README.md │ ├── docker-compose.yml │ ├── file │ │ ├── pwn02 │ │ └── pwn02.c │ └── src │ │ ├── FLAG │ │ ├── Makefile │ │ ├── chall │ │ ├── init.sh │ │ ├── main.c │ │ ├── pwn.xinetd │ │ └── redir.sh ├── 03-binsh-address │ ├── Dockerfile │ ├── README.md │ ├── docker-compose.yml │ ├── file │ │ ├── pwn03 │ │ └── pwn03.c │ └── src │ │ ├── FLAG │ │ ├── Makefile │ │ ├── chall │ │ ├── init.sh │ │ ├── main.c │ │ ├── pwn.xinetd │ │ └── redir.sh ├── 04-got-rewriter │ ├── Dockerfile │ ├── README.md │ ├── docker-compose.yml │ ├── file │ │ ├── pwn04 │ │ └── pwn04.c │ ├── pwn04-01.png │ ├── pwn04-02.png │ └── src │ │ ├── FLAG │ │ ├── Makefile │ │ ├── chall │ │ ├── init.sh │ │ ├── main.c │ │ ├── pwn.xinetd │ │ └── redir.sh ├── 05-ret-rewrite │ ├── Dockerfile │ ├── README.md │ ├── docker-compose.yml │ ├── file │ │ ├── pwn05 │ │ ├── pwn05.c │ │ └── pwn05_sample.py │ └── src │ │ ├── FLAG │ │ ├── Makefile │ │ ├── chall │ │ ├── init.sh │ │ ├── main.c │ │ ├── pwn.xinetd │ │ └── redir.sh ├── 06-rop-func-call │ ├── Dockerfile │ ├── README.md │ ├── docker-compose.yml │ ├── file │ │ ├── pwn06 │ │ ├── pwn06.c │ │ └── pwn06_sample.py │ ├── pwn06-01.png │ ├── pwn06-02.png │ ├── pwn06-03.png │ ├── pwn06-04.png │ ├── pwn06-05.png │ ├── pwn06-06.png │ ├── pwn06-07.png │ └── src │ │ ├── FLAG │ │ ├── Makefile │ │ ├── chall │ │ ├── init.sh │ │ ├── main.c │ │ ├── pwn.xinetd │ │ └── redir.sh ├── 07-one-gadget-rce │ ├── Dockerfile │ ├── README.md │ ├── docker-compose.yml │ ├── file │ │ ├── libc-2.27.so │ │ ├── pwn07 │ │ └── pwn07.c │ └── src │ │ ├── FLAG │ │ ├── Makefile │ │ ├── chall │ │ ├── init.sh │ │ ├── main.c │ │ ├── pwn.xinetd │ │ └── redir.sh └── 08-tcache-poisoning │ ├── Dockerfile │ ├── README.md │ ├── docker-compose.yml │ ├── file │ ├── libc-2.27.so │ └── pwn08 │ └── src │ ├── FLAG │ ├── Makefile │ ├── chall │ ├── init.sh │ ├── main.c │ ├── pwn.xinetd │ └── redir.sh ├── reversing ├── complex │ ├── README.md │ ├── file │ │ └── complex │ ├── solver │ │ ├── auto.py │ │ └── solve.py │ └── src │ │ ├── Makefile │ │ ├── generate.py │ │ ├── main.c │ │ └── template.c ├── simple │ ├── README.md │ ├── file │ │ └── simple │ ├── solver │ │ └── solve.py │ └── src │ │ ├── Makefile │ │ └── main.c ├── static │ ├── README.md │ ├── file │ │ └── static │ ├── solver │ │ └── solve.c │ └── src │ │ ├── Makefile │ │ ├── gencode.c │ │ └── main.c └── strings │ ├── README.md │ ├── file │ └── strings │ └── src │ ├── Makefile │ └── main.c └── web ├── SQL_challenge_1 ├── README.md ├── checker │ └── web_sql1.py ├── file │ ├── 1_schema.sql │ ├── index.php │ └── sql-chall-1.zip ├── pic │ ├── ipa_sql_injection.png │ ├── sql1_pic1.png │ ├── sql1_pic2.png │ ├── sql1_pic3.png │ ├── sql1_pic4.png │ └── sql1_pic5.png └── src │ ├── docker-compose.yml │ ├── html │ ├── css │ │ ├── sanitize.css │ │ └── style.css │ └── index.php │ ├── mysql │ ├── conf.d │ │ └── my.cnf │ └── initdb.d │ │ ├── 1_schema.sql │ │ ├── 2_import.sql │ │ ├── 3_grant.sql │ │ └── anime.csv │ ├── php.ini │ └── php │ └── Dockerfile ├── SQL_challenge_2 ├── README.md ├── checker │ └── web_sql2.py ├── file │ ├── 1_schema.sql │ ├── index.php │ └── sql-chall-2.zip ├── pic │ ├── sql2_pic1.png │ ├── sql2_pic2.png │ ├── sql2_pic3.png │ ├── sql2_pic4.png │ └── sql2_pic5.png └── src │ ├── docker-compose.yml │ ├── html │ ├── css │ │ ├── sanitize.css │ │ └── style.css │ └── index.php │ ├── mysql │ ├── conf.d │ │ └── my.cnf │ └── initdb.d │ │ ├── 1_schema.sql │ │ ├── 2_import.sql │ │ ├── 3_grant.sql │ │ └── anime.csv │ ├── php.ini │ └── php │ └── Dockerfile ├── devtools_1 ├── README.md └── src │ ├── default.conf │ ├── docker-compose.yml │ └── html │ ├── index.html │ └── js │ └── index.js ├── devtools_2 ├── README.md └── src │ ├── default.conf │ ├── docker-compose.yml │ └── html │ ├── index.html │ └── js │ └── index.js ├── simple_memo ├── README.md ├── checker │ └── web_simple_memo.py ├── file │ ├── reader.php │ └── simple_memo.zip └── src │ ├── docker-compose.yml │ ├── nginx │ └── nginx.conf │ ├── php │ ├── Dockerfile │ └── php.ini │ └── www │ └── html │ ├── flag.txt │ ├── index.php │ ├── memos │ ├── test.txt │ ├── 今季のアニメ.txt │ ├── 母の誕生日.txt │ ├── 父の誕生日.txt │ ├── 課題メモ.txt │ ├── 課題メモ2.txt │ ├── 適当なメモ.txt │ └── 重要なメモ.txt │ ├── reader.php │ └── robots.txt └── striped_table ├── README.md └── src ├── default.conf ├── docker-compose.yml ├── js └── index.js └── php ├── create.php ├── includes ├── footer.php └── meta-header.php └── index.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # WaniCTF 2020 writeup 2 | 3 | 4 | -------------------------------------------------------------------------------- /crypto/basic_rsa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/crypto/basic_rsa/README.md -------------------------------------------------------------------------------- /crypto/basic_rsa/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/crypto/basic_rsa/src/Dockerfile -------------------------------------------------------------------------------- /crypto/basic_rsa/src/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/crypto/basic_rsa/src/const.py -------------------------------------------------------------------------------- /crypto/basic_rsa/src/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/crypto/basic_rsa/src/server.py -------------------------------------------------------------------------------- /crypto/exclusive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/crypto/exclusive/README.md -------------------------------------------------------------------------------- /crypto/exclusive/file/encrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/crypto/exclusive/file/encrypt.py -------------------------------------------------------------------------------- /crypto/exclusive/file/output.txt: -------------------------------------------------------------------------------- 1 | 9;.0"s3)q1+046-,&3#u-'vr*,s6,1."(,t$:775# *c> -------------------------------------------------------------------------------- /crypto/exclusive/solver/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/crypto/exclusive/solver/solver.py -------------------------------------------------------------------------------- /crypto/exclusive/src/encrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/crypto/exclusive/src/encrypt.py -------------------------------------------------------------------------------- /crypto/exclusive/src/secret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/crypto/exclusive/src/secret.py -------------------------------------------------------------------------------- /crypto/l0g0n/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/crypto/l0g0n/README.md -------------------------------------------------------------------------------- /crypto/l0g0n/file/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/crypto/l0g0n/file/server.py -------------------------------------------------------------------------------- /crypto/l0g0n/pic/l0g0n_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/crypto/l0g0n/pic/l0g0n_1.png -------------------------------------------------------------------------------- /crypto/l0g0n/pic/l0g0n_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/crypto/l0g0n/pic/l0g0n_2.png -------------------------------------------------------------------------------- /crypto/l0g0n/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/crypto/l0g0n/src/Dockerfile -------------------------------------------------------------------------------- /crypto/l0g0n/src/secret.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | flag = b"FLAG{4_b@d_IV_leads_t0_CVSS_10.0__z3r01090n}" 4 | psk = os.urandom(16) 5 | -------------------------------------------------------------------------------- /crypto/l0g0n/src/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/crypto/l0g0n/src/server.py -------------------------------------------------------------------------------- /crypto/lcg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/crypto/lcg/README.md -------------------------------------------------------------------------------- /crypto/lcg/file/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/crypto/lcg/file/server.py -------------------------------------------------------------------------------- /crypto/lcg/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/crypto/lcg/src/Dockerfile -------------------------------------------------------------------------------- /crypto/lcg/src/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/crypto/lcg/src/const.py -------------------------------------------------------------------------------- /crypto/lcg/src/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/crypto/lcg/src/server.py -------------------------------------------------------------------------------- /crypto/veni_vidi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/crypto/veni_vidi/README.md -------------------------------------------------------------------------------- /forensics/ALLIGATOR_01/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/forensics/ALLIGATOR_01/README.md -------------------------------------------------------------------------------- /forensics/ALLIGATOR_02/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/forensics/ALLIGATOR_02/README.md -------------------------------------------------------------------------------- /forensics/ALLIGATOR_03/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/forensics/ALLIGATOR_03/README.md -------------------------------------------------------------------------------- /forensics/ALLIGATOR_03/file/wani_secret.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/forensics/ALLIGATOR_03/file/wani_secret.zip -------------------------------------------------------------------------------- /forensics/ALLIGATOR_03/file/wani_secret/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/forensics/ALLIGATOR_03/file/wani_secret/flag.txt -------------------------------------------------------------------------------- /forensics/chunk_eater/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/forensics/chunk_eater/README.md -------------------------------------------------------------------------------- /forensics/chunk_eater/file/eaten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/forensics/chunk_eater/file/eaten.png -------------------------------------------------------------------------------- /forensics/chunk_eater/pic/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/forensics/chunk_eater/pic/flag.png -------------------------------------------------------------------------------- /forensics/logged_flag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/forensics/logged_flag/README.md -------------------------------------------------------------------------------- /forensics/logged_flag/file/key_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/forensics/logged_flag/file/key_log.txt -------------------------------------------------------------------------------- /forensics/logged_flag/file/secret.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/forensics/logged_flag/file/secret.jpg -------------------------------------------------------------------------------- /forensics/logged_flag/pic/original.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/forensics/logged_flag/pic/original.jpg -------------------------------------------------------------------------------- /forensics/zero_size_png/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/forensics/zero_size_png/README.md -------------------------------------------------------------------------------- /forensics/zero_size_png/file/dyson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/forensics/zero_size_png/file/dyson.png -------------------------------------------------------------------------------- /forensics/zero_size_png/pic/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/forensics/zero_size_png/pic/flag.png -------------------------------------------------------------------------------- /forensics/zero_size_png/solver/for_zero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/forensics/zero_size_png/solver/for_zero.py -------------------------------------------------------------------------------- /misc/mqtt_challenge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/misc/mqtt_challenge/README.md -------------------------------------------------------------------------------- /misc/mqtt_challenge/pic/mqtt1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/misc/mqtt_challenge/pic/mqtt1.png -------------------------------------------------------------------------------- /misc/mqtt_challenge/pic/mqtt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/misc/mqtt_challenge/pic/mqtt2.png -------------------------------------------------------------------------------- /misc/mqtt_challenge/pic/mqtt3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/misc/mqtt_challenge/pic/mqtt3.png -------------------------------------------------------------------------------- /misc/mqtt_challenge/pic/mqtt_pubsub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/misc/mqtt_challenge/pic/mqtt_pubsub.png -------------------------------------------------------------------------------- /misc/number/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/misc/number/README.md -------------------------------------------------------------------------------- /misc/number/checker/mis_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/misc/number/checker/mis_number.py -------------------------------------------------------------------------------- /misc/number/file/number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/misc/number/file/number.py -------------------------------------------------------------------------------- /misc/number/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/misc/number/src/Dockerfile -------------------------------------------------------------------------------- /misc/number/src/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/misc/number/src/docker-compose.yml -------------------------------------------------------------------------------- /misc/number/src/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/misc/number/src/server.py -------------------------------------------------------------------------------- /pwn/01-netcat/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/01-netcat/Dockerfile -------------------------------------------------------------------------------- /pwn/01-netcat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/01-netcat/README.md -------------------------------------------------------------------------------- /pwn/01-netcat/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/01-netcat/docker-compose.yml -------------------------------------------------------------------------------- /pwn/01-netcat/file/pwn01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/01-netcat/file/pwn01 -------------------------------------------------------------------------------- /pwn/01-netcat/file/pwn01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/01-netcat/file/pwn01.c -------------------------------------------------------------------------------- /pwn/01-netcat/src/FLAG: -------------------------------------------------------------------------------- 1 | FLAG{netcat-1s-sw1ss-4rmy-kn1fe} 2 | -------------------------------------------------------------------------------- /pwn/01-netcat/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/01-netcat/src/Makefile -------------------------------------------------------------------------------- /pwn/01-netcat/src/chall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/01-netcat/src/chall -------------------------------------------------------------------------------- /pwn/01-netcat/src/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/01-netcat/src/init.sh -------------------------------------------------------------------------------- /pwn/01-netcat/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/01-netcat/src/main.c -------------------------------------------------------------------------------- /pwn/01-netcat/src/pwn.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/01-netcat/src/pwn.xinetd -------------------------------------------------------------------------------- /pwn/01-netcat/src/redir.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | cd /home/pwn && ./chall 3 | -------------------------------------------------------------------------------- /pwn/02-var-rewrite/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/02-var-rewrite/Dockerfile -------------------------------------------------------------------------------- /pwn/02-var-rewrite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/02-var-rewrite/README.md -------------------------------------------------------------------------------- /pwn/02-var-rewrite/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/02-var-rewrite/docker-compose.yml -------------------------------------------------------------------------------- /pwn/02-var-rewrite/file/pwn02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/02-var-rewrite/file/pwn02 -------------------------------------------------------------------------------- /pwn/02-var-rewrite/file/pwn02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/02-var-rewrite/file/pwn02.c -------------------------------------------------------------------------------- /pwn/02-var-rewrite/src/FLAG: -------------------------------------------------------------------------------- 1 | FLAG{1ets-1earn-stack-w1th-b0f-var1ab1e-rewr1te} 2 | -------------------------------------------------------------------------------- /pwn/02-var-rewrite/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/02-var-rewrite/src/Makefile -------------------------------------------------------------------------------- /pwn/02-var-rewrite/src/chall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/02-var-rewrite/src/chall -------------------------------------------------------------------------------- /pwn/02-var-rewrite/src/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/02-var-rewrite/src/init.sh -------------------------------------------------------------------------------- /pwn/02-var-rewrite/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/02-var-rewrite/src/main.c -------------------------------------------------------------------------------- /pwn/02-var-rewrite/src/pwn.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/02-var-rewrite/src/pwn.xinetd -------------------------------------------------------------------------------- /pwn/02-var-rewrite/src/redir.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | cd /home/pwn && ./chall 3 | -------------------------------------------------------------------------------- /pwn/03-binsh-address/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/03-binsh-address/Dockerfile -------------------------------------------------------------------------------- /pwn/03-binsh-address/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/03-binsh-address/README.md -------------------------------------------------------------------------------- /pwn/03-binsh-address/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/03-binsh-address/docker-compose.yml -------------------------------------------------------------------------------- /pwn/03-binsh-address/file/pwn03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/03-binsh-address/file/pwn03 -------------------------------------------------------------------------------- /pwn/03-binsh-address/file/pwn03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/03-binsh-address/file/pwn03.c -------------------------------------------------------------------------------- /pwn/03-binsh-address/src/FLAG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/03-binsh-address/src/FLAG -------------------------------------------------------------------------------- /pwn/03-binsh-address/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/03-binsh-address/src/Makefile -------------------------------------------------------------------------------- /pwn/03-binsh-address/src/chall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/03-binsh-address/src/chall -------------------------------------------------------------------------------- /pwn/03-binsh-address/src/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/03-binsh-address/src/init.sh -------------------------------------------------------------------------------- /pwn/03-binsh-address/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/03-binsh-address/src/main.c -------------------------------------------------------------------------------- /pwn/03-binsh-address/src/pwn.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/03-binsh-address/src/pwn.xinetd -------------------------------------------------------------------------------- /pwn/03-binsh-address/src/redir.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | cd /home/pwn && ./chall 3 | -------------------------------------------------------------------------------- /pwn/04-got-rewriter/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/04-got-rewriter/Dockerfile -------------------------------------------------------------------------------- /pwn/04-got-rewriter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/04-got-rewriter/README.md -------------------------------------------------------------------------------- /pwn/04-got-rewriter/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/04-got-rewriter/docker-compose.yml -------------------------------------------------------------------------------- /pwn/04-got-rewriter/file/pwn04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/04-got-rewriter/file/pwn04 -------------------------------------------------------------------------------- /pwn/04-got-rewriter/file/pwn04.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/04-got-rewriter/file/pwn04.c -------------------------------------------------------------------------------- /pwn/04-got-rewriter/pwn04-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/04-got-rewriter/pwn04-01.png -------------------------------------------------------------------------------- /pwn/04-got-rewriter/pwn04-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/04-got-rewriter/pwn04-02.png -------------------------------------------------------------------------------- /pwn/04-got-rewriter/src/FLAG: -------------------------------------------------------------------------------- 1 | FLAG{we-c4n-f1y-with-gl0b41-0ffset-tab1e} 2 | -------------------------------------------------------------------------------- /pwn/04-got-rewriter/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/04-got-rewriter/src/Makefile -------------------------------------------------------------------------------- /pwn/04-got-rewriter/src/chall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/04-got-rewriter/src/chall -------------------------------------------------------------------------------- /pwn/04-got-rewriter/src/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/04-got-rewriter/src/init.sh -------------------------------------------------------------------------------- /pwn/04-got-rewriter/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/04-got-rewriter/src/main.c -------------------------------------------------------------------------------- /pwn/04-got-rewriter/src/pwn.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/04-got-rewriter/src/pwn.xinetd -------------------------------------------------------------------------------- /pwn/04-got-rewriter/src/redir.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | cd /home/pwn && ./chall 3 | -------------------------------------------------------------------------------- /pwn/05-ret-rewrite/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/05-ret-rewrite/Dockerfile -------------------------------------------------------------------------------- /pwn/05-ret-rewrite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/05-ret-rewrite/README.md -------------------------------------------------------------------------------- /pwn/05-ret-rewrite/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/05-ret-rewrite/docker-compose.yml -------------------------------------------------------------------------------- /pwn/05-ret-rewrite/file/pwn05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/05-ret-rewrite/file/pwn05 -------------------------------------------------------------------------------- /pwn/05-ret-rewrite/file/pwn05.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/05-ret-rewrite/file/pwn05.c -------------------------------------------------------------------------------- /pwn/05-ret-rewrite/file/pwn05_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/05-ret-rewrite/file/pwn05_sample.py -------------------------------------------------------------------------------- /pwn/05-ret-rewrite/src/FLAG: -------------------------------------------------------------------------------- 1 | FLAG{1earning-how-return-address-w0rks-on-st4ck} 2 | -------------------------------------------------------------------------------- /pwn/05-ret-rewrite/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/05-ret-rewrite/src/Makefile -------------------------------------------------------------------------------- /pwn/05-ret-rewrite/src/chall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/05-ret-rewrite/src/chall -------------------------------------------------------------------------------- /pwn/05-ret-rewrite/src/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/05-ret-rewrite/src/init.sh -------------------------------------------------------------------------------- /pwn/05-ret-rewrite/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/05-ret-rewrite/src/main.c -------------------------------------------------------------------------------- /pwn/05-ret-rewrite/src/pwn.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/05-ret-rewrite/src/pwn.xinetd -------------------------------------------------------------------------------- /pwn/05-ret-rewrite/src/redir.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | cd /home/pwn && ./chall 3 | -------------------------------------------------------------------------------- /pwn/06-rop-func-call/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/06-rop-func-call/Dockerfile -------------------------------------------------------------------------------- /pwn/06-rop-func-call/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/06-rop-func-call/README.md -------------------------------------------------------------------------------- /pwn/06-rop-func-call/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/06-rop-func-call/docker-compose.yml -------------------------------------------------------------------------------- /pwn/06-rop-func-call/file/pwn06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/06-rop-func-call/file/pwn06 -------------------------------------------------------------------------------- /pwn/06-rop-func-call/file/pwn06.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/06-rop-func-call/file/pwn06.c -------------------------------------------------------------------------------- /pwn/06-rop-func-call/file/pwn06_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/06-rop-func-call/file/pwn06_sample.py -------------------------------------------------------------------------------- /pwn/06-rop-func-call/pwn06-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/06-rop-func-call/pwn06-01.png -------------------------------------------------------------------------------- /pwn/06-rop-func-call/pwn06-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/06-rop-func-call/pwn06-02.png -------------------------------------------------------------------------------- /pwn/06-rop-func-call/pwn06-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/06-rop-func-call/pwn06-03.png -------------------------------------------------------------------------------- /pwn/06-rop-func-call/pwn06-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/06-rop-func-call/pwn06-04.png -------------------------------------------------------------------------------- /pwn/06-rop-func-call/pwn06-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/06-rop-func-call/pwn06-05.png -------------------------------------------------------------------------------- /pwn/06-rop-func-call/pwn06-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/06-rop-func-call/pwn06-06.png -------------------------------------------------------------------------------- /pwn/06-rop-func-call/pwn06-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/06-rop-func-call/pwn06-07.png -------------------------------------------------------------------------------- /pwn/06-rop-func-call/src/FLAG: -------------------------------------------------------------------------------- 1 | FLAG{learning-rop-and-x64-system-call} 2 | -------------------------------------------------------------------------------- /pwn/06-rop-func-call/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/06-rop-func-call/src/Makefile -------------------------------------------------------------------------------- /pwn/06-rop-func-call/src/chall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/06-rop-func-call/src/chall -------------------------------------------------------------------------------- /pwn/06-rop-func-call/src/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/06-rop-func-call/src/init.sh -------------------------------------------------------------------------------- /pwn/06-rop-func-call/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/06-rop-func-call/src/main.c -------------------------------------------------------------------------------- /pwn/06-rop-func-call/src/pwn.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/06-rop-func-call/src/pwn.xinetd -------------------------------------------------------------------------------- /pwn/06-rop-func-call/src/redir.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | cd /home/pwn && ./chall 3 | -------------------------------------------------------------------------------- /pwn/07-one-gadget-rce/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/07-one-gadget-rce/Dockerfile -------------------------------------------------------------------------------- /pwn/07-one-gadget-rce/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/07-one-gadget-rce/README.md -------------------------------------------------------------------------------- /pwn/07-one-gadget-rce/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/07-one-gadget-rce/docker-compose.yml -------------------------------------------------------------------------------- /pwn/07-one-gadget-rce/file/libc-2.27.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/07-one-gadget-rce/file/libc-2.27.so -------------------------------------------------------------------------------- /pwn/07-one-gadget-rce/file/pwn07: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/07-one-gadget-rce/file/pwn07 -------------------------------------------------------------------------------- /pwn/07-one-gadget-rce/file/pwn07.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/07-one-gadget-rce/file/pwn07.c -------------------------------------------------------------------------------- /pwn/07-one-gadget-rce/src/FLAG: -------------------------------------------------------------------------------- 1 | FLAG{mem0ry-1eak-4nd-0ne-gadget-rem0te-ce} 2 | -------------------------------------------------------------------------------- /pwn/07-one-gadget-rce/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/07-one-gadget-rce/src/Makefile -------------------------------------------------------------------------------- /pwn/07-one-gadget-rce/src/chall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/07-one-gadget-rce/src/chall -------------------------------------------------------------------------------- /pwn/07-one-gadget-rce/src/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/07-one-gadget-rce/src/init.sh -------------------------------------------------------------------------------- /pwn/07-one-gadget-rce/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/07-one-gadget-rce/src/main.c -------------------------------------------------------------------------------- /pwn/07-one-gadget-rce/src/pwn.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/07-one-gadget-rce/src/pwn.xinetd -------------------------------------------------------------------------------- /pwn/07-one-gadget-rce/src/redir.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | cd /home/pwn && ./chall 3 | -------------------------------------------------------------------------------- /pwn/08-tcache-poisoning/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/08-tcache-poisoning/Dockerfile -------------------------------------------------------------------------------- /pwn/08-tcache-poisoning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/08-tcache-poisoning/README.md -------------------------------------------------------------------------------- /pwn/08-tcache-poisoning/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/08-tcache-poisoning/docker-compose.yml -------------------------------------------------------------------------------- /pwn/08-tcache-poisoning/file/libc-2.27.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/08-tcache-poisoning/file/libc-2.27.so -------------------------------------------------------------------------------- /pwn/08-tcache-poisoning/file/pwn08: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/08-tcache-poisoning/file/pwn08 -------------------------------------------------------------------------------- /pwn/08-tcache-poisoning/src/FLAG: -------------------------------------------------------------------------------- 1 | FLAG{I-am-a-heap-beginner} 2 | -------------------------------------------------------------------------------- /pwn/08-tcache-poisoning/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/08-tcache-poisoning/src/Makefile -------------------------------------------------------------------------------- /pwn/08-tcache-poisoning/src/chall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/08-tcache-poisoning/src/chall -------------------------------------------------------------------------------- /pwn/08-tcache-poisoning/src/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/08-tcache-poisoning/src/init.sh -------------------------------------------------------------------------------- /pwn/08-tcache-poisoning/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/08-tcache-poisoning/src/main.c -------------------------------------------------------------------------------- /pwn/08-tcache-poisoning/src/pwn.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/pwn/08-tcache-poisoning/src/pwn.xinetd -------------------------------------------------------------------------------- /pwn/08-tcache-poisoning/src/redir.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | cd /home/pwn && ./chall 3 | -------------------------------------------------------------------------------- /reversing/complex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/reversing/complex/README.md -------------------------------------------------------------------------------- /reversing/complex/file/complex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/reversing/complex/file/complex -------------------------------------------------------------------------------- /reversing/complex/solver/auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/reversing/complex/solver/auto.py -------------------------------------------------------------------------------- /reversing/complex/solver/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/reversing/complex/solver/solve.py -------------------------------------------------------------------------------- /reversing/complex/src/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | gcc main.c -fno-stack-protector -o complex 3 | -------------------------------------------------------------------------------- /reversing/complex/src/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/reversing/complex/src/generate.py -------------------------------------------------------------------------------- /reversing/complex/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/reversing/complex/src/main.c -------------------------------------------------------------------------------- /reversing/complex/src/template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/reversing/complex/src/template.c -------------------------------------------------------------------------------- /reversing/simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/reversing/simple/README.md -------------------------------------------------------------------------------- /reversing/simple/file/simple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/reversing/simple/file/simple -------------------------------------------------------------------------------- /reversing/simple/solver/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/reversing/simple/solver/solve.py -------------------------------------------------------------------------------- /reversing/simple/src/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | gcc main.c -fno-stack-protector -o simple 3 | -------------------------------------------------------------------------------- /reversing/simple/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/reversing/simple/src/main.c -------------------------------------------------------------------------------- /reversing/static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/reversing/static/README.md -------------------------------------------------------------------------------- /reversing/static/file/static: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/reversing/static/file/static -------------------------------------------------------------------------------- /reversing/static/solver/solve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/reversing/static/solver/solve.c -------------------------------------------------------------------------------- /reversing/static/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/reversing/static/src/Makefile -------------------------------------------------------------------------------- /reversing/static/src/gencode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/reversing/static/src/gencode.c -------------------------------------------------------------------------------- /reversing/static/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/reversing/static/src/main.c -------------------------------------------------------------------------------- /reversing/strings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/reversing/strings/README.md -------------------------------------------------------------------------------- /reversing/strings/file/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/reversing/strings/file/strings -------------------------------------------------------------------------------- /reversing/strings/src/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | gcc main.c -fno-stack-protector -o strings 3 | -------------------------------------------------------------------------------- /reversing/strings/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/reversing/strings/src/main.c -------------------------------------------------------------------------------- /web/SQL_challenge_1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/SQL_challenge_1/README.md -------------------------------------------------------------------------------- /web/SQL_challenge_1/checker/web_sql1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/SQL_challenge_1/checker/web_sql1.py -------------------------------------------------------------------------------- /web/SQL_challenge_1/file/1_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/SQL_challenge_1/file/1_schema.sql -------------------------------------------------------------------------------- /web/SQL_challenge_1/file/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/SQL_challenge_1/file/index.php -------------------------------------------------------------------------------- /web/SQL_challenge_1/file/sql-chall-1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/SQL_challenge_1/file/sql-chall-1.zip -------------------------------------------------------------------------------- /web/SQL_challenge_1/pic/ipa_sql_injection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/SQL_challenge_1/pic/ipa_sql_injection.png -------------------------------------------------------------------------------- /web/SQL_challenge_1/pic/sql1_pic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/SQL_challenge_1/pic/sql1_pic1.png -------------------------------------------------------------------------------- /web/SQL_challenge_1/pic/sql1_pic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/SQL_challenge_1/pic/sql1_pic2.png -------------------------------------------------------------------------------- /web/SQL_challenge_1/pic/sql1_pic3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/SQL_challenge_1/pic/sql1_pic3.png -------------------------------------------------------------------------------- /web/SQL_challenge_1/pic/sql1_pic4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/SQL_challenge_1/pic/sql1_pic4.png -------------------------------------------------------------------------------- /web/SQL_challenge_1/pic/sql1_pic5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/SQL_challenge_1/pic/sql1_pic5.png -------------------------------------------------------------------------------- /web/SQL_challenge_1/src/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/SQL_challenge_1/src/docker-compose.yml -------------------------------------------------------------------------------- /web/SQL_challenge_1/src/html/css/sanitize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/SQL_challenge_1/src/html/css/sanitize.css -------------------------------------------------------------------------------- /web/SQL_challenge_1/src/html/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/SQL_challenge_1/src/html/css/style.css -------------------------------------------------------------------------------- /web/SQL_challenge_1/src/html/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/SQL_challenge_1/src/html/index.php -------------------------------------------------------------------------------- /web/SQL_challenge_1/src/mysql/conf.d/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/SQL_challenge_1/src/mysql/conf.d/my.cnf -------------------------------------------------------------------------------- /web/SQL_challenge_1/src/mysql/initdb.d/1_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/SQL_challenge_1/src/mysql/initdb.d/1_schema.sql -------------------------------------------------------------------------------- /web/SQL_challenge_1/src/mysql/initdb.d/2_import.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/SQL_challenge_1/src/mysql/initdb.d/2_import.sql -------------------------------------------------------------------------------- /web/SQL_challenge_1/src/mysql/initdb.d/3_grant.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/SQL_challenge_1/src/mysql/initdb.d/3_grant.sql -------------------------------------------------------------------------------- /web/SQL_challenge_1/src/mysql/initdb.d/anime.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/SQL_challenge_1/src/mysql/initdb.d/anime.csv -------------------------------------------------------------------------------- /web/SQL_challenge_1/src/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/SQL_challenge_1/src/php.ini -------------------------------------------------------------------------------- /web/SQL_challenge_1/src/php/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/SQL_challenge_1/src/php/Dockerfile -------------------------------------------------------------------------------- /web/SQL_challenge_2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/SQL_challenge_2/README.md -------------------------------------------------------------------------------- /web/SQL_challenge_2/checker/web_sql2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/SQL_challenge_2/checker/web_sql2.py -------------------------------------------------------------------------------- /web/SQL_challenge_2/file/1_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/SQL_challenge_2/file/1_schema.sql -------------------------------------------------------------------------------- /web/SQL_challenge_2/file/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/SQL_challenge_2/file/index.php -------------------------------------------------------------------------------- /web/SQL_challenge_2/file/sql-chall-2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/SQL_challenge_2/file/sql-chall-2.zip -------------------------------------------------------------------------------- /web/SQL_challenge_2/pic/sql2_pic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/SQL_challenge_2/pic/sql2_pic1.png -------------------------------------------------------------------------------- /web/SQL_challenge_2/pic/sql2_pic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/SQL_challenge_2/pic/sql2_pic2.png -------------------------------------------------------------------------------- /web/SQL_challenge_2/pic/sql2_pic3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/SQL_challenge_2/pic/sql2_pic3.png -------------------------------------------------------------------------------- /web/SQL_challenge_2/pic/sql2_pic4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/SQL_challenge_2/pic/sql2_pic4.png -------------------------------------------------------------------------------- /web/SQL_challenge_2/pic/sql2_pic5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/SQL_challenge_2/pic/sql2_pic5.png -------------------------------------------------------------------------------- /web/SQL_challenge_2/src/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/SQL_challenge_2/src/docker-compose.yml -------------------------------------------------------------------------------- /web/SQL_challenge_2/src/html/css/sanitize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/SQL_challenge_2/src/html/css/sanitize.css -------------------------------------------------------------------------------- /web/SQL_challenge_2/src/html/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/SQL_challenge_2/src/html/css/style.css -------------------------------------------------------------------------------- /web/SQL_challenge_2/src/html/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/SQL_challenge_2/src/html/index.php -------------------------------------------------------------------------------- /web/SQL_challenge_2/src/mysql/conf.d/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/SQL_challenge_2/src/mysql/conf.d/my.cnf -------------------------------------------------------------------------------- /web/SQL_challenge_2/src/mysql/initdb.d/1_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/SQL_challenge_2/src/mysql/initdb.d/1_schema.sql -------------------------------------------------------------------------------- /web/SQL_challenge_2/src/mysql/initdb.d/2_import.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/SQL_challenge_2/src/mysql/initdb.d/2_import.sql -------------------------------------------------------------------------------- /web/SQL_challenge_2/src/mysql/initdb.d/3_grant.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/SQL_challenge_2/src/mysql/initdb.d/3_grant.sql -------------------------------------------------------------------------------- /web/SQL_challenge_2/src/mysql/initdb.d/anime.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/SQL_challenge_2/src/mysql/initdb.d/anime.csv -------------------------------------------------------------------------------- /web/SQL_challenge_2/src/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/SQL_challenge_2/src/php.ini -------------------------------------------------------------------------------- /web/SQL_challenge_2/src/php/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/SQL_challenge_2/src/php/Dockerfile -------------------------------------------------------------------------------- /web/devtools_1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/devtools_1/README.md -------------------------------------------------------------------------------- /web/devtools_1/src/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/devtools_1/src/default.conf -------------------------------------------------------------------------------- /web/devtools_1/src/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/devtools_1/src/docker-compose.yml -------------------------------------------------------------------------------- /web/devtools_1/src/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/devtools_1/src/html/index.html -------------------------------------------------------------------------------- /web/devtools_1/src/html/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/devtools_1/src/html/js/index.js -------------------------------------------------------------------------------- /web/devtools_2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/devtools_2/README.md -------------------------------------------------------------------------------- /web/devtools_2/src/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/devtools_2/src/default.conf -------------------------------------------------------------------------------- /web/devtools_2/src/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/devtools_2/src/docker-compose.yml -------------------------------------------------------------------------------- /web/devtools_2/src/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/devtools_2/src/html/index.html -------------------------------------------------------------------------------- /web/devtools_2/src/html/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/devtools_2/src/html/js/index.js -------------------------------------------------------------------------------- /web/simple_memo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/simple_memo/README.md -------------------------------------------------------------------------------- /web/simple_memo/checker/web_simple_memo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/simple_memo/checker/web_simple_memo.py -------------------------------------------------------------------------------- /web/simple_memo/file/reader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/simple_memo/file/reader.php -------------------------------------------------------------------------------- /web/simple_memo/file/simple_memo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/simple_memo/file/simple_memo.zip -------------------------------------------------------------------------------- /web/simple_memo/src/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/simple_memo/src/docker-compose.yml -------------------------------------------------------------------------------- /web/simple_memo/src/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/simple_memo/src/nginx/nginx.conf -------------------------------------------------------------------------------- /web/simple_memo/src/php/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/simple_memo/src/php/Dockerfile -------------------------------------------------------------------------------- /web/simple_memo/src/php/php.ini: -------------------------------------------------------------------------------- 1 | date.timezone = "Asia/Tokyo" -------------------------------------------------------------------------------- /web/simple_memo/src/www/html/flag.txt: -------------------------------------------------------------------------------- 1 | FLAG{y0u_c4n_get_hi5_5ecret_fi1e} -------------------------------------------------------------------------------- /web/simple_memo/src/www/html/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/simple_memo/src/www/html/index.php -------------------------------------------------------------------------------- /web/simple_memo/src/www/html/memos/test.txt: -------------------------------------------------------------------------------- 1 | これはテスト用のメモです -------------------------------------------------------------------------------- /web/simple_memo/src/www/html/memos/今季のアニメ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/simple_memo/src/www/html/memos/今季のアニメ.txt -------------------------------------------------------------------------------- /web/simple_memo/src/www/html/memos/母の誕生日.txt: -------------------------------------------------------------------------------- 1 | 11/26 2 | お母さんの誕生日。 3 | 花束を買って持っていくこと。 -------------------------------------------------------------------------------- /web/simple_memo/src/www/html/memos/父の誕生日.txt: -------------------------------------------------------------------------------- 1 | 1912年6月23日 計算機科学の父の誕生日 -------------------------------------------------------------------------------- /web/simple_memo/src/www/html/memos/課題メモ.txt: -------------------------------------------------------------------------------- 1 | 電磁気学入門 - 2 | 課題 教科書『猿でも分かるマクスウェル方程式 入門編』 p.163 問2,3 3 | 提出締め切り 11月20日 -------------------------------------------------------------------------------- /web/simple_memo/src/www/html/memos/課題メモ2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/simple_memo/src/www/html/memos/課題メモ2.txt -------------------------------------------------------------------------------- /web/simple_memo/src/www/html/memos/適当なメモ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/simple_memo/src/www/html/memos/適当なメモ.txt -------------------------------------------------------------------------------- /web/simple_memo/src/www/html/memos/重要なメモ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/simple_memo/src/www/html/memos/重要なメモ.txt -------------------------------------------------------------------------------- /web/simple_memo/src/www/html/reader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/simple_memo/src/www/html/reader.php -------------------------------------------------------------------------------- /web/simple_memo/src/www/html/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/simple_memo/src/www/html/robots.txt -------------------------------------------------------------------------------- /web/striped_table/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/striped_table/README.md -------------------------------------------------------------------------------- /web/striped_table/src/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/striped_table/src/default.conf -------------------------------------------------------------------------------- /web/striped_table/src/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/striped_table/src/docker-compose.yml -------------------------------------------------------------------------------- /web/striped_table/src/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/striped_table/src/js/index.js -------------------------------------------------------------------------------- /web/striped_table/src/php/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/striped_table/src/php/create.php -------------------------------------------------------------------------------- /web/striped_table/src/php/includes/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/striped_table/src/php/includes/footer.php -------------------------------------------------------------------------------- /web/striped_table/src/php/includes/meta-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/striped_table/src/php/includes/meta-header.php -------------------------------------------------------------------------------- /web/striped_table/src/php/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wani-hackase/wanictf2020-writeup/HEAD/web/striped_table/src/php/index.php --------------------------------------------------------------------------------