diff options
| author | jakob <jakob@memeware.net> | 2017-09-10 14:12:54 -0400 |
|---|---|---|
| committer | jakob <jakob@memeware.net> | 2017-09-10 14:12:54 -0400 |
| commit | d801868006f94acc6e3313332c55331710171172 (patch) | |
| tree | 9748047178f5503b198d52d07db75ded2e95c73c /hypodermic/main.py | |
| parent | 81e47a4dba4a44624ec56708c1655206ae19cbfc (diff) | |
Initial invocation of _dl_open in the RTLD
Diffstat (limited to 'hypodermic/main.py')
| -rw-r--r-- | hypodermic/main.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hypodermic/main.py b/hypodermic/main.py index cb17d3b..3cbb047 100644 --- a/hypodermic/main.py +++ b/hypodermic/main.py @@ -108,8 +108,8 @@ def main(): if args.create: alert("Creating process at path '{}'...".format(args.create)) p = Process(path=args.create) - p.continue_until_haulted() else: alert("Attaching to process with pid {}...".format(args.attach)) p = Process(pid=args.attach) - p.continue_until_haulted() + print(p.dlopen("/usr/lib/libyggdrasil.so")) + p.continue_until_haulted() |