InILLUMINATIONbyMohit MishraMemory Allocation: What Happens When You Push the Limits?Your Program Crashed, But You Have Tons of RAM Left?! Here’s Why.Sep 23
Andrey KarpovWhy it is bad idea to check result of malloc call with assertThe pointer returned by malloc needs to be checked before use. Using the assert macro to check the pointer would be wrong. In this article…Feb 201
InInfoSec Write-upsby+Ch0pin🕷️The toddler’s introduction to Heap exploitation — Overflows(Part 3)In the previous parts (1, 2) we discussed about the heap structure and we tried to simplify these concepts using a real life example. You…Mar 23, 20221Mar 23, 20221
Gabriel BarberiniProgramming paradigms — part 2These notes are meant to give the reader the fundamentals to follow what is covered under Stanford CS107 Programming paradigms.Aug 18Aug 18
InILLUMINATIONbyMohit MishraMemory Allocation: What Happens When You Push the Limits?Your Program Crashed, But You Have Tons of RAM Left?! Here’s Why.Sep 23
Andrey KarpovWhy it is bad idea to check result of malloc call with assertThe pointer returned by malloc needs to be checked before use. Using the assert macro to check the pointer would be wrong. In this article…Feb 201
InInfoSec Write-upsby+Ch0pin🕷️The toddler’s introduction to Heap exploitation — Overflows(Part 3)In the previous parts (1, 2) we discussed about the heap structure and we tried to simplify these concepts using a real life example. You…Mar 23, 20221
Gabriel BarberiniProgramming paradigms — part 2These notes are meant to give the reader the fundamentals to follow what is covered under Stanford CS107 Programming paradigms.Aug 18
Inmotive-engbyDaniel DesmeulesWe Solved Our Rails Memory Leaks With jemallocWe were preemptively restarting the Puma processes on our Ruby on Rails system to prevent them from running out of memory… until jemalloc.Feb 14, 20222
Future FanaticDynamic Memory Allocation with malloc() in CIn the world of C programming, managing memory efficiently is crucial for crafting robust and scalable applications. Dynamic memory…Mar 12
zihanMalloc in C, for int * and char *Malloc is your friend. Malloc, aka m-emory alloc-ation, allows you to provide memory for your variables when the size of your variables in…Apr 24, 2021