Commit a38a134d authored by Luke Macken's avatar Luke Macken

tweak payload path

parent 45f9cbf0
......@@ -64,7 +64,7 @@ This lets you easily introspect or alter any objects in your running process.
::
$ pyrasite <PID> payloads/reverse_python_shell.py
$ pyrasite <PID> pyrasite/payloads/reverse_python_shell.py
$ nc -l localhost 9001
Python 2.7.1 (r271:86832, Apr 12 2011, 16:15:16)
[GCC 4.6.0 20110331 (Red Hat 4.6.0-2)]
......@@ -81,7 +81,7 @@ This payload uses `meliae <https://launchpad.net/meliae>`_ to dump all of the ob
::
$ pyrasite <PID> payloads/dump_memory.py
$ pyrasite <PID> pyrasite/payloads/dump_memory.py
Pyrasite also provides a tool to view the values of largest objects in your process.
......@@ -100,7 +100,7 @@ Reverse Shell
::
$ pyrasite <PID> payloads/reverse_shell.py
$ pyrasite <PID> pyrasite/payloads/reverse_shell.py
$ nc -l localhost 9001
Linux tomservo 2.6.40.3-0.fc15.x86_64 #1 SMP Tue Aug 16 04:10:59 UTC 2011 x86_64 x86_64 x86_64 GNU/Linux
Type 'quit' to exit.
......@@ -115,8 +115,8 @@ graph using `pycallgraph <http://pycallgraph.slowchop.com>`_.
::
$ pyrasite <PID> payloads/start_callgraph.py
$ pyrasite <PID> payloads/stop_callgraph.py
$ pyrasite <PID> pyrasite/payloads/start_callgraph.py
$ pyrasite <PID> pyrasite/payloads/stop_callgraph.py
The callgraph is then generated using `graphviz <http://www.graphviz.org>`_ and
saved to `callgraph.png`. You can see an example callgraph `here <http://pycallgraph.slowchop.com/pycallgraph/wiki/RegExpExample>`_.
......@@ -127,9 +127,9 @@ Dumping modules, thread stacks, and forcing garbage collection
::
payloads/dump_modules.py
payloads/dump_stacks.py
payloads/force_garbage_collection.py
pyrasite/payloads/dump_modules.py
pyrasite/payloads/dump_stacks.py
pyrasite/payloads/force_garbage_collection.py
Additional installation notes
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
......@@ -142,7 +142,7 @@ If you don't want to override Apple's default gdb, install the latest version of
::
$ ./configure --program-prefix=gnu
$ pyrasite <PID> payloads/reverse_python_shell.py --prefix="gnu"
$ pyrasite <PID> pyrasite/payloads/reverse_python_shell.py --prefix="gnu"
Ubuntu
------
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment