PT0-002 Exam QuestionsBrowse all questions from this exam

PT0-002 Exam - Question 14


Which of the following describes the reason why a penetration tester would run the command sdelete mimikatz. * on a Windows server that the tester compromised?

Show Answer
Correct Answer: C

A penetration tester would run the command 'sdelete mimikatz.*' on a compromised Windows server to securely delete tools from the server. 'Sdelete' is a utility that securely deletes files by overwriting the existing data, thus making recovery difficult. 'Mimikatz' is a post-exploitation tool used to extract credentials and other sensitive information from a Windows system. By running this command, the tester ensures that all traces of Mimikatz and its related files are removed from the server to cover their tracks.

Discussion

13 comments
Sign in to comment
ManzerOption: C
Oct 10, 2022

sdelete is used to delete files and folders. This command would delete any folder with mimikatz.*

duckduckgooo
Dec 17, 2023

I like adding URL's to answers/tools for others or people that had to validate the answer (me). https://learn.microsoft.com/en-us/sysinternals/downloads/sdelete

petercornOption: C
Oct 19, 2022

Agree with Manzer

bromingsOption: C
Sep 24, 2024

SDelete is a command line utility that takes a number of options. In any given use, it allows you to delete one or more files and/or directories, or to cleanse the free space on a logical disk. SDelete accepts wild card characters as part of the directory or file specifier.

Masco
Nov 23, 2022

Correct Answer is C

nickwen007
Mar 9, 2023

The most likely reason why a penetration tester would run the command sdelete mimikatz.* on a Windows server is C. To remove tools from the server. This command can be used to securely delete any tools or malicious files that the tester may have installed while compromising the system, such as Mimikatz or any other malicious code.

cy_analystOption: C
Mar 26, 2023

The sdelete command is used to securely delete files or free space on a hard drive by overwriting them with random data. Mimikatz is a tool that can be used to extract sensitive information such as passwords from a compromised Windows system.

solutionzOption: C
Sep 24, 2024

The command `sdelete` is a command-line utility that can be used to securely delete files and cleanse free space on a disk in Windows. `Mimikatz` is a well-known tool used by attackers (and penetration testers) to extract plaintext passwords, hash, PIN code, and Kerberos tickets from memory. In the context of the given command `sdelete mimikatz.*`, the intention is to securely delete all files related to Mimikatz from the compromised server. So the correct answer to this question would be: C. To remove tools from the server.

nickwen007
Mar 9, 2023

SDelete is a command-line utility used to securely delete files, directories and registry entries. It can also be used to remove traces of Mimikatz, a tool used to manipulate Windows authentication mechanisms. To use SDelete to remove Mimikatz, you must enter the command "sdelete -p 1 mimikatz.*" in elevated command prompt. This will overwrite all files that contain the string "mimikatz" with random data, thus removing any trace of Mimikatz from your computer.

user009
Mar 26, 2023

The reason why a penetration tester would run the command sdelete mimikatz.* on a Windows server that the tester compromised is option C: To remove tools from the server. Explanation: Sdelete is a Windows command-line utility that securely deletes files and folders from a disk by overwriting the data with zeroes or random characters. Mimikatz is a post-exploitation tool that can be used to extract passwords and other sensitive information from a compromised Windows system. In this scenario, the penetration tester has compromised the Windows server and has used Mimikatz to extract sensitive information. The command sdelete mimikatz.* is used to securely delete the Mimikatz tool and any related files from the system to avoid leaving traces of the attack.

KingIT_ENG
Mar 16, 2023

CCCCCCCC

monkeyyyyyOption: C
Dec 23, 2023

vote for C

Etc_Shadow28000Option: C
Sep 24, 2024

The reason a penetration tester would run the command `sdelete mimikatz.*` on a Windows server that the tester compromised is: C. To remove tools from the server `sdelete` is a command-line utility that securely deletes files, making them unrecoverable. Running `sdelete mimikatz.*` would securely delete the Mimikatz tool and any related files from the server, helping to cover the tester's tracks by removing evidence of the tool's presence and use.

Practice_allOption: C
Jan 26, 2025

C. To remove tools from the server The command sdelete mimikatz.* uses SDelete (a secure delete tool from Sysinternals) to securely delete files related to Mimikatz, a post-exploitation tool commonly used to extract credentials from memory, dump password hashes, and more. The purpose of running this command is to ensure that traces of the tool are completely removed from the compromised server to cover the tester's tracks.