Question: note: the full code is not given for this question just the function The following function is called in a privileged program. The argument str
note: the full code is not given for this question just the function
The following function is called in a privileged program. The argument str points to a string that is entirely provided by users (the size of the string is up to 300 bytes). When this function is invoked, the address of the buffer array is 0xAABB0010, while the return address is stored in 0xAABB0050. Please write down the string that you would feed into the program, so when this string is copied to buffer and when the bof()function returns, the privileged program will run your code. In your answer, you dont need to write down the injected code, but the offsets of the key elements in your string need to be correct. Note: there is a trap in this problem; some people may be lucky and step over it, but some people may fall into it. Be careful. (10pt)
int bof(char *str)
{ char buffer[24];
strcpy(buffer,str);
return 1;
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
