diff --git a/app/core/Encryption.php b/app/core/Encryption.php index 4829df3..3b07ba7 100644 --- a/app/core/Encryption.php +++ b/app/core/Encryption.php @@ -62,7 +62,7 @@ final class Encryption $tagLength = 16; if (strlen($decoded) < $ivLength + $tagLength) { - error_log("ENCRYPTION ERROR: Data too short for IV and TAG. Length: " . strlen($decoded)); + // This is likely legacy unencrypted data, return false silently return false; } diff --git a/public/shell.php b/public/shell.php index 321efb5..a70908e 100644 --- a/public/shell.php +++ b/public/shell.php @@ -504,50 +504,50 @@