diff options
author | Malfurious <m@lfurio.us> | 2023-03-18 21:21:48 -0400 |
---|---|---|
committer | dusoleil <howcansocksbereal@gmail.com> | 2023-03-19 06:14:10 -0400 |
commit | 990fb887e08811ed0017045bd7064b244fa81285 (patch) | |
tree | 45068b8815e8987addb5f3ab8cedcbde35f53e4d /sploit/builder/__init__.py | |
parent | 218b5717802defe0218b1237bdfc21634582d502 (diff) | |
download | nsploit-990fb887e08811ed0017045bd7064b244fa81285.tar.gz nsploit-990fb887e08811ed0017045bd7064b244fa81285.zip |
builder: Add initial version of ROP chain tools
Adds a ROP-enabled payload builder under the builder namespace. Much of
the behavior is parameterized by the active arch, so several new columns
are added to the Arch class.
Signed-off-by: Malfurious <m@lfurio.us>
Signed-off-by: dusoleil <howcansocksbereal@gmail.com>
Diffstat (limited to '')
-rw-r--r-- | sploit/builder/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sploit/builder/__init__.py b/sploit/builder/__init__.py index f4638af..758d511 100644 --- a/sploit/builder/__init__.py +++ b/sploit/builder/__init__.py @@ -1,4 +1,5 @@ from . import ( gadhint, payload, + rop, ) |