├── PHP ├── chall_1 │ ├── Chall_1.md │ ├── exp.py │ └── index.php ├── chall_10 │ ├── Chall_10.md │ ├── exp.md │ ├── flag │ ├── flag.php │ ├── index_v1.php │ └── index_v2.php ├── chall_2 │ ├── chall_2.md │ ├── exp.py │ └── index.php ├── chall_3 │ ├── chall_3.md │ ├── exp.php │ └── index.php ├── chall_4 │ ├── chall_4.md │ └── index.php ├── chall_5 │ ├── chall_5.md │ ├── config.php │ ├── index.php │ └── index.tpl.html ├── chall_6 │ ├── chall_6.md │ └── index.php ├── chall_7 │ ├── chall_7.md │ ├── config.php │ └── index.php ├── chall_8 │ ├── chall_8.md │ └── index.php └── chall_9 │ ├── README.md │ ├── chall_9.md │ ├── config.php │ ├── exp.py │ ├── exp2.py │ ├── index.php │ └── register.php ├── README.md ├── javascript └── chall_1 │ ├── readme.md │ ├── solve.py │ └── source.js ├── nodejs ├── chall_1 │ ├── chall_1.md │ ├── exp.py │ └── main.js ├── chall_2 │ ├── chall_2.md │ ├── config.js │ └── main.js ├── chall_3 │ ├── chall_3.md │ └── web.js └── chall_4 │ ├── app.js │ ├── chall_4.md │ └── run.sh ├── python ├── chall_1 │ ├── chall_1.md │ └── sandbox.py ├── chall_2 │ ├── .idea │ │ ├── chall_2.iml │ │ ├── codeStyles │ │ │ ├── Project.xml │ │ │ └── codeStyleConfig.xml │ │ ├── dictionaries │ │ │ └── meizj.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── workspace.xml │ ├── exp.py │ ├── miniblockchain.py │ └── readme.md ├── chall_3 │ ├── .idea │ │ ├── chall_3.iml │ │ ├── codeStyles │ │ │ ├── Project.xml │ │ │ └── codeStyleConfig.xml │ │ ├── dictionaries │ │ │ └── meizj.xml │ │ ├── inspectionProfiles │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── workspace.xml │ ├── chall_3.md │ ├── exp.py │ ├── main.py │ └── main.pyc ├── chall_4 │ ├── chall_4.md │ └── main.py └── chall_5 │ ├── chall_5.md │ └── main.py └── 出题思路 └── HCTF2017_lorexxar.md /PHP/chall_1/Chall_1.md: -------------------------------------------------------------------------------- 1 | ### 题目来源: HITCON 2017 babyfirst-revenge 2 | -------------------------------------------------------------------------------- /PHP/chall_1/exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/PHP/chall_1/exp.py -------------------------------------------------------------------------------- /PHP/chall_1/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/PHP/chall_1/index.php -------------------------------------------------------------------------------- /PHP/chall_10/Chall_10.md: -------------------------------------------------------------------------------- 1 | ### 题目来源: 梅子酒 -------------------------------------------------------------------------------- /PHP/chall_10/exp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/PHP/chall_10/exp.md -------------------------------------------------------------------------------- /PHP/chall_10/flag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/PHP/chall_10/flag -------------------------------------------------------------------------------- /PHP/chall_10/flag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/PHP/chall_10/flag.php -------------------------------------------------------------------------------- /PHP/chall_10/index_v1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/PHP/chall_10/index_v1.php -------------------------------------------------------------------------------- /PHP/chall_10/index_v2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/PHP/chall_10/index_v2.php -------------------------------------------------------------------------------- /PHP/chall_2/chall_2.md: -------------------------------------------------------------------------------- 1 | ### 题目来源 HITCON 2017 -------------------------------------------------------------------------------- /PHP/chall_2/exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/PHP/chall_2/exp.py -------------------------------------------------------------------------------- /PHP/chall_2/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/PHP/chall_2/index.php -------------------------------------------------------------------------------- /PHP/chall_3/chall_3.md: -------------------------------------------------------------------------------- 1 | ### 题目来源 2015 HITCON -------------------------------------------------------------------------------- /PHP/chall_3/exp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/PHP/chall_3/exp.php -------------------------------------------------------------------------------- /PHP/chall_3/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/PHP/chall_3/index.php -------------------------------------------------------------------------------- /PHP/chall_4/chall_4.md: -------------------------------------------------------------------------------- 1 | ### 题目来源 HITCON 2015 -------------------------------------------------------------------------------- /PHP/chall_4/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/PHP/chall_4/index.php -------------------------------------------------------------------------------- /PHP/chall_5/chall_5.md: -------------------------------------------------------------------------------- 1 | ### 题目来源 HITCON 2015 -------------------------------------------------------------------------------- /PHP/chall_5/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/PHP/chall_5/config.php -------------------------------------------------------------------------------- /PHP/chall_5/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/PHP/chall_5/index.php -------------------------------------------------------------------------------- /PHP/chall_5/index.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/PHP/chall_5/index.tpl.html -------------------------------------------------------------------------------- /PHP/chall_6/chall_6.md: -------------------------------------------------------------------------------- 1 | ### 题目来源 HITCON 2015 -------------------------------------------------------------------------------- /PHP/chall_6/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/PHP/chall_6/index.php -------------------------------------------------------------------------------- /PHP/chall_7/chall_7.md: -------------------------------------------------------------------------------- 1 | ### 题目来源 HITCON 2015 -------------------------------------------------------------------------------- /PHP/chall_7/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/PHP/chall_7/config.php -------------------------------------------------------------------------------- /PHP/chall_7/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/PHP/chall_7/index.php -------------------------------------------------------------------------------- /PHP/chall_8/chall_8.md: -------------------------------------------------------------------------------- 1 | ### 题目来源 HITCON 2017 -------------------------------------------------------------------------------- /PHP/chall_8/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/PHP/chall_8/index.php -------------------------------------------------------------------------------- /PHP/chall_9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/PHP/chall_9/README.md -------------------------------------------------------------------------------- /PHP/chall_9/chall_9.md: -------------------------------------------------------------------------------- 1 | ### 题目来源 HCTF 2016 -------------------------------------------------------------------------------- /PHP/chall_9/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/PHP/chall_9/config.php -------------------------------------------------------------------------------- /PHP/chall_9/exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/PHP/chall_9/exp.py -------------------------------------------------------------------------------- /PHP/chall_9/exp2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/PHP/chall_9/exp2.py -------------------------------------------------------------------------------- /PHP/chall_9/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/PHP/chall_9/index.php -------------------------------------------------------------------------------- /PHP/chall_9/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/PHP/chall_9/register.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/README.md -------------------------------------------------------------------------------- /javascript/chall_1/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/javascript/chall_1/readme.md -------------------------------------------------------------------------------- /javascript/chall_1/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/javascript/chall_1/solve.py -------------------------------------------------------------------------------- /javascript/chall_1/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/javascript/chall_1/source.js -------------------------------------------------------------------------------- /nodejs/chall_1/chall_1.md: -------------------------------------------------------------------------------- 1 | ### 题目来源 HITCON 2017 -------------------------------------------------------------------------------- /nodejs/chall_1/exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/nodejs/chall_1/exp.py -------------------------------------------------------------------------------- /nodejs/chall_1/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/nodejs/chall_1/main.js -------------------------------------------------------------------------------- /nodejs/chall_2/chall_2.md: -------------------------------------------------------------------------------- 1 | ### 题目来源 HITCON 2016 -------------------------------------------------------------------------------- /nodejs/chall_2/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/nodejs/chall_2/config.js -------------------------------------------------------------------------------- /nodejs/chall_2/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/nodejs/chall_2/main.js -------------------------------------------------------------------------------- /nodejs/chall_3/chall_3.md: -------------------------------------------------------------------------------- 1 | ### 题目来源 2018 *CTF -------------------------------------------------------------------------------- /nodejs/chall_3/web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/nodejs/chall_3/web.js -------------------------------------------------------------------------------- /nodejs/chall_4/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/nodejs/chall_4/app.js -------------------------------------------------------------------------------- /nodejs/chall_4/chall_4.md: -------------------------------------------------------------------------------- 1 | ### 题目来源 Hackit 2018 CTF -------------------------------------------------------------------------------- /nodejs/chall_4/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | NODE_ENV=production node app.js 1>log.txt & -------------------------------------------------------------------------------- /python/chall_1/chall_1.md: -------------------------------------------------------------------------------- 1 | ### 题目来源 CSAW 2014 CTF Python sandbox 2 | -------------------------------------------------------------------------------- /python/chall_1/sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/python/chall_1/sandbox.py -------------------------------------------------------------------------------- /python/chall_2/.idea/chall_2.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/python/chall_2/.idea/chall_2.iml -------------------------------------------------------------------------------- /python/chall_2/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/python/chall_2/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /python/chall_2/.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/python/chall_2/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /python/chall_2/.idea/dictionaries/meizj.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/python/chall_2/.idea/dictionaries/meizj.xml -------------------------------------------------------------------------------- /python/chall_2/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/python/chall_2/.idea/misc.xml -------------------------------------------------------------------------------- /python/chall_2/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/python/chall_2/.idea/modules.xml -------------------------------------------------------------------------------- /python/chall_2/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/python/chall_2/.idea/workspace.xml -------------------------------------------------------------------------------- /python/chall_2/exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/python/chall_2/exp.py -------------------------------------------------------------------------------- /python/chall_2/miniblockchain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/python/chall_2/miniblockchain.py -------------------------------------------------------------------------------- /python/chall_2/readme.md: -------------------------------------------------------------------------------- 1 | ### 题目来自DDCTF 2018 2 | 3 | -------------------------------------------------------------------------------- /python/chall_3/.idea/chall_3.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/python/chall_3/.idea/chall_3.iml -------------------------------------------------------------------------------- /python/chall_3/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/python/chall_3/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /python/chall_3/.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/python/chall_3/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /python/chall_3/.idea/dictionaries/meizj.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/python/chall_3/.idea/dictionaries/meizj.xml -------------------------------------------------------------------------------- /python/chall_3/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/python/chall_3/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /python/chall_3/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/python/chall_3/.idea/misc.xml -------------------------------------------------------------------------------- /python/chall_3/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/python/chall_3/.idea/modules.xml -------------------------------------------------------------------------------- /python/chall_3/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/python/chall_3/.idea/workspace.xml -------------------------------------------------------------------------------- /python/chall_3/chall_3.md: -------------------------------------------------------------------------------- 1 | ### 题目来源 2018 *CTF -------------------------------------------------------------------------------- /python/chall_3/exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/python/chall_3/exp.py -------------------------------------------------------------------------------- /python/chall_3/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/python/chall_3/main.py -------------------------------------------------------------------------------- /python/chall_3/main.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/python/chall_3/main.pyc -------------------------------------------------------------------------------- /python/chall_4/chall_4.md: -------------------------------------------------------------------------------- 1 | # 题目来源 2018 TokyoWesterns CTF -------------------------------------------------------------------------------- /python/chall_4/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/python/chall_4/main.py -------------------------------------------------------------------------------- /python/chall_5/chall_5.md: -------------------------------------------------------------------------------- 1 | # 题目来源 2018 TokyoWesterns CTF -------------------------------------------------------------------------------- /python/chall_5/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/python/chall_5/main.py -------------------------------------------------------------------------------- /出题思路/HCTF2017_lorexxar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meizjm3i/CTF-Challenge/HEAD/出题思路/HCTF2017_lorexxar.md --------------------------------------------------------------------------------