Skip to content

Commit

Permalink
Fixed docstring procmemelf.imgend
Browse files Browse the repository at this point in the history
  • Loading branch information
psrok1 committed Aug 1, 2019
1 parent 0837be2 commit f2b0112
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion malduck/procmem/procmemelf.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def elf(self):

@property
def imgend(self):
"""Address where PE image ends"""
"""Address where ELF image ends"""
if not self._imgend:
lastSegment = self.elf.get_segment(self.elf.num_segment()-1)
self._imgend = lastSegment.header['p_vaddr'] + lastSegment.header['p_memsz']
Expand Down

0 comments on commit f2b0112

Please sign in to comment.