mirror of https://github.com/flysand7/ciabatta.git
16 lines
363 B
C
16 lines
363 B
C
|
|
u64 __security_cookie;
|
|
|
|
void __security_init_cookie() {
|
|
// They say it's a random number so I generated
|
|
// one using numbergenerator.org
|
|
__security_cookie = 0xb26e04cc62ba48aULL;
|
|
}
|
|
|
|
void __security_check_cookie(u64 retrieved) {
|
|
if(__security_cookie != retrieved) {
|
|
// printf("Bro you've got a buffer overrun\n");
|
|
abort();
|
|
}
|
|
}
|