Kernel Adventures Part 1
Explanation Solution // Compile with: musl-gcc -static -o exploit exploit.c #include <fcntl.h> #include <pthread.h> #include <stdbool.h> #include <stddef.h> #include <...
Explanation Solution // Compile with: musl-gcc -static -o exploit exploit.c #include <fcntl.h> #include <pthread.h> #include <stdbool.h> #include <stddef.h> #include <...
Baby pwn Here’s a baby pwn challenge for you to try out. Can you get the flag? nc 34.162.142.123 5000 Author: atom void secret() { printf("Congratulations! Here is your flag: "); ...
I will keep updating this as and when I learn more. I assume you are already familiar and comfortable with the linux ecosystem and the CLI. If not, get yourself familiar :D When I started...
jail/javajail1 Good luck getting anything to run. nc chal.amt.rs 2103 Analysis #!/usr/local/bin/python3 import subprocess BANNED = ['import', 'class', 'Main', '{', '}'] # good luck gett...

Overall a very nice CTF with a good difficulty curve and well made challenges. I managed to solve 7/10 pwn and 1 reversing challenge. pwn/Tutorial Before we start, practice time! Attachment:...
pwn/basic-overflow Challenge This challenge is simple. It just gets input, stores it to a buffer. It calls gets to read input, stores the read bytes to a buffer, then exits. What is gets, you a...
pwn/Marks The Challenge Score 100/100 to pass this exam Attachments: marks.zip nc 34.70.212.151 8004 The Solution Here’s what happens when we run the binary $ ./chal Enter your details to view...
pwn/Array Of Sunshine The Challenge Sunshine on my shoulders makes me happy... Haiku to Sunshine - ChatGPT ☀️ A sunbeam kisses Golden warmth in every slice Nature's sweet embrace Server info nc ch...
pwn/printshop The Challenge That print shop down the road is useless, can you make it do something interesting? Attachment : printshop The Solution The name “print” shop suggests that it might h...
steganography/Deb File | The old Systems The Challenge Can you believe it? people still use linux? after the emerge of Evil E computers, nobody bothered to use linux systems. anyways, we got this ...