You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Validate JWT signature in SecurityPlugin.isAuthenticated() instead of
accepting any Bearer header (CVE: unauthenticated admin access)
- Sanitize iconClass to CSS-safe characters and escape with
htmlspecialchars() in sidebar rendering (stored XSS via module settings)
- Add ALLOWED_WRITE_DIRECTORIES whitelist in FilesManagementProcessor
with pre-write path traversal rejection and directory confinement
- Sanitize firmware version parameter to [a-zA-Z0-9._-] and add
escapeshellarg() in DownloadNewFirmwareAction (command injection)
- Add escapeshellarg() to mv command in ConvertAudioFileAction (command
injection via temp_filename)
- Add realpath() + directory confinement in all four syslog actions to
prevent path traversal outside CORE_LOGS_DIR, plus escapeshellarg()
on decompression and erase shell commands
- Add translated error messages (rest_err_file_*, rest_err_syslog_*,
rest_err_firmware_*) across all 26 languages
- Add comprehensive TDD security test suite (15 tests)
Copy file name to clipboardExpand all lines: src/Common/Messages/da/RestApi.php
+14Lines changed: 14 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2306,4 +2306,18 @@
2306
2306
'rest_cq_GetRecord' => 'Hent kø efter ID',
2307
2307
'rest_schema_s3_access_key' => 'S3-adgangsnøgle-ID (synlig i svar)',
2308
2308
'rest_S3Storage_ApiDescription' => 'Administrer S3-kompatibel cloud-lagring til arkivering af opkaldsoptagelser. Denne singleton-ressource leverer konfiguration til AWS S3, MinIO, Wasabi og andre S3-kompatible lagringstjenester. Funktionerne omfatter automatisk upload af optagelser til cloud-lagring efter udløbet af den lokale opbevaringsperiode, transparent afspilning fra S3-cache og en todelt lagringsstrategi (hot local storage + cold cloud archive). Legitimationsoplysninger krypteres automatisk før lagring.',
0 commit comments