Question: Rewrite the function shown in the following program written in C and modify it using two different approaches so that it is no longer

Rewrite the function shown in the following program written in C and 

Rewrite the function shown in the following program written in C and modify it using two different approaches so that it is no longer vulnerable to a stack buffer overflow. void hello(char *tag) { char imp[16]; printf("Enter value for %s: ", tag); gets (inp); printf("Hello your %s is %s ", tag, inp);

Step by Step Solution

3.37 Rating (147 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

The prompt asks to rewrite the function hello to prevent it from being vulnerable to a stack buffer overflow The gets function is dangerous because it takes a character array as input and continues re... View full answer

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 Programming Questions!