feat(Validators): add server ID validation function to prevent path traversal and unsafe characters; update routes to utilize new validation logic
Publish Fast Tabler Docker image / build-and-push-fast (push) Successful in 1m55s

This commit is contained in:
2026-02-22 23:28:19 +07:00
parent c3fba50de8
commit 353d14d64e
6 changed files with 54 additions and 17 deletions
+1 -3
View File
@@ -120,9 +120,7 @@ function decrypt(encryptedText) {
}
console.error('Decryption error details:', {
error: error.message,
stack: error.stack,
encryptedTextLength: encryptedText.length,
encryptedTextPreview: encryptedText.substring(0, 100)
encryptedTextLength: encryptedText.length
});
throw error;
}