(self)
| 683 | |
| 684 | @property |
| 685 | def realpath(self) -> str: |
| 686 | # when in a `gef-remote` session, realpath returns the path to the binary on the local disk, not remote |
| 687 | return self.path if gef.session.remote is None else f"/tmp/gef/{gef.session.remote:d}/{self.path}" |
| 688 | |
| 689 | def __str__(self) -> str: |
| 690 | return (f"Section(page_start={self.page_start:#x}, page_end={self.page_end:#x}, " |