Skip to content

Commit

Permalink
First attempt at fixing got command with remote debugging.
Browse files Browse the repository at this point in the history
  • Loading branch information
gordonmessmer committed Jun 1, 2024
1 parent f0b6d1d commit 2e6166f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions gef.py
Original file line number Diff line number Diff line change
Expand Up @@ -692,7 +692,7 @@ def size(self) -> int:
@property
def realpath(self) -> str:
# when in a `gef-remote` session, realpath returns the path to the binary on the local disk, not remote
return self.path if gef.session.remote is None else f"/tmp/gef/{gef.session.remote:d}/{self.path}"
return self.path if gef.session.remote is None else f"{gef.session.remote.root}/{self.path}"

def __str__(self) -> str:
return (f"Section(start={self.page_start:#x}, end={self.page_end:#x}, "
Expand Down Expand Up @@ -9295,18 +9295,18 @@ def do_invoke(self, _: List[str], **kwargs: Any) -> None:
args : argparse.Namespace = kwargs["arguments"]
if args.all:
vmmap = gef.memory.maps
mapfiles = set(mapfile.path for mapfile in vmmap if
mapfiles = set((mapfile.path, mapfile.realpath) for mapfile in vmmap if
pathlib.Path(mapfile.realpath).is_file() and
mapfile.permission & Permission.EXECUTE)
for mapfile in mapfiles:
self.print_got_for(mapfile, args.symbols)
self.print_got_for(mapfile[0], mapfile[1], args.symbols)
else:
self.print_got_for(str(gef.session.file), args.symbols)
self.print_got_for(str(gef.session.file), get_filepath(), args.symbols)

def print_got_for(self, file: str, argv: List[str]) -> None:
def print_got_for(self, file: str, realpath: str, argv: List[str]) -> None:
readelf = gef.session.constants["readelf"]

elf_file = file
elf_file = realpath
elf_virtual_path = file

func_names_filter = argv if argv else []
Expand Down

0 comments on commit 2e6166f

Please sign in to comment.