This is the eighth part of the Custom memory allocation series. For your convenience you can find other parts in the table of contents in Part 1 — Allocating object on a stack Today we are going to revisit an Unsafe list example using .NET Core. Since I use x64 edition, I need to adjust … Continue reading Custom memory allocation in C# Part 8 — Unsafe list in .NET Core x64
Tag: x86
Custom memory allocation in C# Part 7 — Stack allocation once again
This is the seventh part of the Custom memory allocation series. For your convenience you can find other parts in the table of contents in Part 1 — Allocating object on a stack We know how to allocate object on a stack, however, we did this in .NET Framework. Can we do the same in … Continue reading Custom memory allocation in C# Part 7 — Stack allocation once again
.NET Inside Out Part 8 — Handling Stack Overflow Exception in C# with VEH
This is the eighth part of the .NET Inside Out series. For your convenience you can find other parts in the table of contents in Part 1 – Virtual and non-virtual calls in C# If you are interested in the topic see the talk page Today we are going to swallow Stack Overflow Exception in … Continue reading .NET Inside Out Part 8 — Handling Stack Overflow Exception in C# with VEH
DLL Injection Part 1 — Registry
This is the first part of the DLL Injection series. For your convenience you can find other parts using the links below : Part 1 — Registry Part 2 — Hooks Part 3 — Creating remote thread Part 4 — Injecting managed DLL Part 5 — Hacking Minesweeper Part 6 — Injecting managed code into … Continue reading DLL Injection Part 1 — Registry