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.
It was mentioned early on that the title might be a wordplay on the recent Dirty Pipe vulnerability. But we disregarded the idea for a while....
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....