https://www.ppeinecke.de/custom_assets/images/pascal_portrait.webp

Pascal's Blog

picoCTF - Cryptography - basic-mod1

Cryptography - basic-mod1 - writeup description We found this weird message being passed around on the servers, we think we have a working decrpytion scheme. Download the message here. Take each number mod 37 and map it to the following character set: 0-25 is the alphabet (uppercase), 26-35 are the decimal digits, and 36 is an underscore. Wrap your decrypted message in the picoCTF flag format (i.e. picoCTF{decrypted_message}) writeup Lets write a simple python program which reads the message into a string first.

picoCTF - Binary Exploitation - Buffer Overflow 0

Binary Exploitation - buffer overflow 0 - writeup Description Smash the stack Let’s start off simple, can you overflow the correct buffer? The program is available here. You can view source here. And connect with it using: nc saturn.picoctf.net 57331 Writeup First I checked the strings of the binary file using the strings command but unfortunately I did not find anything interesting. Let’s fire up Ghidra and see what we’ve got here …

MHSCTF - Web - Et tu, Brute?

Web - Et tu, Brute? - writeup Description I want to see how many people are actually my friends and aren’t just pretending! Only my best friends get flags. You can check our friendship status at this website. mhsctf-ettubrute.0xmmalik.repl.co (you may need to wait for the site to wake up) Writeup So I went ahead and wrote a simple brute force program in python: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 #!

MHSCTF - General - Where the Wildcards Are 2

General - Where the Wildcards Are 2 - writeup Writeup Match all lowercase letters: 1 [a-z] Match all lowercase letters which are followed by two or more capital letters then three or more digits: (the capital letters and digits should not be included in the match) 1 [a-z](?=[A-Z]{2,}[0-9]{3,}) Match all numbers, letters, or underscores using the shortest possible pattern 1 \w 1 Flag: flag{m@tc#_mak3r}