updated Invoke-Mimikatz.ps1 to a working version of latest win versions

This commit is contained in:
antonioCoco
2019-03-25 00:03:05 +01:00
parent 7b1db7bdb0
commit ecd41c8de0
3 changed files with 32 additions and 14 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
import sys
import os
sharpyshell_version='1.1.6'
sharpyshell_version='1.1.7'
header = '#SharPyShell v' + sharpyshell_version + ' - @splinter_code'
banner = """
+6 -3
View File
@@ -17,6 +17,12 @@ class Mimikatz(Module):
_exception_class = MimikatzModuleException
short_help = "Run an offline version of mimikatz directly in memory"
complete_help = r"""
Authors: @gentilkiwi @PowerShellMafia
Links: https://github.com/gentilkiwi/mimikatz
https://github.com/PowerShellMafia/PowerSploit/blob/4c7a2016fc7931cd37273c5d8e17b16d959867b3/Exfiltration/Invoke-Mimikatz.ps1
Credits: @phra
This module allows you to run mimikatz in a versatile way.
Within this module it is possible to run mimikatz in 2 different way:
'ps1': an obfuscated ps1 module will be uploaded to the server and get deobfuscated at runtime in memory;
@@ -25,9 +31,6 @@ class Mimikatz(Module):
The exe version will be just dropped as clear and could be catched by av scanners.
Exec_Type can be 'ps1' or 'exe'.
Source Code:
https://github.com/gentilkiwi/mimikatz
https://raw.githubusercontent.com/PowerShellMafia/PowerSploit/master/Exfiltration/Invoke-Mimikatz.ps1
Usage:
#mimikatz [exec_type] [username] [password] [domain] [custom_command]
File diff suppressed because one or more lines are too long