├── README.md ├── assets ├── banner.png ├── htb.png └── logo_htb.png └── uni-ctf-2023 ├── crypto ├── [Easy] MSS Revenge │ ├── Makefile │ ├── README.md │ └── htb │ │ └── solver.py ├── [Easy] MSS │ ├── Makefile │ ├── README.md │ └── htb │ │ └── solver.py ├── [Hard] Zombie Rolled │ ├── Makefile │ ├── README.md │ └── htb │ │ ├── output.txt │ │ └── solver.py └── [Medium] Mayday Mayday │ ├── Makefile │ ├── README.md │ └── htb │ ├── output.txt │ └── solver.sage ├── forensics ├── [Easy] One Step Closer │ ├── README.md │ ├── assets │ │ ├── banner.png │ │ ├── cyberchef.png │ │ ├── debug.png │ │ ├── deobf_js.png │ │ ├── deobf_vbs.png │ │ ├── final_powershell.png │ │ ├── flag.png │ │ ├── htb.png │ │ ├── js.png │ │ ├── powershell.png │ │ └── vb.png │ └── htb │ │ ├── deobf_js.txt │ │ ├── deobf_vbs.txt │ │ ├── final_powershell.txt │ │ ├── js.txt │ │ ├── powershell.txt │ │ ├── script.vbs │ │ └── vb.txt ├── [Hard] Shadow of the Undead │ ├── README.md │ ├── assets │ │ ├── banner.png │ │ ├── htb.png │ │ ├── pdf.png │ │ ├── vt.png │ │ └── wireshark.png │ └── htb │ │ ├── biohazard_containment_update.pdf │ │ ├── msf │ │ ├── handler.rc │ │ └── runner.js │ │ ├── shellcode.bin │ │ └── shellcode_solution │ │ ├── UNI-ctf-shellcode.sln │ │ └── UNI-ctf-shellcode │ │ ├── UNI-ctf-shellcode.vcxproj │ │ ├── UNI-ctf-shellcode.vcxproj.filters │ │ ├── UNI-ctf-shellcode.vcxproj.user │ │ ├── main.c │ │ ├── peb_lookup.h │ │ └── x64 │ │ └── Debug │ │ ├── UNI-ctf-shellcode.Build.CppClean.log │ │ ├── UNI-ctf-shellcode.exe.recipe │ │ ├── UNI-ctf-shellcode.log │ │ └── UNI-ctf-shellcode.vcxproj.FileListAbsolute.txt └── [Medium] ZombieNet │ ├── README.md │ ├── assets │ ├── banner.png │ ├── flag.png │ ├── htb.png │ ├── root.png │ ├── symlinks.png │ └── xor.png │ └── htb │ ├── openwrt-ramips-mt7621-xiaomi_mi-router-4a-gigabit-rootfs.tar.gz │ ├── openwrt-ramips-mt7621-xiaomi_mi-router-4a-gigabit-squashfs-sysupgrade.bin │ └── reanimate.sh ├── fullpwn ├── Androcat │ ├── assets │ │ ├── banner.png │ │ ├── burp1.png │ │ ├── emailpreview.png │ │ ├── home.png │ │ ├── home1.png │ │ ├── home3.png │ │ ├── home4.png │ │ ├── htb.png │ │ ├── jadx1.png │ │ ├── leak.png │ │ ├── leaked.png │ │ ├── nginx.png │ │ ├── nmap.png │ │ ├── pdfgen.png │ │ ├── pspy.png │ │ ├── root.txt │ │ ├── ser.png │ │ └── xss.png │ ├── official_writeup.md │ └── official_writeup.pdf ├── Apethanto │ ├── Apethanto.assets │ │ ├── banner.png │ │ ├── htb.png │ │ ├── metabase.png │ │ └── web.png │ ├── Apethanto.md │ └── Apethanto.pdf └── Umbrella │ ├── Umbrella.assets │ ├── avatar.png │ ├── banner.png │ ├── foothold1.png │ ├── foothold2.png │ ├── foothold3.png │ ├── foothold4.png │ ├── foothold5.png │ └── foothold6.png │ └── Umbrella.md ├── pwn ├── [Easy] Great Old Talisman │ ├── README.md │ ├── assets │ │ ├── banner.png │ │ └── htb.png │ └── htb │ │ └── solver.py ├── [Hard] Zombiedote │ ├── README.md │ ├── assets │ │ ├── banner.png │ │ ├── checksec.png │ │ ├── flag.png │ │ ├── gdb1.png │ │ ├── gdb2.png │ │ ├── gdb3.png │ │ ├── gdb4.png │ │ ├── gdb5.png │ │ ├── htb.png │ │ ├── interface.png │ │ └── libc_version.png │ └── htb │ │ ├── Makefile │ │ ├── fuzz.py │ │ ├── setup.sh │ │ └── solver.py └── [Medium] Zombienator │ ├── README.md │ ├── assets │ ├── banner.png │ └── htb.png │ └── htb │ └── solver.py ├── rev ├── [Easy] WindowOfOpportunity │ ├── README.md │ └── htb │ │ └── solve.py ├── [Hard] RiseFromTheDead │ ├── README.md │ └── htb │ │ └── solve.py └── [Medium] BioBundle │ └── README.md └── web ├── [Easy] GateCrash ├── README.md ├── assets │ └── overview.png └── htb │ └── solver.py ├── [Hard] PhantomFeed ├── README.md ├── assets │ ├── admin.png │ ├── login.png │ ├── marketlogin.png │ ├── oauth2grant.png │ ├── orders.png │ ├── overview1.png │ ├── overview2.png │ ├── pdf.png │ └── register.png ├── conf │ ├── nginx.conf │ └── supervisord.conf ├── entrypoint.sh └── htb │ ├── go.mod │ ├── go.sum │ └── solver.go └── [Medium] Nexus Void ├── Readme.md └── assets ├── auth.png ├── banner.png ├── dash.png ├── flag.png ├── htb.png ├── set.png └── wish.png /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/README.md -------------------------------------------------------------------------------- /assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/assets/banner.png -------------------------------------------------------------------------------- /assets/htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/assets/htb.png -------------------------------------------------------------------------------- /assets/logo_htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/assets/logo_htb.png -------------------------------------------------------------------------------- /uni-ctf-2023/crypto/[Easy] MSS Revenge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/crypto/[Easy] MSS Revenge/Makefile -------------------------------------------------------------------------------- /uni-ctf-2023/crypto/[Easy] MSS Revenge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/crypto/[Easy] MSS Revenge/README.md -------------------------------------------------------------------------------- /uni-ctf-2023/crypto/[Easy] MSS Revenge/htb/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/crypto/[Easy] MSS Revenge/htb/solver.py -------------------------------------------------------------------------------- /uni-ctf-2023/crypto/[Easy] MSS/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/crypto/[Easy] MSS/Makefile -------------------------------------------------------------------------------- /uni-ctf-2023/crypto/[Easy] MSS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/crypto/[Easy] MSS/README.md -------------------------------------------------------------------------------- /uni-ctf-2023/crypto/[Easy] MSS/htb/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/crypto/[Easy] MSS/htb/solver.py -------------------------------------------------------------------------------- /uni-ctf-2023/crypto/[Hard] Zombie Rolled/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/crypto/[Hard] Zombie Rolled/Makefile -------------------------------------------------------------------------------- /uni-ctf-2023/crypto/[Hard] Zombie Rolled/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/crypto/[Hard] Zombie Rolled/README.md -------------------------------------------------------------------------------- /uni-ctf-2023/crypto/[Hard] Zombie Rolled/htb/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/crypto/[Hard] Zombie Rolled/htb/output.txt -------------------------------------------------------------------------------- /uni-ctf-2023/crypto/[Hard] Zombie Rolled/htb/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/crypto/[Hard] Zombie Rolled/htb/solver.py -------------------------------------------------------------------------------- /uni-ctf-2023/crypto/[Medium] Mayday Mayday/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/crypto/[Medium] Mayday Mayday/Makefile -------------------------------------------------------------------------------- /uni-ctf-2023/crypto/[Medium] Mayday Mayday/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/crypto/[Medium] Mayday Mayday/README.md -------------------------------------------------------------------------------- /uni-ctf-2023/crypto/[Medium] Mayday Mayday/htb/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/crypto/[Medium] Mayday Mayday/htb/output.txt -------------------------------------------------------------------------------- /uni-ctf-2023/crypto/[Medium] Mayday Mayday/htb/solver.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/crypto/[Medium] Mayday Mayday/htb/solver.sage -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Easy] One Step Closer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Easy] One Step Closer/README.md -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Easy] One Step Closer/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Easy] One Step Closer/assets/banner.png -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Easy] One Step Closer/assets/cyberchef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Easy] One Step Closer/assets/cyberchef.png -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Easy] One Step Closer/assets/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Easy] One Step Closer/assets/debug.png -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Easy] One Step Closer/assets/deobf_js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Easy] One Step Closer/assets/deobf_js.png -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Easy] One Step Closer/assets/deobf_vbs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Easy] One Step Closer/assets/deobf_vbs.png -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Easy] One Step Closer/assets/final_powershell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Easy] One Step Closer/assets/final_powershell.png -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Easy] One Step Closer/assets/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Easy] One Step Closer/assets/flag.png -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Easy] One Step Closer/assets/htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Easy] One Step Closer/assets/htb.png -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Easy] One Step Closer/assets/js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Easy] One Step Closer/assets/js.png -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Easy] One Step Closer/assets/powershell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Easy] One Step Closer/assets/powershell.png -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Easy] One Step Closer/assets/vb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Easy] One Step Closer/assets/vb.png -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Easy] One Step Closer/htb/deobf_js.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Easy] One Step Closer/htb/deobf_js.txt -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Easy] One Step Closer/htb/deobf_vbs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Easy] One Step Closer/htb/deobf_vbs.txt -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Easy] One Step Closer/htb/final_powershell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Easy] One Step Closer/htb/final_powershell.txt -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Easy] One Step Closer/htb/js.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Easy] One Step Closer/htb/js.txt -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Easy] One Step Closer/htb/powershell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Easy] One Step Closer/htb/powershell.txt -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Easy] One Step Closer/htb/script.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Easy] One Step Closer/htb/script.vbs -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Easy] One Step Closer/htb/vb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Easy] One Step Closer/htb/vb.txt -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Hard] Shadow of the Undead/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Hard] Shadow of the Undead/README.md -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Hard] Shadow of the Undead/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Hard] Shadow of the Undead/assets/banner.png -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Hard] Shadow of the Undead/assets/htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Hard] Shadow of the Undead/assets/htb.png -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Hard] Shadow of the Undead/assets/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Hard] Shadow of the Undead/assets/pdf.png -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Hard] Shadow of the Undead/assets/vt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Hard] Shadow of the Undead/assets/vt.png -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Hard] Shadow of the Undead/assets/wireshark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Hard] Shadow of the Undead/assets/wireshark.png -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Hard] Shadow of the Undead/htb/biohazard_containment_update.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Hard] Shadow of the Undead/htb/biohazard_containment_update.pdf -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Hard] Shadow of the Undead/htb/msf/handler.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Hard] Shadow of the Undead/htb/msf/handler.rc -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Hard] Shadow of the Undead/htb/msf/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Hard] Shadow of the Undead/htb/msf/runner.js -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Hard] Shadow of the Undead/htb/shellcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Hard] Shadow of the Undead/htb/shellcode.bin -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Hard] Shadow of the Undead/htb/shellcode_solution/UNI-ctf-shellcode.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Hard] Shadow of the Undead/htb/shellcode_solution/UNI-ctf-shellcode.sln -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Hard] Shadow of the Undead/htb/shellcode_solution/UNI-ctf-shellcode/UNI-ctf-shellcode.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Hard] Shadow of the Undead/htb/shellcode_solution/UNI-ctf-shellcode/UNI-ctf-shellcode.vcxproj -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Hard] Shadow of the Undead/htb/shellcode_solution/UNI-ctf-shellcode/UNI-ctf-shellcode.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Hard] Shadow of the Undead/htb/shellcode_solution/UNI-ctf-shellcode/UNI-ctf-shellcode.vcxproj.filters -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Hard] Shadow of the Undead/htb/shellcode_solution/UNI-ctf-shellcode/UNI-ctf-shellcode.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Hard] Shadow of the Undead/htb/shellcode_solution/UNI-ctf-shellcode/UNI-ctf-shellcode.vcxproj.user -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Hard] Shadow of the Undead/htb/shellcode_solution/UNI-ctf-shellcode/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Hard] Shadow of the Undead/htb/shellcode_solution/UNI-ctf-shellcode/main.c -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Hard] Shadow of the Undead/htb/shellcode_solution/UNI-ctf-shellcode/peb_lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Hard] Shadow of the Undead/htb/shellcode_solution/UNI-ctf-shellcode/peb_lookup.h -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Hard] Shadow of the Undead/htb/shellcode_solution/UNI-ctf-shellcode/x64/Debug/UNI-ctf-shellcode.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Hard] Shadow of the Undead/htb/shellcode_solution/UNI-ctf-shellcode/x64/Debug/UNI-ctf-shellcode.Build.CppClean.log -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Hard] Shadow of the Undead/htb/shellcode_solution/UNI-ctf-shellcode/x64/Debug/UNI-ctf-shellcode.exe.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Hard] Shadow of the Undead/htb/shellcode_solution/UNI-ctf-shellcode/x64/Debug/UNI-ctf-shellcode.exe.recipe -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Hard] Shadow of the Undead/htb/shellcode_solution/UNI-ctf-shellcode/x64/Debug/UNI-ctf-shellcode.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Hard] Shadow of the Undead/htb/shellcode_solution/UNI-ctf-shellcode/x64/Debug/UNI-ctf-shellcode.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Medium] ZombieNet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Medium] ZombieNet/README.md -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Medium] ZombieNet/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Medium] ZombieNet/assets/banner.png -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Medium] ZombieNet/assets/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Medium] ZombieNet/assets/flag.png -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Medium] ZombieNet/assets/htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Medium] ZombieNet/assets/htb.png -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Medium] ZombieNet/assets/root.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Medium] ZombieNet/assets/root.png -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Medium] ZombieNet/assets/symlinks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Medium] ZombieNet/assets/symlinks.png -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Medium] ZombieNet/assets/xor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Medium] ZombieNet/assets/xor.png -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Medium] ZombieNet/htb/openwrt-ramips-mt7621-xiaomi_mi-router-4a-gigabit-rootfs.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Medium] ZombieNet/htb/openwrt-ramips-mt7621-xiaomi_mi-router-4a-gigabit-rootfs.tar.gz -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Medium] ZombieNet/htb/openwrt-ramips-mt7621-xiaomi_mi-router-4a-gigabit-squashfs-sysupgrade.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Medium] ZombieNet/htb/openwrt-ramips-mt7621-xiaomi_mi-router-4a-gigabit-squashfs-sysupgrade.bin -------------------------------------------------------------------------------- /uni-ctf-2023/forensics/[Medium] ZombieNet/htb/reanimate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/forensics/[Medium] ZombieNet/htb/reanimate.sh -------------------------------------------------------------------------------- /uni-ctf-2023/fullpwn/Androcat/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/fullpwn/Androcat/assets/banner.png -------------------------------------------------------------------------------- /uni-ctf-2023/fullpwn/Androcat/assets/burp1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/fullpwn/Androcat/assets/burp1.png -------------------------------------------------------------------------------- /uni-ctf-2023/fullpwn/Androcat/assets/emailpreview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/fullpwn/Androcat/assets/emailpreview.png -------------------------------------------------------------------------------- /uni-ctf-2023/fullpwn/Androcat/assets/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/fullpwn/Androcat/assets/home.png -------------------------------------------------------------------------------- /uni-ctf-2023/fullpwn/Androcat/assets/home1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/fullpwn/Androcat/assets/home1.png -------------------------------------------------------------------------------- /uni-ctf-2023/fullpwn/Androcat/assets/home3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/fullpwn/Androcat/assets/home3.png -------------------------------------------------------------------------------- /uni-ctf-2023/fullpwn/Androcat/assets/home4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/fullpwn/Androcat/assets/home4.png -------------------------------------------------------------------------------- /uni-ctf-2023/fullpwn/Androcat/assets/htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/fullpwn/Androcat/assets/htb.png -------------------------------------------------------------------------------- /uni-ctf-2023/fullpwn/Androcat/assets/jadx1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/fullpwn/Androcat/assets/jadx1.png -------------------------------------------------------------------------------- /uni-ctf-2023/fullpwn/Androcat/assets/leak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/fullpwn/Androcat/assets/leak.png -------------------------------------------------------------------------------- /uni-ctf-2023/fullpwn/Androcat/assets/leaked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/fullpwn/Androcat/assets/leaked.png -------------------------------------------------------------------------------- /uni-ctf-2023/fullpwn/Androcat/assets/nginx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/fullpwn/Androcat/assets/nginx.png -------------------------------------------------------------------------------- /uni-ctf-2023/fullpwn/Androcat/assets/nmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/fullpwn/Androcat/assets/nmap.png -------------------------------------------------------------------------------- /uni-ctf-2023/fullpwn/Androcat/assets/pdfgen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/fullpwn/Androcat/assets/pdfgen.png -------------------------------------------------------------------------------- /uni-ctf-2023/fullpwn/Androcat/assets/pspy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/fullpwn/Androcat/assets/pspy.png -------------------------------------------------------------------------------- /uni-ctf-2023/fullpwn/Androcat/assets/root.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/fullpwn/Androcat/assets/root.txt -------------------------------------------------------------------------------- /uni-ctf-2023/fullpwn/Androcat/assets/ser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/fullpwn/Androcat/assets/ser.png -------------------------------------------------------------------------------- /uni-ctf-2023/fullpwn/Androcat/assets/xss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/fullpwn/Androcat/assets/xss.png -------------------------------------------------------------------------------- /uni-ctf-2023/fullpwn/Androcat/official_writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/fullpwn/Androcat/official_writeup.md -------------------------------------------------------------------------------- /uni-ctf-2023/fullpwn/Androcat/official_writeup.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/fullpwn/Androcat/official_writeup.pdf -------------------------------------------------------------------------------- /uni-ctf-2023/fullpwn/Apethanto/Apethanto.assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/fullpwn/Apethanto/Apethanto.assets/banner.png -------------------------------------------------------------------------------- /uni-ctf-2023/fullpwn/Apethanto/Apethanto.assets/htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/fullpwn/Apethanto/Apethanto.assets/htb.png -------------------------------------------------------------------------------- /uni-ctf-2023/fullpwn/Apethanto/Apethanto.assets/metabase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/fullpwn/Apethanto/Apethanto.assets/metabase.png -------------------------------------------------------------------------------- /uni-ctf-2023/fullpwn/Apethanto/Apethanto.assets/web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/fullpwn/Apethanto/Apethanto.assets/web.png -------------------------------------------------------------------------------- /uni-ctf-2023/fullpwn/Apethanto/Apethanto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/fullpwn/Apethanto/Apethanto.md -------------------------------------------------------------------------------- /uni-ctf-2023/fullpwn/Apethanto/Apethanto.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/fullpwn/Apethanto/Apethanto.pdf -------------------------------------------------------------------------------- /uni-ctf-2023/fullpwn/Umbrella/Umbrella.assets/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/fullpwn/Umbrella/Umbrella.assets/avatar.png -------------------------------------------------------------------------------- /uni-ctf-2023/fullpwn/Umbrella/Umbrella.assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/fullpwn/Umbrella/Umbrella.assets/banner.png -------------------------------------------------------------------------------- /uni-ctf-2023/fullpwn/Umbrella/Umbrella.assets/foothold1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/fullpwn/Umbrella/Umbrella.assets/foothold1.png -------------------------------------------------------------------------------- /uni-ctf-2023/fullpwn/Umbrella/Umbrella.assets/foothold2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/fullpwn/Umbrella/Umbrella.assets/foothold2.png -------------------------------------------------------------------------------- /uni-ctf-2023/fullpwn/Umbrella/Umbrella.assets/foothold3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/fullpwn/Umbrella/Umbrella.assets/foothold3.png -------------------------------------------------------------------------------- /uni-ctf-2023/fullpwn/Umbrella/Umbrella.assets/foothold4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/fullpwn/Umbrella/Umbrella.assets/foothold4.png -------------------------------------------------------------------------------- /uni-ctf-2023/fullpwn/Umbrella/Umbrella.assets/foothold5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/fullpwn/Umbrella/Umbrella.assets/foothold5.png -------------------------------------------------------------------------------- /uni-ctf-2023/fullpwn/Umbrella/Umbrella.assets/foothold6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/fullpwn/Umbrella/Umbrella.assets/foothold6.png -------------------------------------------------------------------------------- /uni-ctf-2023/fullpwn/Umbrella/Umbrella.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/fullpwn/Umbrella/Umbrella.md -------------------------------------------------------------------------------- /uni-ctf-2023/pwn/[Easy] Great Old Talisman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/pwn/[Easy] Great Old Talisman/README.md -------------------------------------------------------------------------------- /uni-ctf-2023/pwn/[Easy] Great Old Talisman/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/pwn/[Easy] Great Old Talisman/assets/banner.png -------------------------------------------------------------------------------- /uni-ctf-2023/pwn/[Easy] Great Old Talisman/assets/htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/pwn/[Easy] Great Old Talisman/assets/htb.png -------------------------------------------------------------------------------- /uni-ctf-2023/pwn/[Easy] Great Old Talisman/htb/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/pwn/[Easy] Great Old Talisman/htb/solver.py -------------------------------------------------------------------------------- /uni-ctf-2023/pwn/[Hard] Zombiedote/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/pwn/[Hard] Zombiedote/README.md -------------------------------------------------------------------------------- /uni-ctf-2023/pwn/[Hard] Zombiedote/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/pwn/[Hard] Zombiedote/assets/banner.png -------------------------------------------------------------------------------- /uni-ctf-2023/pwn/[Hard] Zombiedote/assets/checksec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/pwn/[Hard] Zombiedote/assets/checksec.png -------------------------------------------------------------------------------- /uni-ctf-2023/pwn/[Hard] Zombiedote/assets/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/pwn/[Hard] Zombiedote/assets/flag.png -------------------------------------------------------------------------------- /uni-ctf-2023/pwn/[Hard] Zombiedote/assets/gdb1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/pwn/[Hard] Zombiedote/assets/gdb1.png -------------------------------------------------------------------------------- /uni-ctf-2023/pwn/[Hard] Zombiedote/assets/gdb2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/pwn/[Hard] Zombiedote/assets/gdb2.png -------------------------------------------------------------------------------- /uni-ctf-2023/pwn/[Hard] Zombiedote/assets/gdb3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/pwn/[Hard] Zombiedote/assets/gdb3.png -------------------------------------------------------------------------------- /uni-ctf-2023/pwn/[Hard] Zombiedote/assets/gdb4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/pwn/[Hard] Zombiedote/assets/gdb4.png -------------------------------------------------------------------------------- /uni-ctf-2023/pwn/[Hard] Zombiedote/assets/gdb5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/pwn/[Hard] Zombiedote/assets/gdb5.png -------------------------------------------------------------------------------- /uni-ctf-2023/pwn/[Hard] Zombiedote/assets/htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/pwn/[Hard] Zombiedote/assets/htb.png -------------------------------------------------------------------------------- /uni-ctf-2023/pwn/[Hard] Zombiedote/assets/interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/pwn/[Hard] Zombiedote/assets/interface.png -------------------------------------------------------------------------------- /uni-ctf-2023/pwn/[Hard] Zombiedote/assets/libc_version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/pwn/[Hard] Zombiedote/assets/libc_version.png -------------------------------------------------------------------------------- /uni-ctf-2023/pwn/[Hard] Zombiedote/htb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/pwn/[Hard] Zombiedote/htb/Makefile -------------------------------------------------------------------------------- /uni-ctf-2023/pwn/[Hard] Zombiedote/htb/fuzz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/pwn/[Hard] Zombiedote/htb/fuzz.py -------------------------------------------------------------------------------- /uni-ctf-2023/pwn/[Hard] Zombiedote/htb/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/pwn/[Hard] Zombiedote/htb/setup.sh -------------------------------------------------------------------------------- /uni-ctf-2023/pwn/[Hard] Zombiedote/htb/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/pwn/[Hard] Zombiedote/htb/solver.py -------------------------------------------------------------------------------- /uni-ctf-2023/pwn/[Medium] Zombienator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/pwn/[Medium] Zombienator/README.md -------------------------------------------------------------------------------- /uni-ctf-2023/pwn/[Medium] Zombienator/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/pwn/[Medium] Zombienator/assets/banner.png -------------------------------------------------------------------------------- /uni-ctf-2023/pwn/[Medium] Zombienator/assets/htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/pwn/[Medium] Zombienator/assets/htb.png -------------------------------------------------------------------------------- /uni-ctf-2023/pwn/[Medium] Zombienator/htb/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/pwn/[Medium] Zombienator/htb/solver.py -------------------------------------------------------------------------------- /uni-ctf-2023/rev/[Easy] WindowOfOpportunity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/rev/[Easy] WindowOfOpportunity/README.md -------------------------------------------------------------------------------- /uni-ctf-2023/rev/[Easy] WindowOfOpportunity/htb/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/rev/[Easy] WindowOfOpportunity/htb/solve.py -------------------------------------------------------------------------------- /uni-ctf-2023/rev/[Hard] RiseFromTheDead/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/rev/[Hard] RiseFromTheDead/README.md -------------------------------------------------------------------------------- /uni-ctf-2023/rev/[Hard] RiseFromTheDead/htb/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/rev/[Hard] RiseFromTheDead/htb/solve.py -------------------------------------------------------------------------------- /uni-ctf-2023/rev/[Medium] BioBundle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/rev/[Medium] BioBundle/README.md -------------------------------------------------------------------------------- /uni-ctf-2023/web/[Easy] GateCrash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/web/[Easy] GateCrash/README.md -------------------------------------------------------------------------------- /uni-ctf-2023/web/[Easy] GateCrash/assets/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/web/[Easy] GateCrash/assets/overview.png -------------------------------------------------------------------------------- /uni-ctf-2023/web/[Easy] GateCrash/htb/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/web/[Easy] GateCrash/htb/solver.py -------------------------------------------------------------------------------- /uni-ctf-2023/web/[Hard] PhantomFeed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/web/[Hard] PhantomFeed/README.md -------------------------------------------------------------------------------- /uni-ctf-2023/web/[Hard] PhantomFeed/assets/admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/web/[Hard] PhantomFeed/assets/admin.png -------------------------------------------------------------------------------- /uni-ctf-2023/web/[Hard] PhantomFeed/assets/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/web/[Hard] PhantomFeed/assets/login.png -------------------------------------------------------------------------------- /uni-ctf-2023/web/[Hard] PhantomFeed/assets/marketlogin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/web/[Hard] PhantomFeed/assets/marketlogin.png -------------------------------------------------------------------------------- /uni-ctf-2023/web/[Hard] PhantomFeed/assets/oauth2grant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/web/[Hard] PhantomFeed/assets/oauth2grant.png -------------------------------------------------------------------------------- /uni-ctf-2023/web/[Hard] PhantomFeed/assets/orders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/web/[Hard] PhantomFeed/assets/orders.png -------------------------------------------------------------------------------- /uni-ctf-2023/web/[Hard] PhantomFeed/assets/overview1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/web/[Hard] PhantomFeed/assets/overview1.png -------------------------------------------------------------------------------- /uni-ctf-2023/web/[Hard] PhantomFeed/assets/overview2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/web/[Hard] PhantomFeed/assets/overview2.png -------------------------------------------------------------------------------- /uni-ctf-2023/web/[Hard] PhantomFeed/assets/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/web/[Hard] PhantomFeed/assets/pdf.png -------------------------------------------------------------------------------- /uni-ctf-2023/web/[Hard] PhantomFeed/assets/register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/web/[Hard] PhantomFeed/assets/register.png -------------------------------------------------------------------------------- /uni-ctf-2023/web/[Hard] PhantomFeed/conf/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/web/[Hard] PhantomFeed/conf/nginx.conf -------------------------------------------------------------------------------- /uni-ctf-2023/web/[Hard] PhantomFeed/conf/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/web/[Hard] PhantomFeed/conf/supervisord.conf -------------------------------------------------------------------------------- /uni-ctf-2023/web/[Hard] PhantomFeed/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/web/[Hard] PhantomFeed/entrypoint.sh -------------------------------------------------------------------------------- /uni-ctf-2023/web/[Hard] PhantomFeed/htb/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/web/[Hard] PhantomFeed/htb/go.mod -------------------------------------------------------------------------------- /uni-ctf-2023/web/[Hard] PhantomFeed/htb/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/web/[Hard] PhantomFeed/htb/go.sum -------------------------------------------------------------------------------- /uni-ctf-2023/web/[Hard] PhantomFeed/htb/solver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/web/[Hard] PhantomFeed/htb/solver.go -------------------------------------------------------------------------------- /uni-ctf-2023/web/[Medium] Nexus Void/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/web/[Medium] Nexus Void/Readme.md -------------------------------------------------------------------------------- /uni-ctf-2023/web/[Medium] Nexus Void/assets/auth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/web/[Medium] Nexus Void/assets/auth.png -------------------------------------------------------------------------------- /uni-ctf-2023/web/[Medium] Nexus Void/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/web/[Medium] Nexus Void/assets/banner.png -------------------------------------------------------------------------------- /uni-ctf-2023/web/[Medium] Nexus Void/assets/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/web/[Medium] Nexus Void/assets/dash.png -------------------------------------------------------------------------------- /uni-ctf-2023/web/[Medium] Nexus Void/assets/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/web/[Medium] Nexus Void/assets/flag.png -------------------------------------------------------------------------------- /uni-ctf-2023/web/[Medium] Nexus Void/assets/htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/web/[Medium] Nexus Void/assets/htb.png -------------------------------------------------------------------------------- /uni-ctf-2023/web/[Medium] Nexus Void/assets/set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/web/[Medium] Nexus Void/assets/set.png -------------------------------------------------------------------------------- /uni-ctf-2023/web/[Medium] Nexus Void/assets/wish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackthebox/uni-ctf-2023/HEAD/uni-ctf-2023/web/[Medium] Nexus Void/assets/wish.png --------------------------------------------------------------------------------