You are here |
jens.mooseyard.com | ||
| | | |
blog.nuculabs.de
|
|
| | | | MalwareTech's string challenges are so easy that everyone can do them. I'm writing this article in order to help those who struggle with them, but of course you could cheat and use a debugger. The challenges can be found here: https://www.malwaretech.com/beginner-malware-reversing-challenges. The first two challenge are so easy that I'm not even bothering writing too much about them. Open strings1.exe into BN then right click data pointer twice -> FLAG. | |
| | | |
qsantos.fr
|
|
| | | | This article will quickly explain the Rust types [T; N], &[T; N], &[T], Vec, &Vec with C code, and what the str, &str, String, OsString and CString add. Arrays and Slices Rust C [T; N] (array)Example: [i32; 100]Allocated on the stack T[N]Example: int[100]Allocated on the stack &[T; N] (array reference)Example: &[i32; 100]N is tracked at ... Continue reading Rust Strings for C Programmers ? | |
| | | |
hermanschaaf.com
|
|
| | | | Benchmarks of various approaches | |
| | | |
ericniebler.com
|
|
| | This post describes a fun piece of hackery that went into my Range-v3 library recently: a Python-like range slicing facility with cute, short syntax. It's nothing earth-shattering from a func... |