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/__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/__init__.py')
-rw-r--r-- | sploit/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sploit/__init__.py b/sploit/__init__.py index 9a38a78..1eb570c 100644 --- a/sploit/__init__.py +++ b/sploit/__init__.py @@ -1,12 +1,12 @@ from sploit import ( arch, + builder, comm, log, - payload, + rev, symtbl, until, util, - rev, ) __version__ = util.git_version() |