Hi, after a long time I thought I would do something about ASLR Brutforcing.
21 posts tagged with "stack"
View All TagsHow to write a simple ROP-Chain
Hi, in line with the last post of mine, today I would like to talk about ROP or ROP-Chain.
How to write a ret2libc Exploit
Hi, today in this post I want to show how to make a Ret2libc exploit.
ASM x86 – Interrupts
Hi, in the seventh and last part of my x86 assembler series, I want to talk about interrupts.
ASM x86 – Functions and Calls
Hi, since I haven't written anything for a while (new project), I wanted to continue the x86 assembler series today.
ASM x86 – Stack operations
Hi, in the fifth part of my x86 assembler series, I would like to talk about the stack, because we will need the stack a lot later.
What are Graphs? – Part 7 Dijkstra
Hi, in the seventh and last part of my graph series, I want to talk about Dijkstra's algorithm. We have programmed Kruskal in Python in the sixth part. Now it's time to move on to Dijkstra.
What are Graphs? – Part 5 Prim
Hi, in the fifth part of my graph series, I want to talk about the Prim algorithm. In the fourth part, we programmed the breadth-first search in Python.
What are Graphs? - Part 6 Kruskal
Hi, in the sixth part of my graph series, I want to talk about the Kruskal algorithm. We have programmed Prim in Python in the fifth part. Now it's time for Kruskal.
What are Graphs? – Part 3 DFS
Hi, in the third part of my graph series, I want to talk about the search algorithms. We have programmed the graph in Python in the second part. Now it goes to the search algorithms. Each search algorithm will be discussed in separate posts.