#include void our_strcpy(char *dest, char *source){ while(*dest++ = *source++); } void vuln(){ char *rabbit = "The rabbit went be\x10\x52\x55\x55\x55\x55\x01\x01\xe1\x51\x55\x55\x55\x55";//d the computer and ate all the cords"; char dest[10]; our_strcpy(dest, rabbit); printf("dest = %s\n", dest); } int main(){ int canary = 421; vuln(); printf("Skip this\n"); printf("canary = %d\n", canary); return 0; }