Removed warning if powershell is not installed

main
byt3bl33d3r 2017-06-26 01:19:04 -06:00
parent 11280c4ab0
commit d3a50afbfc
2 changed files with 0 additions and 6 deletions

View File

@ -18,9 +18,6 @@ class mssql(connection):
self.domain = None
self.hash = None
if not is_powershell_installed():
print highlight('[!] PowerShell not found and/or not installed, advanced PowerShell script obfuscation will be disabled!', 'red')
connection.__init__(self, args, db , host)
@staticmethod

View File

@ -106,9 +106,6 @@ class smb(connection):
self.signing = False
self.smb_share_name = smb_share_name
if not is_powershell_installed():
print highlight('[!] PowerShell not found and/or not installed, advanced PowerShell script obfuscation will be disabled!', 'red')
connection.__init__(self, args, db, host)
@staticmethod