Skip to content
Advertisement

Self modifying code always segmentation faults on Linux

i found an article about self modifying code and tried to do some examples, but i get always segmentation faults. As fas as i can understand, there is a violation in memory permissions. The code segment is (r)ead/e(x)ecute and so the attempt of writting results to this fault. Is there a way to test the program either by changing the memory permissions at runtime or before? I’m using linux and the example is written in GAS assembly.

JavaScript

so after modification suggested by osgx here is a working code.(Actually if you assemble&link&run it crashes but if you watch using gdb it does modifies its code!)

JavaScript

Advertisement

Answer

You should to change memory access permissions in runtime.

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement