/usr/share/doc/python-impacket/examples/services.py is in python-impacket 0.9.10-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 | #!/usr/bin/python
# Copyright (c) 2003-2012 CORE Security Technologies
#
# This software is provided under under a slightly modified version
# of the Apache Software License. See the accompanying LICENSE file
# for more information.
#
# $Id: services.py 593 2012-07-11 16:48:20Z bethus@gmail.com $
#
# SVCCTL services common functions for manipulating services
#
# Author:
# Alberto Solino
#
# Reference for:
# DCE/RPC.
# TODO:
# [ ] Check errors
# [ ] Add Creating a Service
import socket
import string
import sys
import types
import argparse
#import hexdump
from impacket import uuid, ntlm, version
from impacket.dcerpc import dcerpc_v4, dcerpc, transport, svcctl
class SVCCTL:
KNOWN_PROTOCOLS = {
'139/SMB': (r'ncacn_np:%s[\pipe\svcctl]', 139),
'445/SMB': (r'ncacn_np:%s[\pipe\svcctl]', 445),
'135/TCP': (r'ncacn_ip_tcp:%s', 135),
'135/UDP': (r'ncadg_ip_udp:%s', 135),
}
def __init__(self, username, password, protocol, domain='', hashes=None, service_name=None, action=None, display_name = None, binary_path = None):
if not protocol:
protocol = SVCCTL.KNOWN_PROTOCOLS.keys()
self.__username = username
self.__password = password
self.__protocol = [protocol]
self.__service_name = service_name
self.__display_name = display_name
self.__binary_path = binary_path
self.__action = action
self.__domain = domain
self.__lmhash = ''
self.__nthash = ''
if hashes is not None:
self.__lmhash, self.__nthash = hashes.split(':')
def run(self, addr):
# Try all requested protocols until one works.
for protocol in self.__protocol:
protodef = SVCCTL.KNOWN_PROTOCOLS[protocol]
port = protodef[1]
print "Trying protocol %s..." % protocol
stringbinding = protodef[0] % addr
rpctransport = transport.DCERPCTransportFactory(stringbinding)
rpctransport.set_dport(port)
if hasattr(rpctransport, 'set_credentials'):
# This method exists only for selected protocol sequences.
rpctransport.set_credentials(self.__username,self.__password, self.__domain, self.__lmhash, self.__nthash)
try:
self.doStuff(rpctransport)
except Exception, e:
print e
else:
# Got a response. No need for further iterations.
break
def doStuff(self, rpctransport):
# UDP only works over DCE/RPC version 4.
if isinstance(rpctransport, transport.UDPTransport):
dce = dcerpc_v4.DCERPC_v4(rpctransport)
else:
dce = dcerpc.DCERPC_v5(rpctransport)
#dce.set_credentials(self.__username, self.__password)
dce.connect()
#dce.set_max_fragment_size(1)
#dce.set_auth_level(ntlm.NTLM_AUTH_PKT_PRIVACY)
#dce.set_auth_level(ntlm.NTLM_AUTH_PKT_INTEGRITY)
dce.bind(svcctl.MSRPC_UUID_SVCCTL)
rpc = svcctl.DCERPCSvcCtl(dce)
ans = rpc.OpenSCManagerW()
scManagerHandle = ans['ContextHandle']
if self.__action.upper() != 'LIST' and self.__action.upper() != 'CREATE':
ans = rpc.OpenServiceW(scManagerHandle, self.__service_name.encode('utf-16le'))
serviceHandle = ans['ContextHandle']
if self.__action.upper() == 'START':
print "Starting service %s" % self.__service_name
rpc.StartServiceW(serviceHandle)
rpc.CloseServiceHandle(serviceHandle)
elif self.__action.upper() == 'STOP':
print "Stopping service %s" % self.__service_name
rpc.StopService(serviceHandle)
rpc.CloseServiceHandle(serviceHandle)
elif self.__action.upper() == 'DELETE':
print "Deleting service %s" % self.__service_name
rpc.DeleteService(serviceHandle)
rpc.CloseServiceHandle(serviceHandle)
elif self.__action.upper() == 'CONFIG':
print "Querying service config for %s" % self.__service_name
resp = rpc.QueryServiceConfigW(serviceHandle)
print "TYPE : %2d - " % resp['QueryConfig']['ServiceType'],
if resp['QueryConfig']['ServiceType'] & 0x1:
print "SERVICE_KERNLE_DRIVER ",
if resp['QueryConfig']['ServiceType'] & 0x2:
print "SERVICE_FILE_SYSTEM_DRIVER ",
if resp['QueryConfig']['ServiceType'] & 0x10:
print "SERVICE_WIN32_OWN_PROCESS ",
if resp['QueryConfig']['ServiceType'] & 0x20:
print "SERVICE_WIN32_SHARE_PROCESS ",
if resp['QueryConfig']['ServiceType'] & 0x100:
print "SERVICE_INTERACTIVE_PROCESS ",
print ""
print "START_TYPE : %2d - " % resp['QueryConfig']['StartType'],
if resp['QueryConfig']['StartType'] == 0x0:
print "BOOT START"
elif resp['QueryConfig']['StartType'] == 0x1:
print "SYSTEM START"
elif resp['QueryConfig']['StartType'] == 0x2:
print "AUTO START"
elif resp['QueryConfig']['StartType'] == 0x3:
print "DEMAND START"
elif resp['QueryConfig']['StartType'] == 0x4:
print "DISABLED"
else:
print "UNKOWN"
print "ERROR_CONTROL : %2d - " % resp['QueryConfig']['ErrorControl'],
if resp['QueryConfig']['ErrorControl'] == 0x0:
print "IGNORE"
elif resp['QueryConfig']['ErrorControl'] == 0x1:
print "NORMAL"
elif resp['QueryConfig']['ErrorControl'] == 0x2:
print "SEVERE"
elif resp['QueryConfig']['ErrorControl'] == 0x3:
print "CRITICAL"
else:
print "UNKOWN"
print "BINARY_PATH_NAME : %s" % resp['QueryConfig']['BinaryPathName'].decode('utf-16le')
print "LOAD_ORDER_GROUP : %s" % resp['QueryConfig']['LoadOrderGroup'].decode('utf-16le')
print "TAG : %d" % resp['QueryConfig']['TagID']
print "DISPLAY_NAME : %s" % resp['QueryConfig']['DisplayName'].decode('utf-16le')
print "DEPENDENCIES : %s" % resp['QueryConfig']['Dependencies'].decode('utf-16le').replace('/',' - ')
print "SERVICE_START_NAME: %s" % resp['QueryConfig']['ServiceStartName'].decode('utf-16le')
elif self.__action.upper() == 'STATUS':
print "Querying status for %s" % self.__service_name
resp = rpc.QueryServiceStatus(serviceHandle)
print "%30s - " % (self.__service_name),
state = resp['CurrentState']
if state == svcctl.SERVICE_CONTINUE_PENDING:
print "CONTINUE PENDING"
elif state == svcctl.SERVICE_PAUSE_PENDING:
print "PAUSE PENDING"
elif state == svcctl.SERVICE_PAUSED:
print "PAUSED"
elif state == svcctl.SERVICE_RUNNING:
print "RUNNING"
elif state == svcctl.SERVICE_START_PENDING:
print "START PENDING"
elif state == svcctl.SERVICE_STOP_PENDING:
print "STOP PENDING"
elif state == svcctl.SERVICE_STOPPED:
print "STOPPED"
else:
print "UNKOWN"
elif self.__action.upper() == 'LIST':
print "Listing services available on target"
#resp = rpc.EnumServicesStatusW(scManagerHandle, svcctl.SERVICE_WIN32_SHARE_PROCESS )
#resp = rpc.EnumServicesStatusW(scManagerHandle, svcctl.SERVICE_WIN32_OWN_PROCESS )
#resp = rpc.EnumServicesStatusW(scManagerHandle, serviceType = svcctl.SERVICE_FILE_SYSTEM_DRIVER, serviceState = svcctl.SERVICE_STATE_ALL )
resp = rpc.EnumServicesStatusW(scManagerHandle)
for i in range(len(resp)):
print "%30s - %70s - " % (resp[i]['ServiceName'].decode('utf-16'), resp[i]['DisplayName'].decode('utf-16')),
state = resp[i]['CurrentState']
if state == svcctl.SERVICE_CONTINUE_PENDING:
print "CONTINUE PENDING"
elif state == svcctl.SERVICE_PAUSE_PENDING:
print "PAUSE PENDING"
elif state == svcctl.SERVICE_PAUSED:
print "PAUSED"
elif state == svcctl.SERVICE_RUNNING:
print "RUNNING"
elif state == svcctl.SERVICE_START_PENDING:
print "START PENDING"
elif state == svcctl.SERVICE_STOP_PENDING:
print "STOP PENDING"
elif state == svcctl.SERVICE_STOPPED:
print "STOPPED"
else:
print "UNKOWN"
print "Total Services: %d" % len(resp)
elif self.__action.upper() == 'CREATE':
resp = rpc.CreateServiceW(scManagerHandle,self.__service_name.encode('utf-16le'), self.__display_name.encode('utf-16le'), self.__binary_path.encode('utf-16le'))
else:
print "Unknown action %s" % self.__action
rpc.CloseServiceHandle(scManagerHandle)
dce.disconnect()
return
# Process command-line arguments.
if __name__ == '__main__':
print version.BANNER
parser = argparse.ArgumentParser()
parser.add_argument('target', action='store', help='[[domain/]username[:password]@]<address>')
subparsers = parser.add_subparsers(help='actions', dest='action')
# A start command
start_parser = subparsers.add_parser('start', help='starts the service')
start_parser.add_argument('-name', action='store', required=True, help='service name')
# A stop command
stop_parser = subparsers.add_parser('stop', help='stops the service')
stop_parser.add_argument('-name', action='store', required=True, help='service name')
# A delete command
delete_parser = subparsers.add_parser('delete', help='deletes the service')
delete_parser.add_argument('-name', action='store', required=True, help='service name')
# A status command
status_parser = subparsers.add_parser('status', help='returns service status')
status_parser.add_argument('-name', action='store', required=True, help='service name')
# A config command
config_parser = subparsers.add_parser('config', help='returns service configuration')
config_parser.add_argument('-name', action='store', required=True, help='service name')
# A list command
list_parser = subparsers.add_parser('list', help='list available services')
# A create command
create_parser = subparsers.add_parser('create', help='create a service')
create_parser.add_argument('-name', action='store', required=True, help='service name')
create_parser.add_argument('-display', action='store', required=True, help='display name')
create_parser.add_argument('-path', action='store', required=True, help='binary path')
parser.add_argument('protocol', choices=SVCCTL.KNOWN_PROTOCOLS.keys(), nargs='?', default='445/SMB', help='transport protocol (default 445/SMB)')
group = parser.add_argument_group('authentication')
group.add_argument('-hashes', action="store", metavar = "LMHASH:NTHASH", help='NTLM hashes, format is LMHASH:NTHASH')
if len(sys.argv)==1:
parser.print_help()
sys.exit(1)
options = parser.parse_args()
import re
domain, username, password, address = re.compile('(?:(?:([^/@:]*)/)?([^@:]*)(?::([^@]*))?@)?(.*)').match(options.target).groups('')
try:
service_name = options.name
except:
service_name = None
if options.action.upper() == 'CREATE':
display_name = options.display
path = options.path
else:
display_name = None
path = None
if domain is None:
domain = ''
services = SVCCTL(username, password, options.protocol, domain, options.hashes, service_name , options.action.upper(), display_name, path)
try:
services.run(address)
except Exception, e:
print e
|