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