The App may contain banned API(s). These API(s) are insecure and must not be used.
ID |
objectivec.code.ios_banned_api |
Severity |
high |
Resource |
Code |
Language |
Objective-C |
Rationale
The App may contain banned API(s). These API(s) are insecure and must not be used.
The following code illustrates a vulnerable pattern detected by this rule:
void badStrcpy() {
char dest[50];
char src[] = "Hello";
// VULNERABLE: The App may contain banned API(s). These API(s) are insecure and must not be used.
strcpy(dest, src);
}