EvilBox-One Vulnerability Analysis and Exploitation
Target machine: https://download.vulnhub.com/evilbox/EvilBox---One.ova
MD5 checksum: c3a65197b891713731e6bb791d7ad259
Verification commands:
cmd: certutil -hashfile file\_path MD5
powershell: Get-FileHash file\_path -Algorithm MD5 | Format-List
VirtualBox required
Network configuration: Host-Only
Network setup guide: https://www.cnblogs.com ...
Posted on Sat, 16 May 2026 11:53:34 +0000 by ThisIsMyName
Understanding the C Preprocessor: Macros, Conditional Compilation, and File Inclusion
Predefined tokens
__FILE__ // current source filename
__LINE__ // current line number
__DATE__ // compilation date "Mmm dd yyyy"
__TIME__ // compilation time "hh:mm:ss"
__STDC__ // 1 if the compiler conforms to ISO C
Simple textual substitution
#define forever for (;;)
#define CASE break; case
#define reg r ...
Posted on Wed, 13 May 2026 05:48:26 +0000 by dancing dragon