Question: The following code fragment shows how to protect against buffer overflow using a stack guard: int secret = rand ( ) ; void protectMe (

The following code fragment shows how to protect against buffer overflow using a stack guard:
int secret = rand();
void protectMe(char * unsecured){
int /*declare me*/;
/initme*/=/*my value*/;
/* a buffer is declared as an array of 12 characters*/
strcpy(buffer unsecured)
/*.....*/
If (guard != secret)
exit(1);
return;
}
Provide the correct identifiers for the folllowing missing code above:
declare me:
init me:
my value:

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!