-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsamrsearch.py
358 lines (295 loc) · 15.8 KB
/
samrsearch.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
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
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
#!/usr/bin/env python
# Impacket - Collection of Python classes for working with network protocols.
#
# SECUREAUTH LABS. Copyright (C) 2021 SecureAuth Corporation. All rights reserved.
#
# This software is provided under a slightly modified version
# of the Apache Software License. See the accompanying LICENSE file
# for more information.
#
# Description:
# DCE/RPC SAMR dumper.
#
# Author:
# Javier Kohen
# Alberto Solino (@agsolino)
#
# Reference for:
# DCE/RPC for SAMR
#
from __future__ import division
from __future__ import print_function
import sys
import logging
import argparse
import codecs
from datetime import datetime
from impacket.examples import logger
from impacket.examples.utils import parse_target
from impacket import version
from impacket.nt_errors import STATUS_MORE_ENTRIES
from impacket.dcerpc.v5 import transport, samr
from impacket.dcerpc.v5.rpcrt import DCERPCException
from impacket.dcerpc.v5 import dtypes
from impacket.dcerpc.v5.ndr import NDR
class ListUsersException(Exception):
pass
class SAMRDump:
def __init__(self, username='', password='', domain='', hashes=None,
aesKey=None, doKerberos=False, kdcHost=None, port=445, csvOutput=False):
self.__username = username
self.__password = password
self.__domain = domain
self.__lmhash = ''
self.__nthash = ''
self.__aesKey = aesKey
self.__doKerberos = doKerberos
self.__kdcHost = kdcHost
self.__port = port
self.__csvOutput = csvOutput
if hashes is not None:
self.__lmhash, self.__nthash = hashes.split(':')
@staticmethod
def getUnixTime(t):
t -= 116444736000000000
t /= 10000000
return t
def dump(self, remoteName, remoteHost, username=None, groupname=None):
"""Dumps the list of users and shares registered present at
remoteName. remoteName is a valid host name or IP address.
"""
entries = []
logging.info('Retrieving endpoint list from %s' % remoteName)
stringbinding = r'ncacn_np:%s[\pipe\samr]' % remoteName
logging.debug('StringBinding %s' % stringbinding)
rpctransport = transport.DCERPCTransportFactory(stringbinding)
rpctransport.set_dport(self.__port)
rpctransport.setRemoteHost(remoteHost)
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, self.__aesKey)
rpctransport.set_kerberos(self.__doKerberos, self.__kdcHost)
try:
entries = self.__fetchList(rpctransport, username, groupname)
except Exception as e:
logging.critical(str(e))
# Display results.
if self.__csvOutput is True:
print(
'#Name,RID,FullName,PrimaryGroupId,BadPasswordCount,LogonCount,PasswordLastSet,PasswordDoesNotExpire,AccountIsDisabled,UserComment,ScriptPath')
for entry in entries:
(username, uid, user, rids, ridname) = entry
pwdLastSet = (user['PasswordLastSet']['HighPart'] << 32) + user['PasswordLastSet']['LowPart']
PasswordCanChange = (user['PasswordCanChange']['HighPart'] << 32) + user['PasswordCanChange']['LowPart']
PasswordMustChange = (user['PasswordMustChange']['HighPart'] << 32) + user['PasswordMustChange']['LowPart']
LastLogon = (user['LastLogon']['HighPart'] << 32) + user['LastLogon']['LowPart']
if pwdLastSet == 0:
pwdLastSet = '<never>'
else:
pwdLastSet = str(datetime.fromtimestamp(self.getUnixTime(pwdLastSet)))
pwCanChange = str(datetime.fromtimestamp(self.getUnixTime(PasswordCanChange)))
if LastLogon == 0:
UserLastLogon = '<never>'
else:
UserLastLogon = str(datetime.fromtimestamp(self.getUnixTime(LastLogon)))
try:
pwdMustChange = str(datetime.fromtimestamp(self.getUnixTime(PasswordMustChange)))
except Exception as e:
pwdMustChange = '<never>'
pass
if user['UserAccountControl'] & samr.USER_DONT_EXPIRE_PASSWORD:
dontExpire = 'True'
else:
dontExpire = 'False'
if user['UserAccountControl'] & samr.USER_ACCOUNT_DISABLED:
accountDisabled = 'True'
else:
accountDisabled = 'False'
if self.__csvOutput is True:
print('%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s' % (username, uid, user['FullName'], user['PrimaryGroupId'],
user['BadPasswordCount'], user['LogonCount'], pwdLastSet,
dontExpire, accountDisabled,
user['UserComment'].replace(',', '.'),
user['ScriptPath']))
else:
base = "%s (%d)" % (username, uid)
print(base + '/FullName:', user['FullName'])
print(base + '/UserComment:', user['UserComment'])
print(base + '/PrimaryGroupId:', user['PrimaryGroupId'])
print(base + '/BadPasswordCount:', user['BadPasswordCount'])
print(base + '/LogonCount(restart computer will reset value):', user['LogonCount'])
print(base + '/PasswordLastSet:', pwdLastSet)
print(base + '/PasswordCanChange:', pwCanChange)
print(base + '/UserLastLogon:', UserLastLogon)
print(base + '/ForcePasswordChange:', pwdMustChange)
print(base + '/PasswordDoesNotExpire:', dontExpire)
print(base + '/AccountIsDisabled:', accountDisabled)
print(base + '/ScriptPath:', user['ScriptPath'])
print("\n")
print(base + "/Domain Group Number: ")
for name in ridname['Element']:
name.dump()
print("\n")
if entries:
num = len(entries)
if 1 == num:
logging.info('Received one entry.')
else:
logging.info('Received %d entries.' % num)
else:
logging.info('No entries received.')
def __fetchList(self, rpctransport, username, groupname):
dce = rpctransport.get_dce_rpc()
entries = []
dce.connect()
dce.bind(samr.MSRPC_UUID_SAMR)
try:
resp = samr.hSamrConnect(dce)
serverHandle = resp['ServerHandle']
resp = samr.hSamrEnumerateDomainsInSamServer(dce, serverHandle)
domains = resp['Buffer']['Buffer']
print('Found domain(s):')
for domain in domains:
print(" . %s" % domain['Name'])
logging.info("Looking up users in domain %s" % domains[0]['Name'])
resp = samr.hSamrLookupDomainInSamServer(dce, serverHandle, domains[0]['Name'])
resp = samr.hSamrOpenDomain(dce, serverHandle=serverHandle, domainId=resp['DomainId'])
domainHandle = resp['DomainHandle']
status = STATUS_MORE_ENTRIES
enumerationContext = 0
while status == STATUS_MORE_ENTRIES:
# search user in domain
if username is not None:
userrid = []
userrid.append(username)
try:
resp = samr.hSamrLookupNamesInDomain(dce, domainHandle, userrid)
except Exception as e:
if str(e).find('STATUS_MORE_ENTRIES') >= 0:
pass
e.get_packet()
for __rid in resp['RelativeIds']['Element']:
r = samr.hSamrOpenUser(dce, domainHandle, samr.MAXIMUM_ALLOWED, __rid)
info = samr.hSamrQueryInformationUser2(dce, r['UserHandle'],
samr.USER_INFORMATION_CLASS.UserAllInformation)
sec = samr.hSamrQuerySecurityObject(dce, r['UserHandle'], dtypes.DACL_SECURITY_INFORMATION)
usergroup = samr.hSamrGetGroupsForUser(dce, r['UserHandle'])
rids = []
for rid in usergroup['Groups']['Groups']:
_rid = rid['RelativeId']
rids.append(_rid)
ridname = samr.hSamrLookupIdsInDomain(dce, domainHandle, rids)
intuid = int.from_bytes(__rid.getData(), 'little')
print(intuid)
entry = (username, intuid, info['Buffer']['All'], rids, ridname['Names'])
entries.append(entry)
samr.hSamrCloseHandle(dce, r['UserHandle'])
# search group in domain
elif groupname is not None:
grouprid = []
grouprid.append(groupname)
try:
resp = samr.hSamrLookupNamesInDomain(dce, domainHandle, grouprid)
except Exception as e:
if str(e).find('STATUS_MORE_ENTRIES') >= 0:
pass
e.get_packet()
for __rid in resp['RelativeIds']['Element']:
r = samr.hSamrOpenGroup(dce, domainHandle, samr.MAXIMUM_ALLOWED, __rid)
info = samr.hSamrGetMembersInGroup(dce, r['GroupHandle'])
rids = []
for rid in info['Members']['Members']:
rid = int.from_bytes(rid.getData(), 'little')
rids.append(rid)
ridname = samr.hSamrLookupIdsInDomain(dce, domainHandle, rids)
print("Users in %s : " % groupname)
for name in ridname['Names']['Element']:
name.dump()
print('\n')
# search all user in domain
else:
try:
resp = samr.hSamrEnumerateUsersInDomain(dce, domainHandle,
enumerationContext=enumerationContext)
except DCERPCException as e:
if str(e).find('STATUS_MORE_ENTRIES') < 0:
raise
resp = e.get_packet()
for user in resp['Buffer']['Buffer']:
r = samr.hSamrOpenUser(dce, domainHandle, samr.MAXIMUM_ALLOWED, user['RelativeId'])
print("Found user: %s, uid = %d" % (user['Name'], user['RelativeId']))
info = samr.hSamrQueryInformationUser2(dce, r['UserHandle'],
samr.USER_INFORMATION_CLASS.UserAllInformation)
sec = samr.hSamrQuerySecurityObject(dce, r['UserHandle'], dtypes.DACL_SECURITY_INFORMATION)
usergroup = samr.hSamrGetGroupsForUser(dce, r['UserHandle'])
rids = []
for rid in usergroup['Groups']['Groups']:
_rid = rid['RelativeId']
rids.append(_rid)
ridname = samr.hSamrLookupIdsInDomain(dce, domainHandle, rids)
entry = (user['Name'], user['RelativeId'], info['Buffer']['All'], rids, ridname['Names'])
entries.append(entry)
samr.hSamrCloseHandle(dce, r['UserHandle'])
enumerationContext = resp['EnumerationContext']
status = resp['ErrorCode']
except ListUsersException as e:
logging.critical("Error listing users: %s" % e)
dce.disconnect()
return entries
# Process command-line arguments.
if __name__ == '__main__':
# Explicitly changing the stdout encoding format
if sys.stdout.encoding is None:
# Output is redirected to a file
sys.stdout = codecs.getwriter('utf8')(sys.stdout)
parser = argparse.ArgumentParser(add_help=True, description="This script downloads the list of users for the "
"target system.")
parser.add_argument('target', action='store', help='[[domain/]username[:password]@]<targetName or address>')
parser.add_argument('-csv', action='store_true', help='Turn CSV output')
parser.add_argument('-ts', action='store_true', help='Adds timestamp to every logging output')
parser.add_argument('-debug', action='store_true', help='Turn DEBUG output ON')
parser.add_argument('-username', action='store', help='Username you want to search')
parser.add_argument('-groupname', action='store', help='Group you want to search')
group = parser.add_argument_group('connection')
group.add_argument('-dc-ip', action='store', metavar="ip address", help='IP Address of the domain controller. If '
'ommited it use the domain part (FQDN) specified in the target parameter')
group.add_argument('-target-ip', action='store', metavar="ip address", help='IP Address of the target machine. If '
'ommited it will use whatever was specified as target. This is useful when target is the NetBIOS '
'name and you cannot resolve it')
group.add_argument('-port', choices=['139', '445'], nargs='?', default='445', metavar="destination port",
help='Destination port to connect to SMB Server')
group = parser.add_argument_group('authentication')
group.add_argument('-hashes', action="store", metavar="LMHASH:NTHASH", help='NTLM hashes, format is LMHASH:NTHASH')
group.add_argument('-no-pass', action="store_true", help='don\'t ask for password (useful for -k)')
group.add_argument('-k', action="store_true",
help='Use Kerberos authentication. Grabs credentials from ccache file '
'(KRB5CCNAME) based on target parameters. If valid credentials cannot be found, it will use the '
'ones specified in the command line')
group.add_argument('-aesKey', action="store", metavar="hex key", help='AES key to use for Kerberos Authentication '
'(128 or 256 bits)')
if len(sys.argv) == 1:
parser.print_help()
sys.exit(1)
options = parser.parse_args()
# Init the example's logger theme
logger.init(options.ts)
if options.debug is True:
logging.getLogger().setLevel(logging.DEBUG)
# Print the Library's installation path
logging.debug(version.getInstallationPath())
else:
logging.getLogger().setLevel(logging.INFO)
domain, username, password, remoteName = parse_target(options.target)
if domain is None:
domain = ''
if options.target_ip is None:
options.target_ip = remoteName
if options.aesKey is not None:
options.k = True
if password == '' and username != '' and options.hashes is None and options.no_pass is False and options.aesKey is None:
from getpass import getpass
password = getpass("Password:")
dumper = SAMRDump(username, password, domain, options.hashes, options.aesKey, options.k, options.dc_ip,
int(options.port), options.csv)
dumper.dump(remoteName, options.target_ip, options.username, options.groupname)