From 48f5cbcdc0615fc619d112e4d731ad659091ae9e Mon Sep 17 00:00:00 2001 From: whx Date: Mon, 12 Dec 2022 22:41:03 +0100 Subject: [PATCH] bump --- Exploits/Binaries/Format String.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Exploits/Binaries/Format String.md b/Exploits/Binaries/Format String.md index ef739fd..eda936e 100644 --- a/Exploits/Binaries/Format String.md +++ b/Exploits/Binaries/Format String.md @@ -5,14 +5,14 @@ ## Parameters -|Parameters |Type |Passed as +|Parameters |Type |Passed as | |-----------------|-------------------------------------------|-----------| -%d decimal (int) value -%u unsigned decimal (unsigned int) value -%x hexadecimal (unsigned int) value -%p hexadecimal (unsigned int), nice layout value -%s string ((const) (unsigned) char*) reference -%n write the number of bytes ypu put in, (*int) reference +| %d | decimal (int) | value | +| %u | unsigned decimal (unsigned int) | value | +| %x | hexadecimal (unsigned int) | value | +| %p | hexadecimal (unsigned int), nice layout | value | +| %s | string ((const) (unsigned) char*) | reference | +| %n | write the number of bytes ypu put in, (*int) | reference | ## Offset