pwntools with vagrant integration
Project description
VAGD
Vagrant integration in pwntools
Installation
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 pwndbg.
Features
Vagd
Constructor for Vagd, initializes a new vagrant machine (if non existent)
Parameters:
required | experimental | name | type | description |
---|---|---|---|---|
X | binary | str | binary to debug on vagrant vm | |
vagrantfile | str | location of Vagrantfile | ||
vbox | str | vagrant box to use | ||
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.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.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.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.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.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
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
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.0.tar.gz
.
File metadata
- Download URL: vagd-0.1.0.tar.gz
- Upload date:
- Size: 20.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 | 4a0481ed836d10e8b5ef28820b00827b4859effdde134fb8d0dde6e2841e10dd |
|
MD5 | ca9bc43db56a5a80709fc8ea63e978dd |
|
BLAKE2b-256 | 58f1b78028270ed6f51aaac400945c2d9f220440aef045f78f7459aefa0a571b |
File details
Details for the file vagd-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: vagd-0.1.0-py3-none-any.whl
- Upload date:
- Size: 19.4 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 | 3adb97a5ea197d977640865989f9f839f0acf5baec09308b7d89507885532f3b |
|
MD5 | de64523ddf22ec789035f4d07990cf7f |
|
BLAKE2b-256 | 77e73e4b5987505da794f078019221ac69ed7b7b10e97ecd4bee1f25adb74fd6 |