Free Top CompTIA Pentest+ PT0-003 Actual Exam Questions - Question 10 Discussion

Question No. 10

During an assessment, a penetration tester sends the following request:

POST /services/v1/users/create HTTP/1.1

Host: target-application.com Content-Type:

application/json Content-Length: [dynamic]

Authorization: Bearer (FUZZ)

Which of the following attacks is the penetration tester performing?

Select one option, then reveal solution.
US
SR
Sam R.
2026-02-21

B/D? The request targets an API endpoint with a fuzzed token, which fits API abuse. But if the tester aims to exploit token weaknesses to gain higher access, it edges toward privilege escalation.

0
SR
Sam R.
2026-02-17

B fuzzing the Authorization header is classic API abuse, trying to find weak tokens or bypass controls. It’s not about server-side request forgery or directory traversal since the path is straightforward.

0
SR
Sam R.
2026-02-16

Option B makes sense here because the tester is fuzzing the Authorization token in the header, which typically targets API access controls to find weaknesses. It’s not really about directory traversal since the path looks legit, and it’s not SSRF because there’s no indication of the server making an outgoing request. Privilege escalation would require a step further, like trying to use a valid token to gain higher rights, but this looks more like probing the API’s authentication mechanism itself.

0
OB
Osama B.
2026-02-13

Maybe B, since fuzzing the Authorization token points to testing API access controls.

0
MV
Marco V.
2026-01-21

B. The tester is fuzzing the Authorization header with different tokens to find flaws in API access control, which fits API abuse better than the other options.

0
MQ
Mark Q.
2026-01-15

B, looks like testing API endpoint with different tokens for abuse.

0