From b5188b78185a7249e8d3d29811e71f8f697fd363 Mon Sep 17 00:00:00 2001 From: KaraZajac Date: Sat, 16 May 2026 22:52:13 -0400 Subject: [PATCH] banner: redesign skeleton key ASCII art MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replace the previous "circle + shaft + curl" silhouette (which read more like a magnifying glass) with a proper skeleton-key anatomy: - BOW: round decorative loop with center hole (the part you hold) - SHAFT: long horizontal rod (= the body of the key) - BIT: notched tooth hanging down from the shaft end (the part that engages the lock — the iconic key-tooth profile) Same change in skeletonkey.c BANNER and README.md. Bump 0.4.0 → 0.4.1. --- README.md | 11 +++++++---- skeletonkey.c | 13 ++++++++----- 2 files changed, 15 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index dc56839..33f2546 100644 --- a/README.md +++ b/README.md @@ -7,10 +7,13 @@ > vulnerable to, and — with explicit confirmation — gets you root. ``` - ╔══╤══╗ - ║ ● ║═══════════════════════════════════════════════════--, - ╚═════╝ `--,_ - `_/ + ╭───╮ + ╱ ╲ + │ ● │════════════════════════════════════════════════════════╗ + ╲ ╱ ╔══╩══╗ + ╰───╯ ║ ╔═╝ + ║ ║ + ╚═══╝ ███████╗██╗ ██╗███████╗██╗ ███████╗████████╗ ██████╗ ███╗ ██╗██╗ ██╗███████╗██╗ ██╗ ██╔════╝██║ ██╔╝██╔════╝██║ ██╔════╝╚══██╔══╝██╔═══██╗████╗ ██║██║ ██╔╝██╔════╝╚██╗ ██╔╝ diff --git a/skeletonkey.c b/skeletonkey.c index 17c56aa..ae79b88 100644 --- a/skeletonkey.c +++ b/skeletonkey.c @@ -28,14 +28,17 @@ #include #include -#define SKELETONKEY_VERSION "0.4.0" +#define SKELETONKEY_VERSION "0.4.1" static const char BANNER[] = "\n" -" ╔══╤══╗\n" -" ║ ● ║═══════════════════════════════════════════════════--,\n" -" ╚═════╝ `--,_\n" -" `_/\n" +" ╭───╮\n" +" ╱ ╲\n" +" │ ● │════════════════════════════════════════════════════════╗\n" +" ╲ ╱ ╔══╩══╗\n" +" ╰───╯ ║ ╔═╝\n" +" ║ ║\n" +" ╚═══╝\n" "\n" " ███████╗██╗ ██╗███████╗██╗ ███████╗████████╗ ██████╗ ███╗ ██╗██╗ ██╗███████╗██╗ ██╗\n" " ██╔════╝██║ ██╔╝██╔════╝██║ ██╔════╝╚══██╔══╝██╔═══██╗████╗ ██║██║ ██╔╝██╔════╝╚██╗ ██╔╝\n"