11.0k views
4 votes
The exploitation of a buffer-overrun vulnerability in an application will MOST likely lead to:_________

A. Arbitrary code execution
B. Resource exhaustion
C. Exposure of authentication credentials
D. De-referencing of memory pointers

User Afreeland
by
4.8k points

1 Answer

3 votes

Answer:

A. Arbitrary code execution

Step-by-step explanation:

A buffer-overrun, also known as buffer overflow occurs when a programmer makes an error during coding, which could make his system easily susceptible to attacks from a hacker. The root cause of this problem is an overflow of data in a buffer, and programs that are written in C and C+ + are more likely to be affected by this problem. When a buffer-overrun occurs, it would most likely lead to arbitrary code execution.

Arbitrary code execution is an uncontrolled and unrestricted coding by the attacker which alters the original coding. The attacker could input more information into the coding, which alters the original information and which would make the application porous and accessible by just anyone. It is important that programmers run regular tests on their programs, so as to detect any coding errors.

User Jarchuleta
by
4.6k points