From 477f57ee72b9e2359de37b166cd22ae236ab020d Mon Sep 17 00:00:00 2001 From: anthonycodedynamo <91063537+anthonycodedynamo@users.noreply.github.com> Date: Sun, 30 Mar 2025 12:06:21 +0100 Subject: [PATCH] Update serverside-file-validation.md - correct typo through the back office not tough the back office --- 15/umbraco-cms/reference/security/serverside-file-validation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/15/umbraco-cms/reference/security/serverside-file-validation.md b/15/umbraco-cms/reference/security/serverside-file-validation.md index 2da7702e2a8..d00f64a42bb 100644 --- a/15/umbraco-cms/reference/security/serverside-file-validation.md +++ b/15/umbraco-cms/reference/security/serverside-file-validation.md @@ -5,7 +5,7 @@ description: This section describes how you can implement File Validation # Server-side file validation -Sometimes it might be necessary to validate the contents of a file before it gets saved to disk when uploading trough the backoffice. +Sometimes it might be necessary to validate the contents of a file before it gets saved to disk when uploading through the backoffice. To help with this, Umbraco supplies a `FileStreamSecurityValidator` that runs all registered `IFileStreamSecurityAnalyzer` implementations on the file streams it receives from it's different file upload endpoints. When any of the analyzers deem the file to be unsafe, the endpoint disregards the file and shows a relevant validation message where appropriate. This all happens in memory before the stream is written to a temporary file location.