The Name attribute of the ``EXPORT_DIRECTORY``
(self)
| 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 |
nothing calls this directly
no test coverage detected