[c++] 보안 취약 에러 | scanf, strcpy

KIMHAJIN·2023년 3월 16일
0

error
'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.

scanf나 strcpy 등 함수가 보안 취약점을 가지고 있어서 오류가 발생할 때,

  1. 'scanf_s' , 'strcpy_s' 사용하기

  2. _CRT_SECURE_NO_WARNINGS 매크로 사용하기

#define _CRT_SECURE_NO_WARNINGS
profile
Good day

0개의 댓글