A penetration tester is performing a test against a web application. The rules of engagement prohibit any denial of service (DoS) attacks. Which of the following actions is most likely prohibited by this restriction?
Trap 1: Performing a SQL injection that deletes a table
Deleting a table is destructive but not necessarily DoS; it's more of a data integrity issue.
Trap 2: Exploiting a file upload vulnerability to upload a web shell
Uploading a web shell is not DoS.
Trap 3: Running a directory brute-force tool
Directory brute-forcing does not typically cause DoS.
- A
Performing a SQL injection that deletes a table
Why wrong: Deleting a table is destructive but not necessarily DoS; it's more of a data integrity issue.
- B
Exploiting a file upload vulnerability to upload a web shell
Why wrong: Uploading a web shell is not DoS.
- C
Using a tool to send thousands of requests to overwhelm the server
Overwhelming the server is a DoS attack, explicitly prohibited.
- D
Running a directory brute-force tool
Why wrong: Directory brute-forcing does not typically cause DoS.