diff options
author | Malfurious <m@lfurio.us> | 2024-01-12 07:37:53 -0500 |
---|---|---|
committer | Malfurious <m@lfurio.us> | 2024-01-13 17:22:12 -0500 |
commit | 4a39e37e19fe02be9169d8a37ee09190acd09527 (patch) | |
tree | 397398caa13d3be08c72d39a28cb95fb67b833af /sploit/payload/rop.py | |
parent | 0e028487596091afb3ea1035f7f78ef7661c9c6e (diff) | |
download | nsploit-4a39e37e19fe02be9169d8a37ee09190acd09527.tar.gz nsploit-4a39e37e19fe02be9169d8a37ee09190acd09527.zip |
builder: Rename package to payload and expose contents
This follows in the package contents export change. Additionally, the
builder package is renamed to "payload".
"payload" is actually the preferred name of this package. It was
previously renamed due to the absurdity of importing
"sploit.payload.payload.Payload()", and the fact that additional modules
were being bundled together so a more broad name _seemed_ desirable.
Signed-off-by: Malfurious <m@lfurio.us>
Diffstat (limited to '')
-rw-r--r-- | sploit/payload/rop.py (renamed from sploit/builder/rop.py) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sploit/builder/rop.py b/sploit/payload/rop.py index 7b58e0e..54226b4 100644 --- a/sploit/builder/rop.py +++ b/sploit/payload/rop.py @@ -25,8 +25,8 @@ supported. from graphlib import TopologicalSorter from sploit.arch import arch, btoi, itob -from sploit.builder.gadhint import GadHint -from sploit.builder.payload import Payload +from sploit.payload.gadhint import GadHint +from sploit.payload.payload import Payload class ROP(Payload): """ |