├── Crypto ├── AES-1 │ ├── README.md │ ├── enc.java │ └── solution.java ├── MaaS │ ├── README.md │ ├── attachments │ │ └── chall.py │ ├── solve │ │ ├── solve.py │ │ └── unintended_solve.py │ └── src │ │ ├── Dockerfile │ │ ├── chall.py │ │ ├── docker-compose.yaml │ │ ├── flag.txt │ │ └── xinetd └── RSA │ ├── README.md │ ├── solve │ └── solve.py │ └── src │ ├── Dockerfile │ ├── chall.py │ ├── docker-compose.yaml │ ├── requirements.txt │ └── xinetd ├── Forensics ├── Avengers │ ├── Attachment │ │ └── flag.avi │ ├── README.md │ ├── flag.txt │ ├── solve │ │ └── solve.py │ └── src │ │ ├── Tahoma Regular font.ttf │ │ ├── background.png │ │ └── chall.py ├── BeepBop │ ├── README.md │ ├── attachments │ │ └── chall.wav │ └── src │ │ ├── flag.png │ │ └── flag.txt ├── Crack & Crack │ ├── README.md │ ├── attachments │ │ └── flag.zip │ ├── solve │ │ └── solve.sh │ └── src │ │ ├── flag.pdf │ │ └── flag.txt ├── Hecked │ ├── README.md │ └── dump.pcap ├── LSB │ ├── README.md │ ├── attachments │ │ └── chall.wav │ └── src │ │ ├── flag.txt │ │ └── morse_code.wav └── QRazy CSV │ ├── readme.md │ ├── secret_1 (1).csv │ └── solution │ └── sol.py ├── Misc ├── Amazing Song Lyrics │ ├── Attachments │ │ └── chall.png │ └── README.md ├── Google Form 1 │ └── README.md ├── Google Form 2 │ └── README.md ├── My-chemical-romance │ └── README.md ├── Numbers │ ├── README.md │ ├── solve │ │ └── solve.py │ └── src │ │ ├── Dockerfile │ │ ├── chall.py │ │ ├── docker-compose.yaml │ │ ├── flag.txt │ │ └── xinetd ├── Pyjail 1 │ ├── README.md │ └── src │ │ ├── Dockerfile │ │ ├── docker-compose.yaml │ │ ├── flag.txt │ │ ├── jail.py │ │ └── xinetd └── Sanity Check │ └── README.md ├── OSINT ├── Damn │ ├── README.md │ └── attachments │ │ └── dam.png ├── John Doe Strikes Again │ └── README.md ├── Lost │ └── README.md ├── Mission_Moon │ ├── Attachments │ │ └── mission_moon.webp │ └── README.md ├── The online Odyssey │ └── README.md └── Try to Hack Me │ └── README.md ├── Pwn ├── ASM │ ├── README.md │ ├── dist │ │ └── srop_me │ ├── solve │ │ └── exploit.py │ └── src │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── chall │ │ ├── chall.asm │ │ ├── chall.o │ │ ├── docker-compose.yaml │ │ ├── flag │ │ └── xinetd ├── Flag Shop │ ├── README.md │ ├── attachments │ │ └── chall.c │ └── src │ │ ├── Dockerfile │ │ ├── chall.c │ │ ├── docker-compose.yaml │ │ ├── flag.txt │ │ ├── flag_shop │ │ └── xinetd ├── Pwn1 │ ├── .gdb_history │ ├── README.md │ ├── attachments │ │ └── pwn1 │ ├── solve │ │ ├── .gdb_history │ │ └── exploit.py │ └── src │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── chall.c │ │ ├── docker-compose.yaml │ │ ├── fake_flag.txt │ │ ├── flag.txt │ │ ├── pwn1 │ │ └── xinetd ├── Pwn2 │ ├── .gdb_history │ ├── README.md │ ├── attachments │ │ └── pwn2 │ ├── solve │ │ ├── .gdb_history │ │ └── exploit.py │ └── src │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── chall.c │ │ ├── docker-compose.yaml │ │ ├── fake_flag.txt │ │ ├── flag.txt │ │ ├── pwn2 │ │ └── xinetd ├── Pwn3 │ ├── .gdb_history │ ├── README.md │ ├── attachments │ │ └── pwn3 │ ├── solve │ │ └── exploit.py │ └── src │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── chall.c │ │ ├── docker-compose.yaml │ │ ├── flag.txt │ │ ├── pwn3 │ │ └── xinetd └── Strings │ ├── README.md │ ├── attachments │ └── strings │ ├── solve │ └── exploit.py │ └── src │ ├── Dockerfile │ ├── Makefile │ ├── chall.c │ ├── docker-compose.yaml │ ├── flag.txt │ ├── strings │ └── xinetd ├── Rev ├── EZrev │ ├── EZrev.java │ ├── Makefile │ ├── README.md │ ├── bin │ │ └── EZrev.class │ └── solve.py ├── My-pin │ └── public │ │ └── My-pin.jar ├── VM │ ├── README.md │ └── src │ │ ├── Makefile │ │ ├── challenge-code.c │ │ ├── code │ │ ├── main.c │ │ └── vm ├── bf │ ├── README.md │ └── public │ │ └── chall.bf ├── welcome │ ├── Makefile │ ├── solution │ │ └── README.md │ └── src │ │ └── chall.c └── zzz │ ├── Makefile │ ├── README.md │ ├── chall │ ├── chall.c │ └── solve.py ├── Web ├── CaaS │ ├── README.md │ └── src │ │ ├── Dockerfile │ │ ├── docker-compose.yaml │ │ ├── flag.txt │ │ ├── requirements.txt │ │ ├── server.py │ │ ├── templates │ │ └── generate_certificate.html │ │ └── xinetd ├── CaaS2 │ ├── README.md │ └── src │ │ ├── Dockerfile │ │ ├── docker-compose.yaml │ │ ├── requirements.txt │ │ ├── s3cur3_fl4g_f1l3_.txt │ │ ├── server.py │ │ ├── templates │ │ └── generate_certificate.html │ │ └── xinetd ├── Club_N00b │ ├── Dockerfile │ ├── README.md │ ├── club_n00b.tar │ ├── docker-compose.yaml │ ├── public │ │ ├── Cargo.toml │ │ ├── src │ │ │ └── main.rs │ │ └── static │ │ │ ├── index.html │ │ │ ├── input.css │ │ │ ├── members_only.html │ │ │ ├── not_member.html │ │ │ ├── styles.css │ │ │ └── tailwind.config.js │ └── yee │ │ ├── club_n00b │ │ └── static │ │ ├── index.html │ │ ├── input.css │ │ ├── members_only.html │ │ ├── not_member.html │ │ ├── styles.css │ │ └── tailwind.config.js ├── Conditions │ ├── README.md │ └── src │ │ ├── Dockerfile │ │ ├── docker-compose.yaml │ │ ├── flag.txt │ │ ├── requirements.txt │ │ ├── server.py │ │ └── templates │ │ └── login.html ├── Robots │ └── src │ │ ├── Dockerfile │ │ ├── docker-compose.yaml │ │ ├── flag.txt │ │ ├── requirements.txt │ │ ├── server.py │ │ └── xinetd └── Secret Group │ ├── README.md │ ├── flag.txt │ └── src │ ├── Dockerfile │ ├── docker-compose.yaml │ ├── flag.txt │ ├── requirements.txt │ ├── server.py │ └── templates │ ├── incorrect_accept.html │ ├── incorrect_connection.html │ ├── incorrect_give_flag.html │ ├── incorrect_referer.html │ └── incorrect_user_agent.html └── blockchain └── To_the_MOOON! ├── README.md └── TTMCoin.sol /Crypto/AES-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Crypto/AES-1/README.md -------------------------------------------------------------------------------- /Crypto/AES-1/enc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Crypto/AES-1/enc.java -------------------------------------------------------------------------------- /Crypto/AES-1/solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Crypto/AES-1/solution.java -------------------------------------------------------------------------------- /Crypto/MaaS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Crypto/MaaS/README.md -------------------------------------------------------------------------------- /Crypto/MaaS/attachments/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Crypto/MaaS/attachments/chall.py -------------------------------------------------------------------------------- /Crypto/MaaS/solve/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Crypto/MaaS/solve/solve.py -------------------------------------------------------------------------------- /Crypto/MaaS/solve/unintended_solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Crypto/MaaS/solve/unintended_solve.py -------------------------------------------------------------------------------- /Crypto/MaaS/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Crypto/MaaS/src/Dockerfile -------------------------------------------------------------------------------- /Crypto/MaaS/src/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Crypto/MaaS/src/chall.py -------------------------------------------------------------------------------- /Crypto/MaaS/src/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Crypto/MaaS/src/docker-compose.yaml -------------------------------------------------------------------------------- /Crypto/MaaS/src/flag.txt: -------------------------------------------------------------------------------- 1 | n00bz{M0dul0_f7w_1a4d3f5c!} -------------------------------------------------------------------------------- /Crypto/MaaS/src/xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Crypto/MaaS/src/xinetd -------------------------------------------------------------------------------- /Crypto/RSA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Crypto/RSA/README.md -------------------------------------------------------------------------------- /Crypto/RSA/solve/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Crypto/RSA/solve/solve.py -------------------------------------------------------------------------------- /Crypto/RSA/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Crypto/RSA/src/Dockerfile -------------------------------------------------------------------------------- /Crypto/RSA/src/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Crypto/RSA/src/chall.py -------------------------------------------------------------------------------- /Crypto/RSA/src/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Crypto/RSA/src/docker-compose.yaml -------------------------------------------------------------------------------- /Crypto/RSA/src/requirements.txt: -------------------------------------------------------------------------------- 1 | pycryptodome -------------------------------------------------------------------------------- /Crypto/RSA/src/xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Crypto/RSA/src/xinetd -------------------------------------------------------------------------------- /Forensics/Avengers/Attachment/flag.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Forensics/Avengers/Attachment/flag.avi -------------------------------------------------------------------------------- /Forensics/Avengers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Forensics/Avengers/README.md -------------------------------------------------------------------------------- /Forensics/Avengers/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Forensics/Avengers/flag.txt -------------------------------------------------------------------------------- /Forensics/Avengers/solve/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Forensics/Avengers/solve/solve.py -------------------------------------------------------------------------------- /Forensics/Avengers/src/Tahoma Regular font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Forensics/Avengers/src/Tahoma Regular font.ttf -------------------------------------------------------------------------------- /Forensics/Avengers/src/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Forensics/Avengers/src/background.png -------------------------------------------------------------------------------- /Forensics/Avengers/src/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Forensics/Avengers/src/chall.py -------------------------------------------------------------------------------- /Forensics/BeepBop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Forensics/BeepBop/README.md -------------------------------------------------------------------------------- /Forensics/BeepBop/attachments/chall.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Forensics/BeepBop/attachments/chall.wav -------------------------------------------------------------------------------- /Forensics/BeepBop/src/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Forensics/BeepBop/src/flag.png -------------------------------------------------------------------------------- /Forensics/BeepBop/src/flag.txt: -------------------------------------------------------------------------------- 1 | n00bz{B33P_B0P_Y0U_F0UND_M3!} -------------------------------------------------------------------------------- /Forensics/Crack & Crack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Forensics/Crack & Crack/README.md -------------------------------------------------------------------------------- /Forensics/Crack & Crack/attachments/flag.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Forensics/Crack & Crack/attachments/flag.zip -------------------------------------------------------------------------------- /Forensics/Crack & Crack/solve/solve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Forensics/Crack & Crack/solve/solve.sh -------------------------------------------------------------------------------- /Forensics/Crack & Crack/src/flag.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Forensics/Crack & Crack/src/flag.pdf -------------------------------------------------------------------------------- /Forensics/Crack & Crack/src/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Forensics/Crack & Crack/src/flag.txt -------------------------------------------------------------------------------- /Forensics/Hecked/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Forensics/Hecked/README.md -------------------------------------------------------------------------------- /Forensics/Hecked/dump.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Forensics/Hecked/dump.pcap -------------------------------------------------------------------------------- /Forensics/LSB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Forensics/LSB/README.md -------------------------------------------------------------------------------- /Forensics/LSB/attachments/chall.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Forensics/LSB/attachments/chall.wav -------------------------------------------------------------------------------- /Forensics/LSB/src/flag.txt: -------------------------------------------------------------------------------- 1 | n00bz{L5B_1n_w4v_f1l3s?!!!} -------------------------------------------------------------------------------- /Forensics/LSB/src/morse_code.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Forensics/LSB/src/morse_code.wav -------------------------------------------------------------------------------- /Forensics/QRazy CSV/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Forensics/QRazy CSV/readme.md -------------------------------------------------------------------------------- /Forensics/QRazy CSV/secret_1 (1).csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Forensics/QRazy CSV/secret_1 (1).csv -------------------------------------------------------------------------------- /Forensics/QRazy CSV/solution/sol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Forensics/QRazy CSV/solution/sol.py -------------------------------------------------------------------------------- /Misc/Amazing Song Lyrics/Attachments/chall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Misc/Amazing Song Lyrics/Attachments/chall.png -------------------------------------------------------------------------------- /Misc/Amazing Song Lyrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Misc/Amazing Song Lyrics/README.md -------------------------------------------------------------------------------- /Misc/Google Form 1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Misc/Google Form 1/README.md -------------------------------------------------------------------------------- /Misc/Google Form 2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Misc/Google Form 2/README.md -------------------------------------------------------------------------------- /Misc/My-chemical-romance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Misc/My-chemical-romance/README.md -------------------------------------------------------------------------------- /Misc/Numbers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Misc/Numbers/README.md -------------------------------------------------------------------------------- /Misc/Numbers/solve/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Misc/Numbers/solve/solve.py -------------------------------------------------------------------------------- /Misc/Numbers/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Misc/Numbers/src/Dockerfile -------------------------------------------------------------------------------- /Misc/Numbers/src/chall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Misc/Numbers/src/chall.py -------------------------------------------------------------------------------- /Misc/Numbers/src/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Misc/Numbers/src/docker-compose.yaml -------------------------------------------------------------------------------- /Misc/Numbers/src/flag.txt: -------------------------------------------------------------------------------- 1 | n00bz{4n_345y_pr0gr4mm1ng_ch4ll} -------------------------------------------------------------------------------- /Misc/Numbers/src/xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Misc/Numbers/src/xinetd -------------------------------------------------------------------------------- /Misc/Pyjail 1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Misc/Pyjail 1/README.md -------------------------------------------------------------------------------- /Misc/Pyjail 1/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Misc/Pyjail 1/src/Dockerfile -------------------------------------------------------------------------------- /Misc/Pyjail 1/src/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Misc/Pyjail 1/src/docker-compose.yaml -------------------------------------------------------------------------------- /Misc/Pyjail 1/src/flag.txt: -------------------------------------------------------------------------------- 1 | n00bz{blacklist.pop()_ftw!_7a5d2f8b} 2 | -------------------------------------------------------------------------------- /Misc/Pyjail 1/src/jail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Misc/Pyjail 1/src/jail.py -------------------------------------------------------------------------------- /Misc/Pyjail 1/src/xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Misc/Pyjail 1/src/xinetd -------------------------------------------------------------------------------- /Misc/Sanity Check/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Misc/Sanity Check/README.md -------------------------------------------------------------------------------- /OSINT/Damn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/OSINT/Damn/README.md -------------------------------------------------------------------------------- /OSINT/Damn/attachments/dam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/OSINT/Damn/attachments/dam.png -------------------------------------------------------------------------------- /OSINT/John Doe Strikes Again/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/OSINT/John Doe Strikes Again/README.md -------------------------------------------------------------------------------- /OSINT/Lost/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/OSINT/Lost/README.md -------------------------------------------------------------------------------- /OSINT/Mission_Moon/Attachments/mission_moon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/OSINT/Mission_Moon/Attachments/mission_moon.webp -------------------------------------------------------------------------------- /OSINT/Mission_Moon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/OSINT/Mission_Moon/README.md -------------------------------------------------------------------------------- /OSINT/The online Odyssey/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/OSINT/The online Odyssey/README.md -------------------------------------------------------------------------------- /OSINT/Try to Hack Me/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/OSINT/Try to Hack Me/README.md -------------------------------------------------------------------------------- /Pwn/ASM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/ASM/README.md -------------------------------------------------------------------------------- /Pwn/ASM/dist/srop_me: -------------------------------------------------------------------------------- 1 | ../src/chall -------------------------------------------------------------------------------- /Pwn/ASM/solve/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/ASM/solve/exploit.py -------------------------------------------------------------------------------- /Pwn/ASM/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/ASM/src/Dockerfile -------------------------------------------------------------------------------- /Pwn/ASM/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/ASM/src/Makefile -------------------------------------------------------------------------------- /Pwn/ASM/src/chall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/ASM/src/chall -------------------------------------------------------------------------------- /Pwn/ASM/src/chall.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/ASM/src/chall.asm -------------------------------------------------------------------------------- /Pwn/ASM/src/chall.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/ASM/src/chall.o -------------------------------------------------------------------------------- /Pwn/ASM/src/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/ASM/src/docker-compose.yaml -------------------------------------------------------------------------------- /Pwn/ASM/src/flag: -------------------------------------------------------------------------------- 1 | n00bz{SR0P_1$_s0_fun_r1ght??!} -------------------------------------------------------------------------------- /Pwn/ASM/src/xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/ASM/src/xinetd -------------------------------------------------------------------------------- /Pwn/Flag Shop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/Flag Shop/README.md -------------------------------------------------------------------------------- /Pwn/Flag Shop/attachments/chall.c: -------------------------------------------------------------------------------- 1 | ../src/chall.c -------------------------------------------------------------------------------- /Pwn/Flag Shop/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/Flag Shop/src/Dockerfile -------------------------------------------------------------------------------- /Pwn/Flag Shop/src/chall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/Flag Shop/src/chall.c -------------------------------------------------------------------------------- /Pwn/Flag Shop/src/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/Flag Shop/src/docker-compose.yaml -------------------------------------------------------------------------------- /Pwn/Flag Shop/src/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/Flag Shop/src/flag.txt -------------------------------------------------------------------------------- /Pwn/Flag Shop/src/flag_shop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/Flag Shop/src/flag_shop -------------------------------------------------------------------------------- /Pwn/Flag Shop/src/xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/Flag Shop/src/xinetd -------------------------------------------------------------------------------- /Pwn/Pwn1/.gdb_history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/Pwn1/.gdb_history -------------------------------------------------------------------------------- /Pwn/Pwn1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/Pwn1/README.md -------------------------------------------------------------------------------- /Pwn/Pwn1/attachments/pwn1: -------------------------------------------------------------------------------- 1 | ../src/pwn1 -------------------------------------------------------------------------------- /Pwn/Pwn1/solve/.gdb_history: -------------------------------------------------------------------------------- 1 | c 2 | q 3 | -------------------------------------------------------------------------------- /Pwn/Pwn1/solve/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/Pwn1/solve/exploit.py -------------------------------------------------------------------------------- /Pwn/Pwn1/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/Pwn1/src/Dockerfile -------------------------------------------------------------------------------- /Pwn/Pwn1/src/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | gcc chall.c -fno-stack-protector -no-pie -o pwn1 -------------------------------------------------------------------------------- /Pwn/Pwn1/src/chall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/Pwn1/src/chall.c -------------------------------------------------------------------------------- /Pwn/Pwn1/src/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/Pwn1/src/docker-compose.yaml -------------------------------------------------------------------------------- /Pwn/Pwn1/src/fake_flag.txt: -------------------------------------------------------------------------------- 1 | n00bz{f4k3_fl4g} -------------------------------------------------------------------------------- /Pwn/Pwn1/src/flag.txt: -------------------------------------------------------------------------------- 1 | n00bz{PWN_1_Cl34r3d_n0w_0nt0_PWN_2!!!} -------------------------------------------------------------------------------- /Pwn/Pwn1/src/pwn1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/Pwn1/src/pwn1 -------------------------------------------------------------------------------- /Pwn/Pwn1/src/xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/Pwn1/src/xinetd -------------------------------------------------------------------------------- /Pwn/Pwn2/.gdb_history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/Pwn2/.gdb_history -------------------------------------------------------------------------------- /Pwn/Pwn2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/Pwn2/README.md -------------------------------------------------------------------------------- /Pwn/Pwn2/attachments/pwn2: -------------------------------------------------------------------------------- 1 | ../src/pwn2 -------------------------------------------------------------------------------- /Pwn/Pwn2/solve/.gdb_history: -------------------------------------------------------------------------------- 1 | c 2 | q 3 | -------------------------------------------------------------------------------- /Pwn/Pwn2/solve/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/Pwn2/solve/exploit.py -------------------------------------------------------------------------------- /Pwn/Pwn2/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/Pwn2/src/Dockerfile -------------------------------------------------------------------------------- /Pwn/Pwn2/src/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | gcc chall.c -fno-stack-protector -no-pie -o pwn2 -------------------------------------------------------------------------------- /Pwn/Pwn2/src/chall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/Pwn2/src/chall.c -------------------------------------------------------------------------------- /Pwn/Pwn2/src/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/Pwn2/src/docker-compose.yaml -------------------------------------------------------------------------------- /Pwn/Pwn2/src/fake_flag.txt: -------------------------------------------------------------------------------- 1 | n00bz{f4k3_fl4g} -------------------------------------------------------------------------------- /Pwn/Pwn2/src/flag.txt: -------------------------------------------------------------------------------- 1 | n00bz{3xpl01t_w1th0u7_w1n_5uc355ful!} -------------------------------------------------------------------------------- /Pwn/Pwn2/src/pwn2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/Pwn2/src/pwn2 -------------------------------------------------------------------------------- /Pwn/Pwn2/src/xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/Pwn2/src/xinetd -------------------------------------------------------------------------------- /Pwn/Pwn3/.gdb_history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/Pwn3/.gdb_history -------------------------------------------------------------------------------- /Pwn/Pwn3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/Pwn3/README.md -------------------------------------------------------------------------------- /Pwn/Pwn3/attachments/pwn3: -------------------------------------------------------------------------------- 1 | ../src/pwn3 -------------------------------------------------------------------------------- /Pwn/Pwn3/solve/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/Pwn3/solve/exploit.py -------------------------------------------------------------------------------- /Pwn/Pwn3/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/Pwn3/src/Dockerfile -------------------------------------------------------------------------------- /Pwn/Pwn3/src/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | gcc chall.c -fno-stack-protector -no-pie -o pwn3 -------------------------------------------------------------------------------- /Pwn/Pwn3/src/chall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/Pwn3/src/chall.c -------------------------------------------------------------------------------- /Pwn/Pwn3/src/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/Pwn3/src/docker-compose.yaml -------------------------------------------------------------------------------- /Pwn/Pwn3/src/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/Pwn3/src/flag.txt -------------------------------------------------------------------------------- /Pwn/Pwn3/src/pwn3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/Pwn3/src/pwn3 -------------------------------------------------------------------------------- /Pwn/Pwn3/src/xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/Pwn3/src/xinetd -------------------------------------------------------------------------------- /Pwn/Strings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/Strings/README.md -------------------------------------------------------------------------------- /Pwn/Strings/attachments/strings: -------------------------------------------------------------------------------- 1 | ../src/strings -------------------------------------------------------------------------------- /Pwn/Strings/solve/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/Strings/solve/exploit.py -------------------------------------------------------------------------------- /Pwn/Strings/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/Strings/src/Dockerfile -------------------------------------------------------------------------------- /Pwn/Strings/src/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | gcc chall.c -no-pie -o strings -------------------------------------------------------------------------------- /Pwn/Strings/src/chall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/Strings/src/chall.c -------------------------------------------------------------------------------- /Pwn/Strings/src/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/Strings/src/docker-compose.yaml -------------------------------------------------------------------------------- /Pwn/Strings/src/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/Strings/src/flag.txt -------------------------------------------------------------------------------- /Pwn/Strings/src/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/Strings/src/strings -------------------------------------------------------------------------------- /Pwn/Strings/src/xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Pwn/Strings/src/xinetd -------------------------------------------------------------------------------- /Rev/EZrev/EZrev.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Rev/EZrev/EZrev.java -------------------------------------------------------------------------------- /Rev/EZrev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Rev/EZrev/Makefile -------------------------------------------------------------------------------- /Rev/EZrev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Rev/EZrev/README.md -------------------------------------------------------------------------------- /Rev/EZrev/bin/EZrev.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Rev/EZrev/bin/EZrev.class -------------------------------------------------------------------------------- /Rev/EZrev/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Rev/EZrev/solve.py -------------------------------------------------------------------------------- /Rev/My-pin/public/My-pin.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Rev/My-pin/public/My-pin.jar -------------------------------------------------------------------------------- /Rev/VM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Rev/VM/README.md -------------------------------------------------------------------------------- /Rev/VM/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Rev/VM/src/Makefile -------------------------------------------------------------------------------- /Rev/VM/src/challenge-code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Rev/VM/src/challenge-code.c -------------------------------------------------------------------------------- /Rev/VM/src/code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Rev/VM/src/code -------------------------------------------------------------------------------- /Rev/VM/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Rev/VM/src/main.c -------------------------------------------------------------------------------- /Rev/VM/src/vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Rev/VM/src/vm -------------------------------------------------------------------------------- /Rev/bf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Rev/bf/README.md -------------------------------------------------------------------------------- /Rev/bf/public/chall.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Rev/bf/public/chall.bf -------------------------------------------------------------------------------- /Rev/welcome/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Rev/welcome/Makefile -------------------------------------------------------------------------------- /Rev/welcome/solution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Rev/welcome/solution/README.md -------------------------------------------------------------------------------- /Rev/welcome/src/chall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Rev/welcome/src/chall.c -------------------------------------------------------------------------------- /Rev/zzz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Rev/zzz/Makefile -------------------------------------------------------------------------------- /Rev/zzz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Rev/zzz/README.md -------------------------------------------------------------------------------- /Rev/zzz/chall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Rev/zzz/chall -------------------------------------------------------------------------------- /Rev/zzz/chall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Rev/zzz/chall.c -------------------------------------------------------------------------------- /Rev/zzz/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Rev/zzz/solve.py -------------------------------------------------------------------------------- /Web/CaaS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Web/CaaS/README.md -------------------------------------------------------------------------------- /Web/CaaS/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Web/CaaS/src/Dockerfile -------------------------------------------------------------------------------- /Web/CaaS/src/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Web/CaaS/src/docker-compose.yaml -------------------------------------------------------------------------------- /Web/CaaS/src/flag.txt: -------------------------------------------------------------------------------- 1 | n00bz{5571_57r1k3s_4g41n_7a1b3f4e5d} -------------------------------------------------------------------------------- /Web/CaaS/src/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | -------------------------------------------------------------------------------- /Web/CaaS/src/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Web/CaaS/src/server.py -------------------------------------------------------------------------------- /Web/CaaS/src/templates/generate_certificate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Web/CaaS/src/templates/generate_certificate.html -------------------------------------------------------------------------------- /Web/CaaS/src/xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Web/CaaS/src/xinetd -------------------------------------------------------------------------------- /Web/CaaS2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Web/CaaS2/README.md -------------------------------------------------------------------------------- /Web/CaaS2/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Web/CaaS2/src/Dockerfile -------------------------------------------------------------------------------- /Web/CaaS2/src/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Web/CaaS2/src/docker-compose.yaml -------------------------------------------------------------------------------- /Web/CaaS2/src/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | -------------------------------------------------------------------------------- /Web/CaaS2/src/s3cur3_fl4g_f1l3_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Web/CaaS2/src/s3cur3_fl4g_f1l3_.txt -------------------------------------------------------------------------------- /Web/CaaS2/src/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Web/CaaS2/src/server.py -------------------------------------------------------------------------------- /Web/CaaS2/src/templates/generate_certificate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Web/CaaS2/src/templates/generate_certificate.html -------------------------------------------------------------------------------- /Web/CaaS2/src/xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Web/CaaS2/src/xinetd -------------------------------------------------------------------------------- /Web/Club_N00b/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Web/Club_N00b/Dockerfile -------------------------------------------------------------------------------- /Web/Club_N00b/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Web/Club_N00b/README.md -------------------------------------------------------------------------------- /Web/Club_N00b/club_n00b.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Web/Club_N00b/club_n00b.tar -------------------------------------------------------------------------------- /Web/Club_N00b/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Web/Club_N00b/docker-compose.yaml -------------------------------------------------------------------------------- /Web/Club_N00b/public/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Web/Club_N00b/public/Cargo.toml -------------------------------------------------------------------------------- /Web/Club_N00b/public/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Web/Club_N00b/public/src/main.rs -------------------------------------------------------------------------------- /Web/Club_N00b/public/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Web/Club_N00b/public/static/index.html -------------------------------------------------------------------------------- /Web/Club_N00b/public/static/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Web/Club_N00b/public/static/input.css -------------------------------------------------------------------------------- /Web/Club_N00b/public/static/members_only.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Web/Club_N00b/public/static/members_only.html -------------------------------------------------------------------------------- /Web/Club_N00b/public/static/not_member.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Web/Club_N00b/public/static/not_member.html -------------------------------------------------------------------------------- /Web/Club_N00b/public/static/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Web/Club_N00b/public/static/styles.css -------------------------------------------------------------------------------- /Web/Club_N00b/public/static/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Web/Club_N00b/public/static/tailwind.config.js -------------------------------------------------------------------------------- /Web/Club_N00b/yee/club_n00b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Web/Club_N00b/yee/club_n00b -------------------------------------------------------------------------------- /Web/Club_N00b/yee/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Web/Club_N00b/yee/static/index.html -------------------------------------------------------------------------------- /Web/Club_N00b/yee/static/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Web/Club_N00b/yee/static/input.css -------------------------------------------------------------------------------- /Web/Club_N00b/yee/static/members_only.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Web/Club_N00b/yee/static/members_only.html -------------------------------------------------------------------------------- /Web/Club_N00b/yee/static/not_member.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Web/Club_N00b/yee/static/not_member.html -------------------------------------------------------------------------------- /Web/Club_N00b/yee/static/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Web/Club_N00b/yee/static/styles.css -------------------------------------------------------------------------------- /Web/Club_N00b/yee/static/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Web/Club_N00b/yee/static/tailwind.config.js -------------------------------------------------------------------------------- /Web/Conditions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Web/Conditions/README.md -------------------------------------------------------------------------------- /Web/Conditions/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Web/Conditions/src/Dockerfile -------------------------------------------------------------------------------- /Web/Conditions/src/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Web/Conditions/src/docker-compose.yaml -------------------------------------------------------------------------------- /Web/Conditions/src/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Web/Conditions/src/flag.txt -------------------------------------------------------------------------------- /Web/Conditions/src/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | -------------------------------------------------------------------------------- /Web/Conditions/src/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Web/Conditions/src/server.py -------------------------------------------------------------------------------- /Web/Conditions/src/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Web/Conditions/src/templates/login.html -------------------------------------------------------------------------------- /Web/Robots/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Web/Robots/src/Dockerfile -------------------------------------------------------------------------------- /Web/Robots/src/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Web/Robots/src/docker-compose.yaml -------------------------------------------------------------------------------- /Web/Robots/src/flag.txt: -------------------------------------------------------------------------------- 1 | n00bz{1_f0und_7h3_r0b0ts!} -------------------------------------------------------------------------------- /Web/Robots/src/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | -------------------------------------------------------------------------------- /Web/Robots/src/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Web/Robots/src/server.py -------------------------------------------------------------------------------- /Web/Robots/src/xinetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Web/Robots/src/xinetd -------------------------------------------------------------------------------- /Web/Secret Group/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Web/Secret Group/README.md -------------------------------------------------------------------------------- /Web/Secret Group/flag.txt: -------------------------------------------------------------------------------- 1 | n00bz{y0u_4r3_n0w_4_v4l1d_m3mb3r_0f_th3_s3cr3t_gr0up!} -------------------------------------------------------------------------------- /Web/Secret Group/src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Web/Secret Group/src/Dockerfile -------------------------------------------------------------------------------- /Web/Secret Group/src/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Web/Secret Group/src/docker-compose.yaml -------------------------------------------------------------------------------- /Web/Secret Group/src/flag.txt: -------------------------------------------------------------------------------- 1 | n00bz{y0u_4r3_n0w_4_v4l1d_m3mb3r_0f_th3_s3cr3t_gr0up!} -------------------------------------------------------------------------------- /Web/Secret Group/src/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | -------------------------------------------------------------------------------- /Web/Secret Group/src/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/Web/Secret Group/src/server.py -------------------------------------------------------------------------------- /Web/Secret Group/src/templates/incorrect_accept.html: -------------------------------------------------------------------------------- 1 |
Does not Accept fl4g
-------------------------------------------------------------------------------- /Web/Secret Group/src/templates/incorrect_connection.html: -------------------------------------------------------------------------------- 1 |Connection not s3cur3
-------------------------------------------------------------------------------- /Web/Secret Group/src/templates/incorrect_give_flag.html: -------------------------------------------------------------------------------- 1 | Give-Flag is not 7ru3 -------------------------------------------------------------------------------- /Web/Secret Group/src/templates/incorrect_referer.html: -------------------------------------------------------------------------------- 1 |Not refered by s3cr3t.n00bz-4dm1n.xyz
-------------------------------------------------------------------------------- /Web/Secret Group/src/templates/incorrect_user_agent.html: -------------------------------------------------------------------------------- 1 |Not an agent of the n00bz-4dm1n secure browser!
-------------------------------------------------------------------------------- /blockchain/To_the_MOOON!/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/blockchain/To_the_MOOON!/README.md -------------------------------------------------------------------------------- /blockchain/To_the_MOOON!/TTMCoin.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n00bzUnit3d/n00bzCTF2023-OfficalWriteups/HEAD/blockchain/To_the_MOOON!/TTMCoin.sol --------------------------------------------------------------------------------