summaryrefslogtreecommitdiffstats
path: root/sploit/rev
diff options
context:
space:
mode:
authorMalfurious <m@lfurio.us>2025-01-02 19:17:34 -0500
committerMalfurious <m@lfurio.us>2025-01-04 23:54:51 -0500
commit0f00627964a4b2e515108401fa2cfe94600ad648 (patch)
tree56da2ccaf393a1124220cc187a7225a4efcfbcba /sploit/rev
parent640726aa11369d328c1cdfe00b4344b6a925729c (diff)
downloadnsploit-0f00627964a4b2e515108401fa2cfe94600ad648.tar.gz
nsploit-0f00627964a4b2e515108401fa2cfe94600ad648.zip
Rename sploit package to nsploit
Rename all affected files, references to file paths, and module imports within the code. Since this line of development represents a fork from the original sploit, a name change is seen as necessary to distinguish the projects, as well as allow them to be installed side by side. What does the "n" mean? Great question! You can think of it as meaning "new sploit" if you want, though that's not quite intended. The name is simply distinct and easy to pronounce. I had originally settled on "msploit" (something along the lines of "Malf's sploit"), but this name is too close to "metasploit" for me - and N is right next to it on the keyboard. Signed-off-by: Malfurious <m@lfurio.us>
Diffstat (limited to '')
-rw-r--r--nsploit/rev/__init__.py (renamed from sploit/rev/__init__.py)0
-rw-r--r--nsploit/rev/elf.py (renamed from sploit/rev/elf.py)4
-rw-r--r--nsploit/rev/gadget.py (renamed from sploit/rev/gadget.py)2
-rw-r--r--nsploit/rev/ldd.py (renamed from sploit/rev/ldd.py)4
-rw-r--r--nsploit/rev/r2.py (renamed from sploit/rev/r2.py)10
5 files changed, 10 insertions, 10 deletions
diff --git a/sploit/rev/__init__.py b/nsploit/rev/__init__.py
index 42e2f5b..42e2f5b 100644
--- a/sploit/rev/__init__.py
+++ b/nsploit/rev/__init__.py
diff --git a/sploit/rev/elf.py b/nsploit/rev/elf.py
index b1479d6..6b30492 100644
--- a/sploit/rev/elf.py
+++ b/nsploit/rev/elf.py
@@ -2,8 +2,8 @@
Definition of the ELF class
"""
-from sploit.rev import ldd, r2
-from sploit.arch import lookup_arch
+from nsploit.rev import ldd, r2
+from nsploit.arch import lookup_arch
from itertools import zip_longest
class ELF:
diff --git a/sploit/rev/gadget.py b/nsploit/rev/gadget.py
index cc69723..bba5e15 100644
--- a/sploit/rev/gadget.py
+++ b/nsploit/rev/gadget.py
@@ -1,5 +1,5 @@
from dataclasses import dataclass, field
-from sploit.types.index_entry import IndexEntry
+from nsploit.types.index_entry import IndexEntry
@dataclass
class Gadget(IndexEntry):
diff --git a/sploit/rev/ldd.py b/nsploit/rev/ldd.py
index b773abf..f0e5988 100644
--- a/sploit/rev/ldd.py
+++ b/nsploit/rev/ldd.py
@@ -1,5 +1,5 @@
-from sploit.util.cmd import run_cmd_cached
-from sploit.util.log import ilog
+from nsploit.util.cmd import run_cmd_cached
+from nsploit.util.log import ilog
import re
from collections import namedtuple as nt
diff --git a/sploit/rev/r2.py b/nsploit/rev/r2.py
index e81adc9..5f20f0a 100644
--- a/sploit/rev/r2.py
+++ b/nsploit/rev/r2.py
@@ -1,8 +1,8 @@
-from sploit.arch import arch
-from sploit.rev.gadget import Gadget
-from sploit.symtbl import Symtbl
-from sploit.util.cmd import run_cmd_cached
-from sploit.util.log import ilog
+from nsploit.arch import arch
+from nsploit.rev.gadget import Gadget
+from nsploit.symtbl import Symtbl
+from nsploit.util.cmd import run_cmd_cached
+from nsploit.util.log import ilog
from collections import namedtuple as nt
from functools import cache