├── .gitignore ├── README.md ├── crypto ├── as(m)r │ ├── README.md │ ├── as(m)r.py │ ├── config.py │ ├── dumps.txt │ ├── output.txt │ └── solution.py ├── curve_my_grade │ ├── Dockerfile │ ├── README.md │ ├── challenge.py │ ├── docker-compose.yml │ ├── intended_solution.ipynb │ ├── requirements.txt │ └── source.py └── eta │ ├── Dockerfile │ ├── README.md │ ├── challenge.py │ ├── challenge_release.py │ ├── docker-compose.yml │ ├── requirements.txt │ └── solution.py ├── forensics ├── hidden-web │ ├── Dockerfile │ ├── README.md │ ├── app.py │ ├── docker-compose.yml │ ├── requirements.txt │ ├── static │ │ ├── photo.jpg │ │ └── styles │ │ │ ├── flag.txt │ │ │ └── style.css │ └── templates │ │ ├── home.html │ │ ├── static.html │ │ └── style.html └── small stream │ ├── README.md │ ├── small stream.pcapng │ └── solution.py ├── libs └── sample │ ├── Dockerfile │ ├── README.md │ ├── docker-compose.yml │ ├── requirements.txt │ └── sample.py ├── misc └── La Bibliothèque De Babel │ ├── README.md │ └── torch.txt ├── programming ├── blindfold │ ├── Dockerfile │ ├── README.md │ ├── challenge.py │ ├── docker-compose.yml │ └── solution.py └── convolutional_hidden_network │ ├── README.md │ ├── flag.h │ ├── intended_solution.py │ └── script.c ├── pwn ├── cookie │ ├── Dockerfile │ ├── README.md │ └── bin │ │ ├── cookie │ │ ├── cookie_seller │ │ └── cookie_seller.c ├── noexit │ ├── Dockerfile │ ├── README.md │ ├── exploit.py │ ├── files │ │ ├── 0 │ │ ├── 1 │ │ ├── 2 │ │ ├── 3 │ │ ├── 4 │ │ ├── 5 │ │ ├── 6 │ │ ├── 7 │ │ ├── 8 │ │ ├── 9 │ │ ├── ; │ │ ├── = │ │ ├── @ │ │ ├── C │ │ ├── E │ │ ├── F │ │ ├── G │ │ ├── I │ │ ├── K │ │ ├── L │ │ ├── M │ │ ├── N │ │ ├── P │ │ ├── Q │ │ ├── R │ │ ├── S │ │ ├── T │ │ ├── V │ │ ├── W │ │ ├── [ │ │ ├── ] │ │ ├── ^ │ │ ├── _ │ │ ├── ` │ │ ├── a │ │ ├── b │ │ ├── d │ │ ├── h │ │ ├── j │ │ ├── o │ │ ├── u │ │ ├── x │ │ ├── y │ │ ├── z │ │ ├── { │ │ ├── } │ │ ├──  │ │ ├──  │ │ ├──  │ │ ├──  │ │ ├──  │ │ └──  │ ├── flag │ ├── noexit │ ├── noexit.c │ └── script.sh └── vulnsis │ ├── Dockerfile │ ├── README.md │ ├── bin │ ├── studentSecret │ ├── vulnSIS │ └── vulnSIS.c │ ├── ctf.xinetd │ ├── docker-compose.yml │ ├── solution.py │ └── start.sh ├── rev ├── L33t L3th4l V0rt3x M0n5t3r │ ├── README.md │ ├── conversion.c │ ├── solution.py │ └── wyvern.ll ├── README.md └── SuperShy │ ├── SuperShy.exe │ ├── SuperShy.exe.i64 │ ├── SuperShy │ ├── SuperShy.aps │ ├── SuperShy.rc │ ├── SuperShy.sln │ ├── SuperShy.vcxproj │ ├── SuperShy.vcxproj.filters │ ├── SuperShy.vcxproj.user │ ├── main.cpp │ └── resource.h │ ├── generating.py │ └── solution.py ├── secure-docker-daemon.sh └── web ├── garden-ramsay ├── README.md └── src │ ├── Dockerfile │ ├── build.sh │ ├── docker-compose.yml │ ├── img │ ├── Y2FwdHVyZV90aGVfZmthZwo=.png │ ├── door.png │ └── theLock.png │ ├── index.php │ ├── lock.css │ ├── lock.js │ ├── password.js │ └── style.css ├── the-evil-assignment-on-canvas ├── Dockerfile ├── FinalExamAnswers.txt ├── README.md ├── assets │ ├── css │ │ └── materialize.min.css │ ├── icon.ico │ ├── js │ │ ├── backEndTime.js │ │ ├── filtr.js │ │ └── materialize.min.js │ └── strpos php.png ├── index.php ├── nginx.conf └── upload_dir.sh └── weliketoshop ├── Dockerfile ├── README.md ├── docker-compose.yml ├── main.py ├── requirements.txt └── templates ├── cart.html ├── home.html └── item_description.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/README.md -------------------------------------------------------------------------------- /crypto/as(m)r/README.md: -------------------------------------------------------------------------------- 1 | # AS(M)R 2 | 3 | -------------------------------------------------------------------------------- /crypto/as(m)r/as(m)r.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/crypto/as(m)r/as(m)r.py -------------------------------------------------------------------------------- /crypto/as(m)r/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/crypto/as(m)r/config.py -------------------------------------------------------------------------------- /crypto/as(m)r/dumps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/crypto/as(m)r/dumps.txt -------------------------------------------------------------------------------- /crypto/as(m)r/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/crypto/as(m)r/output.txt -------------------------------------------------------------------------------- /crypto/as(m)r/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/crypto/as(m)r/solution.py -------------------------------------------------------------------------------- /crypto/curve_my_grade/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/crypto/curve_my_grade/Dockerfile -------------------------------------------------------------------------------- /crypto/curve_my_grade/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/crypto/curve_my_grade/README.md -------------------------------------------------------------------------------- /crypto/curve_my_grade/challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/crypto/curve_my_grade/challenge.py -------------------------------------------------------------------------------- /crypto/curve_my_grade/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/crypto/curve_my_grade/docker-compose.yml -------------------------------------------------------------------------------- /crypto/curve_my_grade/intended_solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/crypto/curve_my_grade/intended_solution.ipynb -------------------------------------------------------------------------------- /crypto/curve_my_grade/requirements.txt: -------------------------------------------------------------------------------- 1 | PyCryptodome 2 | ecdsa -------------------------------------------------------------------------------- /crypto/curve_my_grade/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/crypto/curve_my_grade/source.py -------------------------------------------------------------------------------- /crypto/eta/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/crypto/eta/Dockerfile -------------------------------------------------------------------------------- /crypto/eta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/crypto/eta/README.md -------------------------------------------------------------------------------- /crypto/eta/challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/crypto/eta/challenge.py -------------------------------------------------------------------------------- /crypto/eta/challenge_release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/crypto/eta/challenge_release.py -------------------------------------------------------------------------------- /crypto/eta/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/crypto/eta/docker-compose.yml -------------------------------------------------------------------------------- /crypto/eta/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crypto/eta/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/crypto/eta/solution.py -------------------------------------------------------------------------------- /forensics/hidden-web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/forensics/hidden-web/Dockerfile -------------------------------------------------------------------------------- /forensics/hidden-web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/forensics/hidden-web/README.md -------------------------------------------------------------------------------- /forensics/hidden-web/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/forensics/hidden-web/app.py -------------------------------------------------------------------------------- /forensics/hidden-web/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/forensics/hidden-web/docker-compose.yml -------------------------------------------------------------------------------- /forensics/hidden-web/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | -------------------------------------------------------------------------------- /forensics/hidden-web/static/photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/forensics/hidden-web/static/photo.jpg -------------------------------------------------------------------------------- /forensics/hidden-web/static/styles/flag.txt: -------------------------------------------------------------------------------- 1 | VHC2023{Th1s_1s_h1dd3n_w3b} 2 | -------------------------------------------------------------------------------- /forensics/hidden-web/static/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/forensics/hidden-web/static/styles/style.css -------------------------------------------------------------------------------- /forensics/hidden-web/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/forensics/hidden-web/templates/home.html -------------------------------------------------------------------------------- /forensics/hidden-web/templates/static.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/forensics/hidden-web/templates/static.html -------------------------------------------------------------------------------- /forensics/hidden-web/templates/style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/forensics/hidden-web/templates/style.html -------------------------------------------------------------------------------- /forensics/small stream/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/forensics/small stream/README.md -------------------------------------------------------------------------------- /forensics/small stream/small stream.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/forensics/small stream/small stream.pcapng -------------------------------------------------------------------------------- /forensics/small stream/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/forensics/small stream/solution.py -------------------------------------------------------------------------------- /libs/sample/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/libs/sample/Dockerfile -------------------------------------------------------------------------------- /libs/sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/libs/sample/README.md -------------------------------------------------------------------------------- /libs/sample/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/libs/sample/docker-compose.yml -------------------------------------------------------------------------------- /libs/sample/requirements.txt: -------------------------------------------------------------------------------- 1 | pycryptodome -------------------------------------------------------------------------------- /libs/sample/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/libs/sample/sample.py -------------------------------------------------------------------------------- /misc/La Bibliothèque De Babel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/misc/La Bibliothèque De Babel/README.md -------------------------------------------------------------------------------- /misc/La Bibliothèque De Babel/torch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/misc/La Bibliothèque De Babel/torch.txt -------------------------------------------------------------------------------- /programming/blindfold/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/programming/blindfold/Dockerfile -------------------------------------------------------------------------------- /programming/blindfold/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/programming/blindfold/README.md -------------------------------------------------------------------------------- /programming/blindfold/challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/programming/blindfold/challenge.py -------------------------------------------------------------------------------- /programming/blindfold/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/programming/blindfold/docker-compose.yml -------------------------------------------------------------------------------- /programming/blindfold/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/programming/blindfold/solution.py -------------------------------------------------------------------------------- /programming/convolutional_hidden_network/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/programming/convolutional_hidden_network/README.md -------------------------------------------------------------------------------- /programming/convolutional_hidden_network/flag.h: -------------------------------------------------------------------------------- 1 | #define flag "VHC2023{I_th0ught_1t_w4s_10}" 2 | const char key[10] = "OLFc79qPOg"; -------------------------------------------------------------------------------- /programming/convolutional_hidden_network/intended_solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/programming/convolutional_hidden_network/intended_solution.py -------------------------------------------------------------------------------- /programming/convolutional_hidden_network/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/programming/convolutional_hidden_network/script.c -------------------------------------------------------------------------------- /pwn/cookie/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/pwn/cookie/Dockerfile -------------------------------------------------------------------------------- /pwn/cookie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/pwn/cookie/README.md -------------------------------------------------------------------------------- /pwn/cookie/bin/cookie: -------------------------------------------------------------------------------- 1 | VHC2023{1f_y0u_w4nt_1t_h4rd_l1nk_1t!} 2 | -------------------------------------------------------------------------------- /pwn/cookie/bin/cookie_seller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/pwn/cookie/bin/cookie_seller -------------------------------------------------------------------------------- /pwn/cookie/bin/cookie_seller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/pwn/cookie/bin/cookie_seller.c -------------------------------------------------------------------------------- /pwn/noexit/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/pwn/noexit/Dockerfile -------------------------------------------------------------------------------- /pwn/noexit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/pwn/noexit/README.md -------------------------------------------------------------------------------- /pwn/noexit/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/pwn/noexit/exploit.py -------------------------------------------------------------------------------- /pwn/noexit/files/0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/5: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/6: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/7: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/8: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/9: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/;: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/=: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/@: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/C: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/E: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/F: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/G: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/I: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/K: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/L: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/M: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/N: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/P: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/Q: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/R: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/S: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/T: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/V: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/W: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/[: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/]: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/^: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/`: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/b: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/j: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/o: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/u: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/x: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/y: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/z: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/{: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/}: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/files/: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwn/noexit/flag: -------------------------------------------------------------------------------- 1 | VHC2023{s3cc0mp_hUh?_m0r3_l1k3_sUcK455c0mP} 2 | -------------------------------------------------------------------------------- /pwn/noexit/noexit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/pwn/noexit/noexit -------------------------------------------------------------------------------- /pwn/noexit/noexit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/pwn/noexit/noexit.c -------------------------------------------------------------------------------- /pwn/noexit/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/pwn/noexit/script.sh -------------------------------------------------------------------------------- /pwn/vulnsis/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/pwn/vulnsis/Dockerfile -------------------------------------------------------------------------------- /pwn/vulnsis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/pwn/vulnsis/README.md -------------------------------------------------------------------------------- /pwn/vulnsis/bin/studentSecret: -------------------------------------------------------------------------------- 1 | VHC2023{4_l33t_h4ck3r_ju5t_pwn3d_th31r_c0h0rt!} 2 | -------------------------------------------------------------------------------- /pwn/vulnsis/bin/vulnSIS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/pwn/vulnsis/bin/vulnSIS -------------------------------------------------------------------------------- /pwn/vulnsis/bin/vulnSIS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/pwn/vulnsis/bin/vulnSIS.c -------------------------------------------------------------------------------- /pwn/vulnsis/ctf.xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/pwn/vulnsis/ctf.xinetd -------------------------------------------------------------------------------- /pwn/vulnsis/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/pwn/vulnsis/docker-compose.yml -------------------------------------------------------------------------------- /pwn/vulnsis/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/pwn/vulnsis/solution.py -------------------------------------------------------------------------------- /pwn/vulnsis/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/pwn/vulnsis/start.sh -------------------------------------------------------------------------------- /rev/L33t L3th4l V0rt3x M0n5t3r/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/rev/L33t L3th4l V0rt3x M0n5t3r/README.md -------------------------------------------------------------------------------- /rev/L33t L3th4l V0rt3x M0n5t3r/conversion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/rev/L33t L3th4l V0rt3x M0n5t3r/conversion.c -------------------------------------------------------------------------------- /rev/L33t L3th4l V0rt3x M0n5t3r/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/rev/L33t L3th4l V0rt3x M0n5t3r/solution.py -------------------------------------------------------------------------------- /rev/L33t L3th4l V0rt3x M0n5t3r/wyvern.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/rev/L33t L3th4l V0rt3x M0n5t3r/wyvern.ll -------------------------------------------------------------------------------- /rev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/rev/README.md -------------------------------------------------------------------------------- /rev/SuperShy/SuperShy.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/rev/SuperShy/SuperShy.exe -------------------------------------------------------------------------------- /rev/SuperShy/SuperShy.exe.i64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/rev/SuperShy/SuperShy.exe.i64 -------------------------------------------------------------------------------- /rev/SuperShy/SuperShy/SuperShy.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/rev/SuperShy/SuperShy/SuperShy.aps -------------------------------------------------------------------------------- /rev/SuperShy/SuperShy/SuperShy.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/rev/SuperShy/SuperShy/SuperShy.rc -------------------------------------------------------------------------------- /rev/SuperShy/SuperShy/SuperShy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/rev/SuperShy/SuperShy/SuperShy.sln -------------------------------------------------------------------------------- /rev/SuperShy/SuperShy/SuperShy.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/rev/SuperShy/SuperShy/SuperShy.vcxproj -------------------------------------------------------------------------------- /rev/SuperShy/SuperShy/SuperShy.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/rev/SuperShy/SuperShy/SuperShy.vcxproj.filters -------------------------------------------------------------------------------- /rev/SuperShy/SuperShy/SuperShy.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/rev/SuperShy/SuperShy/SuperShy.vcxproj.user -------------------------------------------------------------------------------- /rev/SuperShy/SuperShy/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/rev/SuperShy/SuperShy/main.cpp -------------------------------------------------------------------------------- /rev/SuperShy/SuperShy/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/rev/SuperShy/SuperShy/resource.h -------------------------------------------------------------------------------- /rev/SuperShy/generating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/rev/SuperShy/generating.py -------------------------------------------------------------------------------- /rev/SuperShy/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/rev/SuperShy/solution.py -------------------------------------------------------------------------------- /secure-docker-daemon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/secure-docker-daemon.sh -------------------------------------------------------------------------------- /web/garden-ramsay/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/web/garden-ramsay/README.md -------------------------------------------------------------------------------- /web/garden-ramsay/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/web/garden-ramsay/src/Dockerfile -------------------------------------------------------------------------------- /web/garden-ramsay/src/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/web/garden-ramsay/src/build.sh -------------------------------------------------------------------------------- /web/garden-ramsay/src/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/web/garden-ramsay/src/docker-compose.yml -------------------------------------------------------------------------------- /web/garden-ramsay/src/img/Y2FwdHVyZV90aGVfZmthZwo=.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/web/garden-ramsay/src/img/Y2FwdHVyZV90aGVfZmthZwo=.png -------------------------------------------------------------------------------- /web/garden-ramsay/src/img/door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/web/garden-ramsay/src/img/door.png -------------------------------------------------------------------------------- /web/garden-ramsay/src/img/theLock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/web/garden-ramsay/src/img/theLock.png -------------------------------------------------------------------------------- /web/garden-ramsay/src/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/web/garden-ramsay/src/index.php -------------------------------------------------------------------------------- /web/garden-ramsay/src/lock.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/web/garden-ramsay/src/lock.css -------------------------------------------------------------------------------- /web/garden-ramsay/src/lock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/web/garden-ramsay/src/lock.js -------------------------------------------------------------------------------- /web/garden-ramsay/src/password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/web/garden-ramsay/src/password.js -------------------------------------------------------------------------------- /web/garden-ramsay/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/web/garden-ramsay/src/style.css -------------------------------------------------------------------------------- /web/the-evil-assignment-on-canvas/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/web/the-evil-assignment-on-canvas/Dockerfile -------------------------------------------------------------------------------- /web/the-evil-assignment-on-canvas/FinalExamAnswers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/web/the-evil-assignment-on-canvas/FinalExamAnswers.txt -------------------------------------------------------------------------------- /web/the-evil-assignment-on-canvas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/web/the-evil-assignment-on-canvas/README.md -------------------------------------------------------------------------------- /web/the-evil-assignment-on-canvas/assets/css/materialize.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/web/the-evil-assignment-on-canvas/assets/css/materialize.min.css -------------------------------------------------------------------------------- /web/the-evil-assignment-on-canvas/assets/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/web/the-evil-assignment-on-canvas/assets/icon.ico -------------------------------------------------------------------------------- /web/the-evil-assignment-on-canvas/assets/js/backEndTime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/web/the-evil-assignment-on-canvas/assets/js/backEndTime.js -------------------------------------------------------------------------------- /web/the-evil-assignment-on-canvas/assets/js/filtr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/web/the-evil-assignment-on-canvas/assets/js/filtr.js -------------------------------------------------------------------------------- /web/the-evil-assignment-on-canvas/assets/js/materialize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/web/the-evil-assignment-on-canvas/assets/js/materialize.min.js -------------------------------------------------------------------------------- /web/the-evil-assignment-on-canvas/assets/strpos php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/web/the-evil-assignment-on-canvas/assets/strpos php.png -------------------------------------------------------------------------------- /web/the-evil-assignment-on-canvas/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/web/the-evil-assignment-on-canvas/index.php -------------------------------------------------------------------------------- /web/the-evil-assignment-on-canvas/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/web/the-evil-assignment-on-canvas/nginx.conf -------------------------------------------------------------------------------- /web/the-evil-assignment-on-canvas/upload_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/web/the-evil-assignment-on-canvas/upload_dir.sh -------------------------------------------------------------------------------- /web/weliketoshop/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/web/weliketoshop/Dockerfile -------------------------------------------------------------------------------- /web/weliketoshop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/web/weliketoshop/README.md -------------------------------------------------------------------------------- /web/weliketoshop/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/web/weliketoshop/docker-compose.yml -------------------------------------------------------------------------------- /web/weliketoshop/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/web/weliketoshop/main.py -------------------------------------------------------------------------------- /web/weliketoshop/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/web/weliketoshop/requirements.txt -------------------------------------------------------------------------------- /web/weliketoshop/templates/cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/web/weliketoshop/templates/cart.html -------------------------------------------------------------------------------- /web/weliketoshop/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/web/weliketoshop/templates/home.html -------------------------------------------------------------------------------- /web/weliketoshop/templates/item_description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/V1nUn1H4ck1ngClub/VHC_CTF_2023/HEAD/web/weliketoshop/templates/item_description.html --------------------------------------------------------------------------------