Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
pyrasite
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
pyrasite
Commits
6f49810a
Commit
6f49810a
authored
Mar 24, 2012
by
Luke Macken
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Some documentation tweaks
parent
ae1adbf2
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
52 additions
and
53 deletions
+52
-53
README.rst
README.rst
+3
-2
docs/Payloads.rst
docs/Payloads.rst
+48
-50
docs/conf.py
docs/conf.py
+1
-1
No files found.
README.rst
View file @
6f49810a
...
...
@@ -5,7 +5,8 @@ pyrasite
Pyrasite lets you to inject arbitrary code into running Python processes.
:documentation: http://pyrasite.com
:homepage: http://pyrasite.com
:documentation: http://pyrasite.rtfd.org
:download: http://pypi.python.org/pypi/pyrasite
:source: http://github.com/lmacken/pyrasite
:screenshots: http://readthedocs.org/docs/pyrasite/en/latest/GUI.html
...
...
@@ -16,7 +17,7 @@ Pyrasite lets you to inject arbitrary code into running Python processes.
Requirements
~~~~~~~~~~~~
* `gdb <https://www.gnu.org/s/gdb>`_ (version 7.3+)
* `gdb <https://www.gnu.org/s/gdb>`_ (version 7.3+
(or RHEL5+)
)
Compatiblity
~~~~~~~~~~~~
...
...
docs/Payloads.rst
View file @
6f49810a
Payloads
========
Reverse Python Shell
--------------------
.. deprecated:: 2.0
Use the `pyrasite-shell <http://readthedocs.org/docs/pyrasite/en/latest/Shell.html>`_ instead
This lets you easily introspect or alter any objects in your running process.
.. literalinclude:: ../pyrasite/payloads/reverse_python_shell.py
:language: python
:start-after: Copyright
::
$ python
>>> x = 'foo'
::
$ pyrasite <PID> pyrasite/payloads/reverse_python_shell.py
::
$ nc -l 9001
Python 2.7.1 (r271:86832, Apr 12 2011, 16:15:16)
[GCC 4.6.0 20110331 (Red Hat 4.6.0-2)]
>>> print x
foo
>>> globals()['x'] = 'bar'
Viewing the largest objects in your process
-------------------------------------------
...
...
@@ -64,25 +34,6 @@ installed.
.. image:: http://lewk.org/img/pyrasite-memory-viewer.png
Reverse Subprocess Shell
------------------------
.. literalinclude:: ../pyrasite/payloads/reverse_shell.py
:language: python
:start-after: Copyright
::
$ pyrasite <PID> pyrasite/payloads/reverse_shell.py
::
$ nc -l 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
% ls
Call Graph
----------
...
...
@@ -92,7 +43,6 @@ graph using `pycallgraph <http://pycallgraph.slowchop.com>`_.
.. literalinclude:: ../pyrasite/payloads/start_callgraph.py
:language: python
:start-after: http
.. literalinclude:: ../pyrasite/payloads/stop_callgraph.py
:language: python
:start-after: http
...
...
@@ -135,3 +85,51 @@ Forcing garbage collection
::
$ pyrasite <PID> pyrasite/payloads/force_garbage_collection.py
Reverse Subprocess Shell
------------------------
.. literalinclude:: ../pyrasite/payloads/reverse_shell.py
:language: python
:start-after: Copyright
::
$ pyrasite <PID> pyrasite/payloads/reverse_shell.py
::
$ nc -l 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
% ls
Reverse Python Shell
--------------------
.. deprecated:: 2.0
Use the `pyrasite-shell <http://readthedocs.org/docs/pyrasite/en/latest/Shell.html>`_ instead
This lets you easily introspect or alter any objects in your running process.
.. literalinclude:: ../pyrasite/payloads/reverse_python_shell.py
:language: python
:start-after: Copyright
::
$ python
>>> x = 'foo'
::
$ pyrasite <PID> pyrasite/payloads/reverse_python_shell.py
::
$ nc -l 9001
Python 2.7.1 (r271:86832, Apr 12 2011, 16:15:16)
[GCC 4.6.0 20110331 (Red Hat 4.6.0-2)]
>>> print x
foo
>>> globals()['x'] = 'bar'
docs/conf.py
View file @
6f49810a
...
...
@@ -43,7 +43,7 @@ master_doc = 'index'
# General information about the project.
project
=
u'pyrasite'
copyright
=
u'2011
, 2012
, Luke Macken'
copyright
=
u'2011
-2012, Red Hat, Inc.
, Luke Macken'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment