Valid 312-38 Dumps shared by ExamDiscuss.com for Helping Passing 312-38 Exam! ExamDiscuss.com now offer the newest 312-38 exam dumps, the ExamDiscuss.com 312-38 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com 312-38 dumps with Test Engine here:
John works as a C programmer. He develops the following C program: #include <stdlib.h> #include <stdio.h> #include <string.h> int buffer(char *str) { char buffer1[10]; strcpy(buffer1, str); return 1; } int main(int argc, char *argv[]) { buffer (argv[1]); printf("Executed\n"); return 1; } His program is vulnerable to a __________ attack.
Correct Answer: C
This program takes a user-supplied string and copies it into 'buffer1', which can hold up to 10 bytes of data. If a user sends more than 10 bytes, it would result in a buffer overflow.