Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e668c3301f | |||
| 347a9af832 | |||
| 023289a03a | |||
| e7ced5db7c |
@@ -6,23 +6,6 @@
|
|||||||
> it tells you which historical and recent CVEs that system is still
|
> it tells you which historical and recent CVEs that system is still
|
||||||
> vulnerable to, and — with explicit confirmation — gets you root.
|
> vulnerable to, and — with explicit confirmation — gets you root.
|
||||||
|
|
||||||
```
|
|
||||||
╭───╮
|
|
||||||
╱ ╲
|
|
||||||
│ ● │════════════════════════════════════════════════════════╗
|
|
||||||
╲ ╱ ╔══╩══╗
|
|
||||||
╰───╯ ║ ╔═╝
|
|
||||||
║ ║
|
|
||||||
╚═══╝
|
|
||||||
|
|
||||||
███████╗██╗ ██╗███████╗██╗ ███████╗████████╗ ██████╗ ███╗ ██╗██╗ ██╗███████╗██╗ ██╗
|
|
||||||
██╔════╝██║ ██╔╝██╔════╝██║ ██╔════╝╚══██╔══╝██╔═══██╗████╗ ██║██║ ██╔╝██╔════╝╚██╗ ██╔╝
|
|
||||||
███████╗█████╔╝ █████╗ ██║ █████╗ ██║ ██║ ██║██╔██╗ ██║█████╔╝ █████╗ ╚████╔╝
|
|
||||||
╚════██║██╔═██╗ ██╔══╝ ██║ ██╔══╝ ██║ ██║ ██║██║╚██╗██║██╔═██╗ ██╔══╝ ╚██╔╝
|
|
||||||
███████║██║ ██╗███████╗███████╗███████╗ ██║ ╚██████╔╝██║ ╚████║██║ ██╗███████╗ ██║
|
|
||||||
╚══════╝╚═╝ ╚═╝╚══════╝╚══════╝╚══════╝ ╚═╝ ╚═════╝ ╚═╝ ╚═══╝╚═╝ ╚═╝╚══════╝ ╚═╝
|
|
||||||
```
|
|
||||||
|
|
||||||
> ⚠️ **Authorized testing only.** SKELETONKEY is a research and red-team
|
> ⚠️ **Authorized testing only.** SKELETONKEY is a research and red-team
|
||||||
> tool. By using it you assert you have explicit authorization to test
|
> tool. By using it you assert you have explicit authorization to test
|
||||||
> the target system. See [`docs/ETHICS.md`](docs/ETHICS.md).
|
> the target system. See [`docs/ETHICS.md`](docs/ETHICS.md).
|
||||||
|
|||||||
+4
-17
@@ -28,26 +28,13 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
#define SKELETONKEY_VERSION "0.4.1"
|
#define SKELETONKEY_VERSION "0.4.5"
|
||||||
|
|
||||||
static const char BANNER[] =
|
static const char BANNER[] =
|
||||||
"\n"
|
"\n"
|
||||||
" ╭───╮\n"
|
"SKELETONKEY — Curated Linux kernel LPE corpus — v" SKELETONKEY_VERSION "\n"
|
||||||
" ╱ ╲\n"
|
"AUTHORIZED TESTING ONLY — see docs/ETHICS.md\n"
|
||||||
" │ ● │════════════════════════════════════════════════════════╗\n"
|
"\n";
|
||||||
" ╲ ╱ ╔══╩══╗\n"
|
|
||||||
" ╰───╯ ║ ╔═╝\n"
|
|
||||||
" ║ ║\n"
|
|
||||||
" ╚═══╝\n"
|
|
||||||
"\n"
|
|
||||||
" ███████╗██╗ ██╗███████╗██╗ ███████╗████████╗ ██████╗ ███╗ ██╗██╗ ██╗███████╗██╗ ██╗\n"
|
|
||||||
" ██╔════╝██║ ██╔╝██╔════╝██║ ██╔════╝╚══██╔══╝██╔═══██╗████╗ ██║██║ ██╔╝██╔════╝╚██╗ ██╔╝\n"
|
|
||||||
" ███████╗█████╔╝ █████╗ ██║ █████╗ ██║ ██║ ██║██╔██╗ ██║█████╔╝ █████╗ ╚████╔╝ \n"
|
|
||||||
" ╚════██║██╔═██╗ ██╔══╝ ██║ ██╔══╝ ██║ ██║ ██║██║╚██╗██║██╔═██╗ ██╔══╝ ╚██╔╝ \n"
|
|
||||||
" ███████║██║ ██╗███████╗███████╗███████╗ ██║ ╚██████╔╝██║ ╚████║██║ ██╗███████╗ ██║ \n"
|
|
||||||
" ╚══════╝╚═╝ ╚═╝╚══════╝╚══════╝╚══════╝ ╚═╝ ╚═════╝ ╚═╝ ╚═══╝╚═╝ ╚═╝╚══════╝ ╚═╝ \n"
|
|
||||||
" Curated Linux kernel LPE corpus — v" SKELETONKEY_VERSION "\n"
|
|
||||||
" AUTHORIZED TESTING ONLY — see docs/ETHICS.md\n";
|
|
||||||
|
|
||||||
static void usage(const char *prog)
|
static void usage(const char *prog)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user