I would like to know what is the "mode" column in pmap output. I know it describes memory protection (like read-write-execute). But as far as I know on x86 memory pages can only be write-enabled or read-and-execute-enabled. And why despite the fact that the stack is marked rw--- (no execution) man (under certain circumstances) is able to perform buffer-overflow attack which needs execution of code on the stack?

link|improve this question
feedback

1 Answer

stack is marked with rwx. following shows the result on my system.

Address           Kbytes     RSS    Anon  Locked Mode   Mapping
0000000000400000    4728       -       -       - r-x--  photod
0000000000a9e000     176       -       -       - rw---  photod
0000000000aca000      88       -       -       - rw---    [ anon ]
0000000012ecc000  107968       -       -       - rw---    [ anon ]
0000000040450000       4       -       -       - -----    [ anon ]
0000000040451000    1024       -       -       - rwx--    [ anon ]
00000000405a8000       4       -       -       - -----    [ anon ]
**00000000405a9000     496       -       -       - rwx--    [ anon ]**
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.