summaryrefslogtreecommitdiffstats
path: root/sploit/rev/ldd.py (follow)
AgeCommit message (Collapse)AuthorFilesLines
2024-01-13log: Move to sploit.util packageMalfurious1-1/+1
Signed-off-by: Malfurious <m@lfurio.us>
2024-01-13util: Promote from module to packageMalfurious1-1/+1
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 <m@lfurio.us>
2022-03-13sploit: add status logging to rev moduledusoleil1-0/+2
Signed-off-by: dusoleil <howcansocksbereal@gmail.com>
2022-03-13sploit: cache results of external commandsdusoleil1-2/+3
rather than cacheing ELF instantiations, just cache the results of external commands Signed-off-by: dusoleil <howcansocksbereal@gmail.com>
2022-03-13sploit: add ldd ability to rev moduledusoleil1-0/+10
add helper function to invoke ldd to get a list of libraries that will be linked to a given ELF Signed-off-by: dusoleil <howcansocksbereal@gmail.com>