pwntools with vagrant integration
Project description
VAGD
virtualization integrations in pwntools
Installation
pip install vagd pwntools
or
pip install .
pip install -r requirements.txt
Usage
use template.py and copy it to exploit.py fill out the constants
# run as process in VM
./exploit.py
# run as gdb server in VM requires tmux
./exploit.py GDB
# run on remote IP:PORT
./exploit.py REMOTE
I recommend using pwngdg.
Features
vagd.Vagd
Child of vagd.pwngd.Pwngd
setups a vagrant vm
SSH from cmd:
vagrant ssh
required | name | type | descripton |
---|---|---|---|
X | binary | str | binary to debug on vagrant vm |
Vagrantfile | str | Location of Vagrantfile (default current directory) | |
vbox | str | vagrant box to use (Default: ubuntu/focal64) | |
**kwargs | Any | Parameters to pass through to super constructor |
vagd.Qegd
Child of vagd.pwngd.Pwngd
setups a qemu machine
SSH from cmd:
ssh -o "StrictHostKeyChecking=no" -i .qemu/keyfile -p $(cat .qemu/qemu.lock) ubuntu@0.0.0.0
required | name | type | descripton |
---|---|---|---|
X | binary | str | binary to debug on vagrant vm |
img | str | Location of qemu cloudimage local or remote (URL) (Default: Cloudimage-Ubuntu-Focal) | |
user | str | Default user (depended on image) (Default: ubuntu) | |
packages | Iterable | Other packages to install on remote system | |
**kwargs | Any | Parameters to pass through to super constructor |
vagd.pwngd.Pwngd
Abstract Class for Vagd, setups vm
Parameters:
required | experimental | name | type | description |
---|---|---|---|---|
X | binary | str | binary to debug on vagrant vm | |
files | str | tuple | other files to upload to vm, all files are uploaded to current working directory (home or tmp) | ||
tmp | bool | if the created directory in the vm should be temporary, requires new upload after each execution | ||
X | fast | bool | fast debug, mounts library files locally with sshfs in newly created directory ./sysroot/lib/ for faster symbol reading | |
x | ex | bool | enables experimental features for the whole object |
vagd.pwngd.Pwngb.put
upload file or directory to vm
Parameters:
required | name | type | description |
---|---|---|---|
x | file | str | path of file to upload |
remote | str | remote location of file, no location means working directory (home or tmp if enabled) |
Return: None
vagd.pwngd.Pwngd.system
executes command on vm, interface to pwnlib.tubes.ssh.ssh.system
Parameters:
required | name | type | description |
---|---|---|---|
x | cmd | str | command to execute on vm |
Return: pwnlib.tubes.ssh.ssh.system
vagd.pwngd.Pwngd.debug Experimental
Executes the provided binary with gdbserver on the vm and and attaches gdb.
Parameters:
required | experimental | name | type | description |
---|---|---|---|---|
argv | list[str] | command line arguments for binary | ||
exe | str | exe to execute | ||
env | Dict[str, str] | Environment variables to pass through to binary | ||
ssh | Any | ignored | ||
gdbscript | str | gdbscript to execute after gdb sessions hast attached to server | ||
X | api | bool | if a gdb python api interface should be created, is set as attribute gdb in return object |
|
X | sysroot | str | the sysroot to use for gdb. Not applicable if fast is set in Vagd constructor | |
X | gdb_args | list[str] | additonal gdb command line arguments to add to gdb | |
**kwargs | Any | allows the usage of other pwntool arguments |
Return: pwn.process
vagd.pwngd.Pwngd.process
Executes the provided binary as process on vm
required | name | type | description |
---|---|---|---|
argv | list[str] | command line arguments for binary | |
**kwargs | Any | allows the usage of other pwntool arguments |
Return: pwn.process
vagd.pwngd.pwngd.pwn_debug
Executes the provided binary with gdbserver on the vm and and attaches gdb.
required | name | type | description |
---|---|---|---|
argv | list[str] | command line arguments for binary | |
**kwargs | Any | allows the usage of other pwntool arguments |
Return: pwn.process
vagd.pwngd.Pwngd.start
uses pwn.args
to swap between Vagd.process
, Vagd.pwn_debug
and Vagd.debug
if experimental is enabled (in constructor or via ex=True
)
Parameters:
required | experimental | name | type | description |
---|---|---|---|---|
argv | list[str] | command line arguments for binary | ||
gdbscript | str | gdbscript to execute after gdb sessions hast attached to server | ||
X | api | bool | if a gdb python api interface should be created, is set as attribute gdb in return object |
|
X | sysroot | str | the sysroot to use for gdb. Not applicable if fast is set in Vagd constructor | |
X | gdb_args | list[str] | additonal gdb command line arguments to add to gdb | |
X | ex | bool | enables experimental features if not already enabled in constructor | |
**kwargs | Any | allows the usage of other pwntool arguments |
Return: pwn.process
vagd.wrapper.GDB
receives target: pwn.process
and returns gdb python api with type hinting from types-gdb or a wrapper.Empty
object, that returns None for every methode.
required | name | type | description |
---|---|---|---|
x | target | pwn.process | a pwn.process object. If tehe gdb attribute is set a gdb python api is returned, else wrapper.Empty |
Return: gdb python api or wrapper.Empty
vagd.gdb
Empty module, can be used for gdb type hinting
Boxes
the following boxes were tested and work, box constants are inside vagd.box
- ubuntu/jammy64
- ubuntu/focal64
- ubuntu/bionic64
- ubuntu/xenial64
currently Vagrantfile generation is only compatible distributions that use apt
Future plans
pre configured Vagrant boxes
created pre configured Vagrant boxes with preinstalled lib debug symbols and gdbserver to lower runtime.
Template generation
in order to get template.py u either need to download the file manually or download the repo. If possible the option of generating a template with python -m vagd
should be added.
package installation
It should be possible to specify a list of packages in the Vagd constructor that are to be installed. It should also be checked if provided packages are already installed inside of the vm.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file vagd-0.1.5.tar.gz
.
File metadata
- Download URL: vagd-0.1.5.tar.gz
- Upload date:
- Size: 31.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 870665e6752298eea05c8b6065ca7ec48c6da37e8da466bd1feff6504a94ace0 |
|
MD5 | 1aa7f63a8f53c36bea12889ad623bc1d |
|
BLAKE2b-256 | bcff04f145bf692ae57d19ab263ef40d3e89e5f47db3b5b89ef0d655faaf4ad2 |
File details
Details for the file vagd-0.1.5-py3-none-any.whl
.
File metadata
- Download URL: vagd-0.1.5-py3-none-any.whl
- Upload date:
- Size: 31.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 152d5954dcc45170f55b355516fab90ba39120ab23594d7fb7acb73bd576449e |
|
MD5 | ec80c766c82716c76545ba32cbee3eac |
|
BLAKE2b-256 | 34c509031f1fb43798b658f956d7247ee05d1c2fbf7ed527978f57b2197c901e |