Blacklist

Challenge description you can run anything on this! please dont hack me Source code blacklist = "._0x/|?*[]{}<>\"'=()\\\t " blacklist2 = ['eval', 'exec', 'compile', 'import', 'os', 'sys', 'cat', 'ls', 'exit', 'list', 'max', 'min', 'set', 'tuple'] def validate(code): for char in blacklist: if char in str(code): return False for word in blacklist2: if word in str(code): return False return True if __name__ == '__main__': print("------------------------------") print("Welcome to my very cool python interpreter! \nI hope I blacklisted enough....

March 20, 2023 · 3 min · Lombax

Crapto

I touched my keyfob for free bubblegum and they stole my flag :( Files keyfob.trace What’s going on? We have keyfob.trace, which is a log file. Firstly, we saw a rfid challenge tag, and we understood what was going on: RFID (radio frequency identification) is a form of wireless communication that incorporates the use of electromagnetic or electrostatic coupling in the radio frequency portion of the electromagnetic spectrum to uniquely identify an object, animal or person....

April 20, 2022 · 2 min · Karina

Grammar Nazi

The flag is in format dctf{7_4_2_3_7_4} where numbers represent number of characters between underscores. For clarification: you will get the whole flag as a result, including the dctf{} part. Files cfg.zip What’s going on? We have cfg.zip, which contains 2134 folders. An example of the structure is shown below: Image not found! Some folders contain only subfolders. Subfolders name is not random: subfolders have the same name of a folder from the upper layer....

April 18, 2022 · 4 min · Karina

mc_joinin

Challenge Information category: misc points: 273 Description 赶紧加入游戏吧。 我们在等你 Hurry up and join in the game. We’re waiting for you. http://134.175.230.10/ (cn) http://222.85.25.41/ (cn) http://144.202.79.93/ (us) http://80.240.24.78/ (de) http://45.77.253.164/ (sg) Hint mc_joinin’s flag is: De1CTF{md5(flag)} mc_joinin 的 flag 格式为:De1CTF{md5(flag)} Writeup Author aandryyy fuomag9 Fabbrei rickycraft Solution By looking at the IP given we realized it was a Minecraft challenge. We1c0me t0 De1Ta He4dl3ss M1neCrAft Te2t SeRv3r Minecraft 20.20 is developed by De1ta Team based on 1....

2 min · aandryyy, fuomag9, Fabbrei, rickycraft