diff options
author | Malfurious <m@lfurio.us> | 2023-03-18 21:21:45 -0400 |
---|---|---|
committer | dusoleil <howcansocksbereal@gmail.com> | 2023-03-19 04:19:22 -0400 |
commit | 1ccdadce015abd4f57371168d2b3922716e9980d (patch) | |
tree | 3e066302e31e8a5e9fd1ec4a13a7b2883894d538 /sploit/builder/__init__.py | |
parent | 31ef0e9a7a67ba3c361e72d279ae84b9285fb470 (diff) | |
download | nsploit-1ccdadce015abd4f57371168d2b3922716e9980d.tar.gz nsploit-1ccdadce015abd4f57371168d2b3922716e9980d.zip |
Create new subpackage 'builder'
This is a package to contain the related Payload and ROP modules, as
well as utility classes. Payload is moved into the new package.
Signed-off-by: Malfurious <m@lfurio.us>
Signed-off-by: dusoleil <howcansocksbereal@gmail.com>
Diffstat (limited to 'sploit/builder/__init__.py')
-rw-r--r-- | sploit/builder/__init__.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sploit/builder/__init__.py b/sploit/builder/__init__.py new file mode 100644 index 0000000..54e5fd5 --- /dev/null +++ b/sploit/builder/__init__.py @@ -0,0 +1,3 @@ +from . import ( + payload, +) |