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

Method export_name

windows/pe_parse.py:425–432  ·  view source on GitHub ↗

The Name attribute of the ``EXPORT_DIRECTORY``

(self)

Source from the content-addressed store, hash-verified

423
424 @utils.fixedpropety
425 def export_name(self):
426 """The Name attribute of the ``EXPORT_DIRECTORY``"""
427 exp_dir = self.get_EXPORT_DIRECTORY()
428 if exp_dir is None:
429 return None
430 if not exp_dir.Name:
431 return None
432 return get_string(self.target, self.baseaddr + exp_dir.Name)
433
434 # TODO: get imports by parsing other modules exports if no INT
435 @utils.fixedpropety

Callers

nothing calls this directly

Calls 2

get_EXPORT_DIRECTORYMethod · 0.95
get_stringFunction · 0.85

Tested by

no test coverage detected