mirror of
https://github.com/lgandx/Responder.git
synced 2025-08-22 06:13:39 -07:00
Merge 66eace9853
into b05bdcab96
This commit is contained in:
commit
88e6c9dd94
2 changed files with 186 additions and 176 deletions
|
@ -167,6 +167,11 @@ def GetHostnameAndDomainName(data):
|
||||||
try:
|
try:
|
||||||
DomainJoined, Hostname = tuple([e.replace('\x00','') for e in data[81:].split('\x00\x00\x00')[:2]])
|
DomainJoined, Hostname = tuple([e.replace('\x00','') for e in data[81:].split('\x00\x00\x00')[:2]])
|
||||||
Time = GetBootTime(data[60:68])
|
Time = GetBootTime(data[60:68])
|
||||||
|
#If max length domain name, there won't be a \x00\x00\x00 delineator to split on
|
||||||
|
if Hostname == '':
|
||||||
|
DomainJoined = data[81:110].replace('\x00','')
|
||||||
|
Hostname = data[113:].replace('\x00','')
|
||||||
|
|
||||||
return Hostname, DomainJoined, Time
|
return Hostname, DomainJoined, Time
|
||||||
except:
|
except:
|
||||||
return "Could not get Hostname.", "Could not get Domain joined"
|
return "Could not get Hostname.", "Could not get Domain joined"
|
||||||
|
|
|
@ -148,6 +148,11 @@ def OsNameClientVersion(data):
|
||||||
def GetHostnameAndDomainName(data):
|
def GetHostnameAndDomainName(data):
|
||||||
try:
|
try:
|
||||||
DomainJoined, Hostname = tuple([e.replace('\x00','') for e in data[81:].split('\x00\x00\x00')[:2]])
|
DomainJoined, Hostname = tuple([e.replace('\x00','') for e in data[81:].split('\x00\x00\x00')[:2]])
|
||||||
|
#If max length domain name, there won't be a \x00\x00\x00 delineator to split on
|
||||||
|
if Hostname == '':
|
||||||
|
DomainJoined = data[81:110].replace('\x00','')
|
||||||
|
Hostname = data[113:].replace('\x00','')
|
||||||
|
|
||||||
return Hostname, DomainJoined
|
return Hostname, DomainJoined
|
||||||
except:
|
except:
|
||||||
return "Could not get Hostname.", "Could not get Domain joined"
|
return "Could not get Hostname.", "Could not get Domain joined"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue