From df16630a5c38c4c4429c711978203bfa2be36737 Mon Sep 17 00:00:00 2001 From: PrincessPi3 Date: Tue, 19 Aug 2025 16:20:13 -0600 Subject: [PATCH] 1755642013 --- customscripts/randomtoken | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 customscripts/randomtoken diff --git a/customscripts/randomtoken b/customscripts/randomtoken new file mode 100644 index 0000000..5b8f602 --- /dev/null +++ b/customscripts/randomtoken @@ -0,0 +1,4 @@ +#!/bin/bash +# uses /dev/urandom for quality 128 random bits (16 bytes) +# hashed with sha256 then cleaned up with awk +dd if=/dev/urandom bs=1 count=16 status=none | sha256sum | awk '{print $1}' \ No newline at end of file