summaryrefslogtreecommitdiff
path: root/static/deobfuscate.sh
diff options
context:
space:
mode:
authoraxtloss <axtlos@disroot.org>2024-12-24 19:25:48 +0100
committeraxtloss <axtlos@disroot.org>2024-12-24 20:04:59 +0100
commite46cb88d3763a64e97557b2db2f9b74ae7627555 (patch)
tree9c00ad1e59f4fdc36e050d9329eb7cfdeb0588d2 /static/deobfuscate.sh
parentc19fb8828e1dfdd4ce548269ff7cf08de96adf95 (diff)
downloadwebsite-e46cb88d3763a64e97557b2db2f9b74ae7627555.tar.gz
website-e46cb88d3763a64e97557b2db2f9b74ae7627555.tar.bz2
new website dropped
Diffstat (limited to '')
-rwxr-xr-xstatic/deobfuscate.sh17
1 files changed, 0 insertions, 17 deletions
diff --git a/static/deobfuscate.sh b/static/deobfuscate.sh
deleted file mode 100755
index 40ce970..0000000
--- a/static/deobfuscate.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-
-value="$1"
-offset=$((16#${value:0:2}))
-n=2
-final=""
-
-
-while [ $n -lt ${#value} ]; do
- num=${value:n:3}
- charAscii=$((16#$num - $offset))
- final="$final$(printf \\u$(printf "%03x" $charAscii))"
- n=$((n + 3))
-done
-
-echo "$final"
-