Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zTrix/zio
unified io lib for pwning development written in python
https://github.com/zTrix/zio
ctf-tools io-library pwnable pwntools zio
Last synced: 11 days ago
JSON representation
unified io lib for pwning development written in python
- Host: GitHub
- URL: https://github.com/zTrix/zio
- Owner: zTrix
- License: other
- Created: 2013-11-25T10:19:33.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2021-12-25T16:42:34.000Z (almost 3 years ago)
- Last Synced: 2024-11-04T15:24:43.170Z (16 days ago)
- Topics: ctf-tools, io-library, pwnable, pwntools, zio
- Language: Python
- Homepage:
- Size: 465 KB
- Stars: 395
- Watchers: 32
- Forks: 82
- Open Issues: 3
-
Metadata Files:
- Readme: README.txt
- License: LICENSE.txt
Awesome Lists containing this project
README
zio
====`zio `_ is an easy-to-use io library for pwning development, supporting an unified interface for local process pwning and TCP socket io.
The primary goal of `zio `_ is to provide unified io interface between process stdin/stdout and TCP socket io. So when you have done local pwning development, you only need to change the io target to pwn the remote server.
The following code illustrate the basic idea.
.. code:: python
from zio import *
debug_local = True
if debug_local:
io = zio('./buggy-server') # used for local pwning development
elif you_are_pwning_remote_server:
io = zio(('1.2.3.4', 1337)) # used to exploit remote serviceio.read_until(b'Welcome banner')
io.write(your_awesome_ropchain_or_shellcode)
# hey, we got an interactive shell!
io.interact()License
=======`zio `_ use `SATA License (Star And Thank Author License) `_, so you have to star this project before using. Read the LICENSE.txt carefully.
Installation
============This is a single-file project so in most cases you can just download `zio.py `_ and start using.
pip is also supported, so you can also install by running
.. code:: bash
$ pip install zio
More Info
=========Goto `zio ` for more information.