diff --git a/lib/modules/powershell/management/get_domain_sid.py b/lib/modules/powershell/management/get_domain_sid.py index f8550a607..ad99e6bf3 100644 --- a/lib/modules/powershell/management/get_domain_sid.py +++ b/lib/modules/powershell/management/get_domain_sid.py @@ -15,7 +15,7 @@ def __init__(self, mainMenu, params=[]): 'Author': ['@harmj0y'], - 'Description': ('Returns the SID for the current of specified domain.'), + 'Description': ('Returns the SID for the current or specified domain.'), 'Software': '', @@ -93,6 +93,7 @@ def generate(self, obfuscate=False, obfuscationCommand=""): scriptEnd += " -" + str(option) + " " + str(values['Value']) scriptEnd += ' | Out-String | %{$_ + \"`n\"};"`n'+str(moduleName)+' completed!"' + script += scriptEnd if obfuscate: script = helpers.obfuscate(self.mainMenu.installPath, psScript=script, obfuscationCommand=obfuscationCommand)