Cpp Coding Standards/SECURITY
From Apache OpenOffice Wiki
< Cpp Coding Standards(Redirected from Cpp Coding Standards/Security)
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
Security (SECURITY)
Some errors may be entry points for malicious software.
No Unsafe Functions (UnsafeFunc)
Don't use functions that are known to have security issues (strcpy etc.) -> Details
Validate Input (ValInput)
Validate all input coming from external. -> Details
No Buffer Overflows (BuffOver)
Check range and validity of buffers. -> Details
No Integer Overflows (IntOver)
Be aware that integers have limited range. -> Details