pwn Racing cars Author: d1g174l_f0rtr355
Description: Welcome to the Incredibles! Win the race and get the flag!
For this challenge, we got first blood! Whoop whoop!
We are given a binary. When we run it, we are asked to first choose a car from the list, fill our name, occupation and address. It looks like this:
➜ racing_cars ./racing_cars ================================== Welcome to the Incredibles ================================== To compete in the race you need to first buy a car!...
The CTF was m0leCon CTF 2022 Teaser. It was a qualifier for onsite finals in Torino. Our team got fifth place and qualified! Yay!
pwn dirtyRAT Author: @Gaaat
Description: I bought this backdoor from some hacking/carding group on Telegram but I’m starting to suspect that I have been scammed… Can anyone help me access the only file I really need?
nc dirtyrat.challs.m0lecon.it 10010
We were given a binary and the source code....
Misc 🔥 Kalk 🔥 Author: null
Description: I heard you needed a new calculator for your math course? Why buy a new one when you can just use my Calculator-as-a-Service instead!
nc io.ept.gg 30046
We get a Python script to download:
#!/usr/bin/env python3 import dis import os class Math(dict): def __init__(self): self.e = 0 self.pi = 0 def kalk(src, locals): if '=' in src: co = compile(src, "kalk", "single") for opc in dis....