From ead4ec1340555569e00919891383e05dca839b01 Mon Sep 17 00:00:00 2001 From: Malfurious Date: Fri, 12 Jan 2024 14:28:26 -0500 Subject: util: Promote from module to package We would like to move additional modules under the namespace of "util" to clean up the top-level "sploit" package. To start, the functions from the previous util module are moved. Given the package is named "util" the module is renamed to "cmd" to somewhat match the theme of the contained functions. Per the previous commits, these functions are now exposed via the util package as well. Signed-off-by: Malfurious --- sploit/rev/ldd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sploit/rev/ldd.py') diff --git a/sploit/rev/ldd.py b/sploit/rev/ldd.py index 1a28c7c..b5bc564 100644 --- a/sploit/rev/ldd.py +++ b/sploit/rev/ldd.py @@ -1,4 +1,4 @@ -from sploit.util import run_cmd_cached +from sploit.util.cmd import run_cmd_cached from sploit.log import ilog import re -- cgit v1.2.3 From 074a15310b8bbeeeeb00bf5ab5877c12f1ca1861 Mon Sep 17 00:00:00 2001 From: Malfurious Date: Fri, 12 Jan 2024 16:26:03 -0500 Subject: log: Move to sploit.util package Signed-off-by: Malfurious --- sploit/rev/ldd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sploit/rev/ldd.py') diff --git a/sploit/rev/ldd.py b/sploit/rev/ldd.py index b5bc564..b773abf 100644 --- a/sploit/rev/ldd.py +++ b/sploit/rev/ldd.py @@ -1,5 +1,5 @@ from sploit.util.cmd import run_cmd_cached -from sploit.log import ilog +from sploit.util.log import ilog import re from collections import namedtuple as nt -- cgit v1.2.3