-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathwinrm.py
35 lines (30 loc) · 1.27 KB
/
winrm.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
class CMEModule:
"""
Enable/Disable WinRM service
Module by Eric Labrador
"""
name = 'winrm'
description = 'Enable/Disable WinRM service'
supported_protocols = ['smb']
opsec_safe = True
multiple_hosts = True
def options(self, context, module_options):
'''
ACTION Enable/Disable WinRM service (choices: enable, disable)
'''
if not 'ACTION' in module_options:
context.log.error('ACTION option not specified!')
exit(1)
if module_options['ACTION'].lower() not in ['enable', 'disable']:
context.log.error('Invalid value for ACTION option!')
exit(1)
self.action = module_options['ACTION'].lower()
def on_admin_login(self, context, connection):
if self.action == 'enable':
enable_winrm_command = 'powershell.exe "Enable-PSRemoting -Force"'
connection.execute(enable_winrm_command, True).split("\r\n")
context.log.highlight('WinRM enabled successfully')
elif self.action == 'disable':
disable_winrm_command = 'powershell.exe "Stop-Service WinRM"'
connection.execute(disable_winrm_command, True).split("\r\n")
context.log.highlight('WinRM disabled successfully')