Skip to content

Instantly share code, notes, and snippets.

View jdabtieu's full-sized avatar

Jonathan Wu jdabtieu

View GitHub Profile
@jdabtieu
jdabtieu / template.asm
Last active February 3, 2024 19:39
64-bit Assembly Competitive Programming template with fast IO (minified version)
section .text
global _start
; int readint()
; byte _read_buf()
; void printint(int num) --> edi
; void newline()
; void printspace()
; void _write_buf(char *buf, int count) --> rdi, esi * max of BUF_SIZE characters (default 65536) at once
@kaftejiman
kaftejiman / ret2csu.md
Last active March 22, 2024 23:34
ret2csu exploitation technique ROP pwn

ret2csu

I wanted to make a clean and simple explanation of ret2csu exploitation technique as I didnt get it easily with the ressources I found on google. As far as my understanding goes. You should take it with a grain of salt.

Tests carried on a AMD64 Linux Ubuntu.

Table of Contents