Skip to content
This repository was archived by the owner on May 16, 2025. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion volatility/plugins/overlays/windows/tcpip_vtypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -508,10 +508,26 @@ class Win10x64_15063_Tcpip(obj.ProfileModification):
'memory_model': lambda x: x == '64bit',
'major': lambda x : x == 6,
'minor': lambda x : x == 4,
'build': lambda x : x >= 15063}
'build': lambda x : x == 15063}
def modification(self, profile):
profile.merge_overlay({
'_TCP_ENDPOINT': [ None, {
'Owner' : [ 0x270, ['pointer', ['_EPROCESS']]],
}],
})

class Win10x64_18362_Tcpip(obj.ProfileModification):
"""TCP Endpoint for Creators and Fall Creators"""

before = ['Win10x64Tcpip']
conditions = {'os': lambda x: x == 'windows',
'memory_model': lambda x: x == '64bit',
'major': lambda x : x == 6,
'minor': lambda x : x == 4,
'build': lambda x : x == 18362}
def modification(self, profile):
profile.merge_overlay({
'_TCP_ENDPOINT': [ None, {
'Owner' : [ 0x298, ['pointer', ['_EPROCESS']]],
}],
})