PowerShellEmpire / PowerTools

PowerTools is a collection of PowerShell projects with a focus on offensive operations.
Other
2.06k stars 813 forks source link

Changed Parsing Method in Invoke-MassMimikatz #11

Closed enigma0x3 closed 9 years ago

enigma0x3 commented 9 years ago

Updated the method that the Parse-Mimikatz function uses to parse through the Mimikatz output. Currently, it uses -match to search for the sections within the output. -match is limited to the first match and stops when it finds it, meaning it won't display other credentials in the Mimikatz output.

I updated that function to use Select-String instead, which will show all matches instead of the first one. The two images show a before and after of the output. currently afterupdate

HarmJ0y commented 9 years ago

Thanks d00d!

enigma0x3 commented 9 years ago

Np!