My need is to dynamically analyse a c program for its buffer overflow condition. I'm doing my code in python. For this I need to run the c program through python which is done by subprocess module in python. I found it from the link given below subproces
Now i need to insert inaccessible page after each allocated buffer, so that when the buffer is overflowed it will throw an error. How to insert an inaccessible page like that. Can anyone help me? Im doing in windows 8.1 and python 2.7
thanks in advance