Daily CTF #2

There is an encryption script day2.py. The encrypted flag is abb0a4a9bc9272b4708e706ba79f9686aea89b629f8f626262a5a8. Decrypt it. python s = input() x = "" for i in range(len(s)): x += str(hex(ord(s[i])+69-i))[2:] print(x) The flag format is flag{????} I’ve decided to create a daily CTF challenge targeted at beginners to encourage people to learn about actual hacking. These are made easy on purpose. Mods banned the first one for some reason(probably because the string was too long). Here is the github repository with the past challenges and solutions: https://github.com/N4m3N1ck/DailyCTF. First person to solve the challenge gets a cookie 🍪

submitted by /u/spez-suck-my-dick
[link] [comments]

August 16, 2023
Read More >>