Removed warning if powershell is not installed
parent
11280c4ab0
commit
d3a50afbfc
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue