Explore >> Select a destination


You are here

xcellerator.github.io
| | www.da.vidbuchanan.co.uk
6.3 parsecs away

Travel
| | [AI summary] The CTF writeup details the process of solving a cryptographic challenge involving AES key recovery through side-channel attacks. The key was recovered by analyzing timing leaks from the AES decryption process, specifically the doSboxInv function's execution time. The recovered round 10 key was then used to invert the AES key schedule to obtain the original encryption key, which was the flag. The writeup also discusses the challenges of directly recovering the original key due to timing noise and the importance of using statistical correlation to identify the correct key.
| | notes.eatonphil.com
5.2 parsecs away

Travel
| | Emulating linux/AMD64 userland: interpreting an ELF binary
| | timelessname.com
6.0 parsecs away

Travel
| | [AI summary] The article details the author's process of creating the smallest possible x86 ELF binary that outputs 'Hello World' on Ubuntu Linux, involving C, assembly, and hex editing to minimize the file size.
| | wsummerhill.github.io
8.4 parsecs away

Travel
| I'm going to cover an example of how to perform a DLL sideload from start to finish using a C++ payload and a legitimate DLL commonly found on disk. The specific technique covered is known as "DLL proxying" where we use the legitimate DLL along with a malicious DLL which exports all the functions that the legit DLL to execute properly.