remove lines used for debug

This commit is contained in:
AlessandroZ 2016-11-18 18:22:28 +01:00
parent 7aebdb55b6
commit 749357c4c1
1 changed files with 5 additions and 7 deletions

View File

@ -4,7 +4,6 @@ import os
import re
from modules.lib.windows.powershell_upload import execute_powershell_script
from pupylib.utils.credentials import Credentials
from pupylib.utils.rpyc_utils import redirected_stdio
__class_name__="Mimikatz_Powershell"
ROOT=os.path.abspath(os.path.join(os.path.dirname(__file__),".."))
@ -32,7 +31,6 @@ Invoke-Mimikatz -Command "privilege::debug exit" -ComputerName "computer1"
# for windows 10, if the UseLogonCredential registry is not present or disable (equal to 0), not plaintext password can be retrieved using mimikatz.
if args.wdigest:
self.client.load_package("pupwinutils.wdigest")
with redirected_stdio(self.client.conn):
ok, message = self.client.conn.modules["pupwinutils.wdigest"].wdigest(args.wdigest)
if ok:
self.success(message)