├── .gitignore ├── Crypto ├── DSA │ ├── challenge.yaml │ ├── exp.py │ ├── flag.py │ ├── flag.pyc │ ├── readme.txt │ ├── server.py │ └── xxx.py ├── MT │ ├── exp.py │ ├── flag.py │ ├── flag.pyc │ ├── mt.py │ └── readme.txt ├── Prime │ ├── exp.py │ ├── exp.pyc │ ├── flag.py │ ├── flag.pyc │ ├── readme.txt │ ├── server.py │ ├── server.py.zip │ ├── start_from_here.py │ ├── util.py │ └── util.pyc ├── RSA │ ├── exp.py │ ├── flag.py │ ├── flag.pyc │ ├── readme.txt │ ├── server.py │ └── start_from_here.py ├── WriteUp.html └── WriteUp.md ├── Misc ├── game │ ├── Dockerfile │ ├── challenge.yaml │ ├── dist │ │ └── iZwz9i9xnerwj6o7h40eauZ.png │ ├── src │ │ ├── css │ │ │ └── style.css │ │ ├── index.php │ │ └── js │ │ │ ├── index.js │ │ │ └── three.min.js │ └── writeup │ │ └── Readme.md ├── guess_game │ ├── Dockerfile │ ├── ctf.xinetd │ ├── exp.py │ ├── src │ │ ├── game_client.py │ │ ├── game_server.py │ │ └── guess_game │ │ │ ├── Game.py │ │ │ ├── RestrictedUnpickler.py │ │ │ ├── Ticket.py │ │ │ └── __init__.py │ └── start.sh ├── homerouter │ ├── homerouter.bin │ └── homerouter.bin.zip ├── protocol │ ├── usbtraffic.pcapng │ └── usbtraffic.pcapng.zip └── 签到题 │ ├── challenge.yaml │ ├── dist │ └── 1.txt.zip │ ├── src │ └── 1.txt │ └── writeup │ └── Readme.md ├── Pwn ├── BabyStack │ ├── BabyStack.exe │ ├── BabyStack.exe.zip │ ├── challenge.yaml │ ├── exp.py │ └── flag.txt ├── playfmt │ ├── exp │ │ └── exp.py │ ├── flag.txt │ ├── writeup见赛题设计说明.txt │ ├── 源代码 │ │ ├── Makefile │ │ └── playfmt.cpp │ └── 题目附件 │ │ ├── playfmt │ │ └── playfmt.zip └── sudrv │ ├── bzImage │ ├── exp │ └── pwn.c │ ├── rootfs.cpio │ ├── start.sh │ └── 归档.zip ├── README.md ├── Rev ├── SignIn │ ├── flag │ ├── signin │ └── signin.zip ├── babyunic │ ├── babyunic 2.zip │ ├── babyunic.zip │ ├── babyunic │ │ ├── babyunic │ │ ├── func │ │ ├── run.sh │ │ └── un.so.1 │ └── flag ├── hardCpp │ ├── writeup │ │ └── writeup.md │ ├── 源代码 │ │ ├── hardCpp.cpp │ │ └── 编译.txt │ └── 题目文件 │ │ ├── hardCpp │ │ └── hardCpp.zip └── rev │ ├── writeup.md │ ├── 源代码 │ ├── rev.cpp │ └── 编译.txt │ └── 题目附件 │ ├── cpp.exe │ └── cpp.exe.zip └── Web ├── Upload Labs 2 ├── Dockerfile ├── README.md ├── dist │ ├── admin.php │ ├── class.php │ ├── config.php │ ├── dist.zip │ ├── func.php │ └── index.php ├── docker-compose.yml ├── src │ ├── flag │ ├── html │ │ ├── admin.php │ │ ├── class.php │ │ ├── config.php │ │ ├── func.php │ │ └── index.php │ ├── php.ini │ └── readflag.c └── writeup │ ├── 1.gif │ ├── README.md │ └── phar.php ├── checkIn ├── Dockerfile ├── docker-compose.yml ├── src │ ├── clean.sh │ ├── default │ ├── flag │ └── html │ │ └── index.php └── writeup │ └── README.md ├── easy_sql ├── .idea │ ├── SUCTF3.iml │ ├── dictionaries │ │ └── meizj.xml │ ├── modules.xml │ └── workspace.xml ├── Dockerfile ├── docker-compose.yml ├── file │ ├── config.php │ └── index.php ├── readme.md ├── run.sh └── sql.sql ├── easyweb ├── challenge.yaml ├── exp │ ├── exp.py │ └── exp2.py ├── src │ ├── 000-default.conf │ ├── Dockerfile │ ├── THis_Is_tHe_F14g │ ├── clean.sh │ ├── docker-compose.yml │ ├── php.ini │ └── www │ │ ├── F1AghhhhhhhhhhhhhHH │ │ └── index.php └── wp │ ├── 1.png │ └── SUCTF 2019 Easyweb.md ├── iCloudMusic └── README.md └── pythonginx ├── Dockerfile ├── README.md ├── app ├── __pycache__ │ └── main.cpython-36.pyc ├── main.py ├── requirements.txt └── templates │ └── index.html ├── challenge.yaml ├── docker-compose.yml ├── flag ├── hosts ├── nginx.conf ├── nginx.sh └── writeup └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /Crypto/DSA/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Crypto/DSA/challenge.yaml -------------------------------------------------------------------------------- /Crypto/DSA/exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Crypto/DSA/exp.py -------------------------------------------------------------------------------- /Crypto/DSA/flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Crypto/DSA/flag.py -------------------------------------------------------------------------------- /Crypto/DSA/flag.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Crypto/DSA/flag.pyc -------------------------------------------------------------------------------- /Crypto/DSA/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Crypto/DSA/readme.txt -------------------------------------------------------------------------------- /Crypto/DSA/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Crypto/DSA/server.py -------------------------------------------------------------------------------- /Crypto/DSA/xxx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Crypto/DSA/xxx.py -------------------------------------------------------------------------------- /Crypto/MT/exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Crypto/MT/exp.py -------------------------------------------------------------------------------- /Crypto/MT/flag.py: -------------------------------------------------------------------------------- 1 | flag = 'flag{84b45f89af22ce7e67275bdc}' -------------------------------------------------------------------------------- /Crypto/MT/flag.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Crypto/MT/flag.pyc -------------------------------------------------------------------------------- /Crypto/MT/mt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Crypto/MT/mt.py -------------------------------------------------------------------------------- /Crypto/MT/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Crypto/MT/readme.txt -------------------------------------------------------------------------------- /Crypto/Prime/exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Crypto/Prime/exp.py -------------------------------------------------------------------------------- /Crypto/Prime/exp.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Crypto/Prime/exp.pyc -------------------------------------------------------------------------------- /Crypto/Prime/flag.py: -------------------------------------------------------------------------------- 1 | flag = 'flag{H0W_c1EV3R_Y0u_AR3_C0ngRatu1at10n5}' -------------------------------------------------------------------------------- /Crypto/Prime/flag.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Crypto/Prime/flag.pyc -------------------------------------------------------------------------------- /Crypto/Prime/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Crypto/Prime/readme.txt -------------------------------------------------------------------------------- /Crypto/Prime/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Crypto/Prime/server.py -------------------------------------------------------------------------------- /Crypto/Prime/server.py.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Crypto/Prime/server.py.zip -------------------------------------------------------------------------------- /Crypto/Prime/start_from_here.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Crypto/Prime/start_from_here.py -------------------------------------------------------------------------------- /Crypto/Prime/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Crypto/Prime/util.py -------------------------------------------------------------------------------- /Crypto/Prime/util.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Crypto/Prime/util.pyc -------------------------------------------------------------------------------- /Crypto/RSA/exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Crypto/RSA/exp.py -------------------------------------------------------------------------------- /Crypto/RSA/flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Crypto/RSA/flag.py -------------------------------------------------------------------------------- /Crypto/RSA/flag.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Crypto/RSA/flag.pyc -------------------------------------------------------------------------------- /Crypto/RSA/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Crypto/RSA/readme.txt -------------------------------------------------------------------------------- /Crypto/RSA/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Crypto/RSA/server.py -------------------------------------------------------------------------------- /Crypto/RSA/start_from_here.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Crypto/RSA/start_from_here.py -------------------------------------------------------------------------------- /Crypto/WriteUp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Crypto/WriteUp.html -------------------------------------------------------------------------------- /Crypto/WriteUp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Crypto/WriteUp.md -------------------------------------------------------------------------------- /Misc/game/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Misc/game/Dockerfile -------------------------------------------------------------------------------- /Misc/game/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Misc/game/challenge.yaml -------------------------------------------------------------------------------- /Misc/game/dist/iZwz9i9xnerwj6o7h40eauZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Misc/game/dist/iZwz9i9xnerwj6o7h40eauZ.png -------------------------------------------------------------------------------- /Misc/game/src/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Misc/game/src/css/style.css -------------------------------------------------------------------------------- /Misc/game/src/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Misc/game/src/index.php -------------------------------------------------------------------------------- /Misc/game/src/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Misc/game/src/js/index.js -------------------------------------------------------------------------------- /Misc/game/src/js/three.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Misc/game/src/js/three.min.js -------------------------------------------------------------------------------- /Misc/game/writeup/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Misc/game/writeup/Readme.md -------------------------------------------------------------------------------- /Misc/guess_game/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Misc/guess_game/Dockerfile -------------------------------------------------------------------------------- /Misc/guess_game/ctf.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Misc/guess_game/ctf.xinetd -------------------------------------------------------------------------------- /Misc/guess_game/exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Misc/guess_game/exp.py -------------------------------------------------------------------------------- /Misc/guess_game/src/game_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Misc/guess_game/src/game_client.py -------------------------------------------------------------------------------- /Misc/guess_game/src/game_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Misc/guess_game/src/game_server.py -------------------------------------------------------------------------------- /Misc/guess_game/src/guess_game/Game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Misc/guess_game/src/guess_game/Game.py -------------------------------------------------------------------------------- /Misc/guess_game/src/guess_game/RestrictedUnpickler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Misc/guess_game/src/guess_game/RestrictedUnpickler.py -------------------------------------------------------------------------------- /Misc/guess_game/src/guess_game/Ticket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Misc/guess_game/src/guess_game/Ticket.py -------------------------------------------------------------------------------- /Misc/guess_game/src/guess_game/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Misc/guess_game/src/guess_game/__init__.py -------------------------------------------------------------------------------- /Misc/guess_game/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Misc/guess_game/start.sh -------------------------------------------------------------------------------- /Misc/homerouter/homerouter.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Misc/homerouter/homerouter.bin -------------------------------------------------------------------------------- /Misc/homerouter/homerouter.bin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Misc/homerouter/homerouter.bin.zip -------------------------------------------------------------------------------- /Misc/protocol/usbtraffic.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Misc/protocol/usbtraffic.pcapng -------------------------------------------------------------------------------- /Misc/protocol/usbtraffic.pcapng.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Misc/protocol/usbtraffic.pcapng.zip -------------------------------------------------------------------------------- /Misc/签到题/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Misc/签到题/challenge.yaml -------------------------------------------------------------------------------- /Misc/签到题/dist/1.txt.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Misc/签到题/dist/1.txt.zip -------------------------------------------------------------------------------- /Misc/签到题/src/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Misc/签到题/src/1.txt -------------------------------------------------------------------------------- /Misc/签到题/writeup/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Misc/签到题/writeup/Readme.md -------------------------------------------------------------------------------- /Pwn/BabyStack/BabyStack.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Pwn/BabyStack/BabyStack.exe -------------------------------------------------------------------------------- /Pwn/BabyStack/BabyStack.exe.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Pwn/BabyStack/BabyStack.exe.zip -------------------------------------------------------------------------------- /Pwn/BabyStack/challenge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Pwn/BabyStack/challenge.yaml -------------------------------------------------------------------------------- /Pwn/BabyStack/exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Pwn/BabyStack/exp.py -------------------------------------------------------------------------------- /Pwn/BabyStack/flag.txt: -------------------------------------------------------------------------------- 1 | flag{M4ybe_Saf3_SEH_1s_n0t_S4f3?} 2 | -------------------------------------------------------------------------------- /Pwn/playfmt/exp/exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Pwn/playfmt/exp/exp.py -------------------------------------------------------------------------------- /Pwn/playfmt/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Pwn/playfmt/flag.txt -------------------------------------------------------------------------------- /Pwn/playfmt/writeup见赛题设计说明.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pwn/playfmt/源代码/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Pwn/playfmt/源代码/Makefile -------------------------------------------------------------------------------- /Pwn/playfmt/源代码/playfmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Pwn/playfmt/源代码/playfmt.cpp -------------------------------------------------------------------------------- /Pwn/playfmt/题目附件/playfmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Pwn/playfmt/题目附件/playfmt -------------------------------------------------------------------------------- /Pwn/playfmt/题目附件/playfmt.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Pwn/playfmt/题目附件/playfmt.zip -------------------------------------------------------------------------------- /Pwn/sudrv/bzImage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Pwn/sudrv/bzImage -------------------------------------------------------------------------------- /Pwn/sudrv/exp/pwn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Pwn/sudrv/exp/pwn.c -------------------------------------------------------------------------------- /Pwn/sudrv/rootfs.cpio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Pwn/sudrv/rootfs.cpio -------------------------------------------------------------------------------- /Pwn/sudrv/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Pwn/sudrv/start.sh -------------------------------------------------------------------------------- /Pwn/sudrv/归档.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Pwn/sudrv/归档.zip -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/README.md -------------------------------------------------------------------------------- /Rev/SignIn/flag: -------------------------------------------------------------------------------- 1 | suctf{Pwn_@_hundred_years} -------------------------------------------------------------------------------- /Rev/SignIn/signin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Rev/SignIn/signin -------------------------------------------------------------------------------- /Rev/SignIn/signin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Rev/SignIn/signin.zip -------------------------------------------------------------------------------- /Rev/babyunic/babyunic 2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Rev/babyunic/babyunic 2.zip -------------------------------------------------------------------------------- /Rev/babyunic/babyunic.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Rev/babyunic/babyunic.zip -------------------------------------------------------------------------------- /Rev/babyunic/babyunic/babyunic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Rev/babyunic/babyunic/babyunic -------------------------------------------------------------------------------- /Rev/babyunic/babyunic/func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Rev/babyunic/babyunic/func -------------------------------------------------------------------------------- /Rev/babyunic/babyunic/run.sh: -------------------------------------------------------------------------------- 1 | LD_PRELOAD=./un.so.1 ./babyunic func -------------------------------------------------------------------------------- /Rev/babyunic/babyunic/un.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Rev/babyunic/babyunic/un.so.1 -------------------------------------------------------------------------------- /Rev/babyunic/flag: -------------------------------------------------------------------------------- 1 | SUCTF{Un1c0rn_Engin3_Is_@_P0wer7ul_TO0ls!} -------------------------------------------------------------------------------- /Rev/hardCpp/writeup/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Rev/hardCpp/writeup/writeup.md -------------------------------------------------------------------------------- /Rev/hardCpp/源代码/hardCpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Rev/hardCpp/源代码/hardCpp.cpp -------------------------------------------------------------------------------- /Rev/hardCpp/源代码/编译.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Rev/hardCpp/源代码/编译.txt -------------------------------------------------------------------------------- /Rev/hardCpp/题目文件/hardCpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Rev/hardCpp/题目文件/hardCpp -------------------------------------------------------------------------------- /Rev/hardCpp/题目文件/hardCpp.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Rev/hardCpp/题目文件/hardCpp.zip -------------------------------------------------------------------------------- /Rev/rev/writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Rev/rev/writeup.md -------------------------------------------------------------------------------- /Rev/rev/源代码/rev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Rev/rev/源代码/rev.cpp -------------------------------------------------------------------------------- /Rev/rev/源代码/编译.txt: -------------------------------------------------------------------------------- 1 | visual studio 2019 x64 release -------------------------------------------------------------------------------- /Rev/rev/题目附件/cpp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Rev/rev/题目附件/cpp.exe -------------------------------------------------------------------------------- /Rev/rev/题目附件/cpp.exe.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Rev/rev/题目附件/cpp.exe.zip -------------------------------------------------------------------------------- /Web/Upload Labs 2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Web/Upload Labs 2/Dockerfile -------------------------------------------------------------------------------- /Web/Upload Labs 2/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Web/Upload Labs 2/dist/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Web/Upload Labs 2/dist/admin.php -------------------------------------------------------------------------------- /Web/Upload Labs 2/dist/class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-su/SUCTF-2019/HEAD/Web/Upload Labs 2/dist/class.php -------------------------------------------------------------------------------- /Web/Upload Labs 2/dist/config.php: -------------------------------------------------------------------------------- 1 |