I'm saving my data in the executable file of the program. I copy it to a temporary file, overwrite a part starting at a 'magic string' and rename it to the original. I know this is a bad idea, but I'm doing it just for experimenting.

I got everything to work so far, except for that I have to re-enable "Allow running as an executable" each time the file is replaced. What ways are there to solve this?

Additional information: I use linux.

link|improve this question

62% accept rate
you can add it to the make file or a script depending on what kind of scripting you know , to chmod it how you see fit when needed – pyCthon Feb 15 at 2:22
1  
Just so I get this straight: you're copying an executable image elsewhere, looking for a certain pattern, modifying the binary image in place, and then plan on executing it again? This can ONLY end in tears. – Chris Feb 15 at 2:23
@Chris I know; it's much better to just store the data somewhere else. Imagine what would happen if the PC crashed while modifying the file. – RPFeltz Feb 15 at 2:27
do you want to run "chmod +x <filename>" from inside your C++ program ? – alfasin Feb 15 at 2:35
Or worse, imagine what might happen if it didn't. – Beta Feb 15 at 2:35
feedback

1 Answer

up vote 3 down vote accepted

If you include stdlib.h, you can use system("command").

Try it:

system("chmod 755 yourExeFile")
link|improve this answer
Use 755 if you prefer not getting hacked. – David Grayson Feb 15 at 6:06
That did the job! Very simple too. – RPFeltz Feb 15 at 15:51
feedback

Your Answer

 
or
required, but never shown

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