diff options
| author | jakob <jakob@memeware.net> | 2017-09-09 13:55:58 -0400 |
|---|---|---|
| committer | jakob <jakob@memeware.net> | 2017-09-09 13:55:58 -0400 |
| commit | 915e6fb7fcc9f7540b1123128eb7f8cf892c1288 (patch) | |
| tree | cf9501f1761f2623dfedf2c3bfa646145a068fb1 /hypodermic/process.py | |
| parent | cd49a830921bbf59aa0ed86a453d63d2fc8a2d1e (diff) | |
More research into how the RTLD is loaded.
Diffstat (limited to 'hypodermic/process.py')
| -rw-r--r-- | hypodermic/process.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/hypodermic/process.py b/hypodermic/process.py index bfb1013..c2c7409 100644 --- a/hypodermic/process.py +++ b/hypodermic/process.py @@ -381,6 +381,11 @@ class Process(object): """ return "x64" if self._isamd64 else "x86" + # FIXME: Not tested on i386. + @property + def page_size(self) -> int: + return 4096 + @property def maps(self) -> list: """Obtain the process' memory map. |