mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-14 06:12:01 +01:00
8b0682644e
We haven't exposed gets(3) in a long time, rip out __gets_chk before it's too late and something builds a gets(3) user with it enabled.
27 lines
315 B
Plaintext
27 lines
315 B
Plaintext
/*
|
|
*/
|
|
|
|
LIBSSP_1.0 {
|
|
__chk_fail;
|
|
__stack_chk_fail;
|
|
__stack_chk_guard;
|
|
|
|
__memcpy_chk;
|
|
__memset_chk;
|
|
__snprintf_chk;
|
|
__sprintf_chk;
|
|
__stpcpy_chk;
|
|
__strcat_chk;
|
|
__strcpy_chk;
|
|
__strncat_chk;
|
|
__strncpy_chk;
|
|
__vsnprintf_chk;
|
|
__vsprintf_chk;
|
|
};
|
|
|
|
LIBSSP_1.1 {
|
|
__fgets_chk;
|
|
__memmove_chk;
|
|
__stpncpy_chk;
|
|
};
|