#Data base listing common security problems
!NAME: security data base
!TARGET: security
!TYPE: func

#Strings:
strcpy		critical	no handling of buffer overflows
strcat		critical	no handling of buffer overflows
strcmp		maybe		may run over end of buffer in case of not terminated string
strdup		maybe		may run over end of buffer in case of not terminated string
strlen		maybe		may run over end of buffer in case of not terminated string
strcasecmp	maybe		may run over end of buffer in case of not terminated string

#Memory:
bcopy		critical	interface not clear
bcmp		critical	interface not clear

#printf and friends:
sprintf		critical	no handling of buffer overflows

sscanf		maybe		often return value not checked
fscanf		maybe		often return value not checked

#other sndio:
gets		fail		no handling of buffer overflows

#Work with strings and numbers
atoi		likely
atol		likely
atoll		likely
atoq		likely

#ll
