1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 15:57:45 +00:00

crash: Add "-X" option for attempting to execute non-executable memory

This commit is contained in:
Andreas Kling 2019-12-25 11:52:21 +01:00
parent ce5f7f6c07
commit 33efeaf71a
2 changed files with 17 additions and 1 deletions

View file

@ -30,6 +30,7 @@ kinds of crashes.
* `-S`: Make a syscall from writeable memory.
* `-x`: Read from recently freed memory. (Tests an opportunistic malloc guard.)
* `-y`: Write to recently freed memory. (Tests an opportunistic malloc guard.)
* `-X`: Attempt to execute non-executable memory. (Not mapped with PROT\_EXEC.)
## Examples