mirror of
https://github.com/The-Art-of-Hacking/h4cker
synced 2024-11-22 19:03:04 +00:00
14 lines
259 B
C
14 lines
259 B
C
|
#include <string.h>
|
||
|
void omarsucks(char *str)
|
||
|
{
|
||
|
char buffer[12];
|
||
|
/* The following strcpy will result in buffer overflow */
|
||
|
strcpy(buffer, str);
|
||
|
}
|
||
|
int main()
|
||
|
{
|
||
|
char *str = "This text is indeed a lot bigger or longer than 12";
|
||
|
omarsucks(str);
|
||
|
return 1;
|
||
|
}
|