312-50v13 Exam QuestionsBrowse all questions from this exam

312-50v13 Exam - Question 2


John is investigating web-application firewall logs and observers that someone is attempting to inject the following:

What type of attack is this?

Show Answer
Correct Answer:

Discussion

6 comments
Sign in to comment
OsanyindoroOption: B
Jan 18, 2025

The answer is B (buffer overflow) Reasons: The buffer buff is defined to hold 10 elements (indices 0 through 9). Writing to buff[10] attempts to access memory beyond the allocated buffer size. This can lead to overwriting adjacent memory, potentially corrupting data, crashing the application, or enabling the execution of malicious code.

BooictOption: A
Jan 16, 2025

SQL injection attack involves inserting malicious SQL code into a web application's input fields to manipulate the database

BooictOption: B
Jan 16, 2025

the answer is B and not A. Ignore my previous answer

nicejobOption: B
Feb 4, 2025

buffer overflow, it not possible is sqli

n19htf4llOption: B
Apr 17, 2025

'buff' is a 10 characters long string (from 0 to 9) and the user is trying to write the 11th position, which is over its last position. So the right answer is B. overflow

Jasper_NgOption: B
Apr 28, 2025

In C, an array like char buff[10] has valid indices from 0 to 9 — that's 10 elements. buff[10] is out of bounds — it's the 11th element, which does not exist.