MCPcopy Create free account
hub / github.com/ELMERIKH/PyinMemoryPE / name

Method name

windows/pe_parse.py:107–113  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

105
106 @property
107 def name(self):
108 if self.target is None:
109 name = get_string(self.target, ctypes.addressof(self.Name))[:8]
110 else:
111 name = get_string(self.target, self._base_addr)[:8]
112 # Decode as UTF-8 as the MS doc say ?
113 return name
114
115 @property
116 def start(self):

Callers

nothing calls this directly

Calls 1

get_stringFunction · 0.85

Tested by

no test coverage detected