Skip to content

Commit 00a242e

Browse files
committed
Improve text procedure
1 parent 5cce55f commit 00a242e

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed

src/content/docs/cloudflare-one/policies/gateway/http-policies/file-sandboxing.mdx

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,29 +13,33 @@ Only available on Enterprise plans. For more information, contact your account t
1313

1414
In addition to [anti-virus (AV) scanning](/cloudflare-one/policies/gateway/http-policies/antivirus-scanning/), Gateway can quarantine previously unseen files downloaded by your users into a sandbox and scan them for malware.
1515

16-
When your users download a file, Gateway will first scan the file with AV scanning. If AV scanning detects malware, Gateway will block the download and log the result. If AV scanning does not detect malware, Gateway will send the file to the sandbox. While in the sandbox, Gateway will monitor the inputs and outputs of the file. While the files are quarantined, Gateway will present a scanning page to your users. If a file passes scanning, Gateway will release the file from quarantine and download it to your user's device. If the file contains malware, Gateway will block the request and log the match as a Block decision in your [HTTP logs](/cloudflare-one/insights/logs/gateway-logs/#http-logs).
16+
If AV scanning does not detect malware in a file download, Gateway will quarantine the file in the sandbox. If the file has not been downloaded before, Gateway will monitor the inputs and outputs of the file and display an interstitial page for the user. If the sandbox does not detect malicious activity, Gateway will release the file from quarantine and download it to your user's device. If the sandbox detects malicious activity, Gateway will block the download. For any subsequent downloads of the file, Gateway will remember and apply the allow/block decision.
17+
18+
Gateway will log any file sandbox decisions in your [HTTP logs](/cloudflare-one/insights/logs/gateway-logs/#http-logs).
1719

1820
```mermaid
1921
flowchart TD
2022
A(["User starts file download"]) --> B["File sent to AV scanner"]
2123
B --> C["Malicious file detected?"]
2224
C -- Yes --> D["Download blocked"]
2325
C -- No --> G["File sent to sandbox"]
24-
G --> n1["First time file appears?"]
26+
G --> n1["First time file downloaded?"]
2527
K["Malicious activity detected?"] -- Yes --> N["Download blocked"]
2628
K -- No --> n3["Download allowed"]
27-
n1 -- Yes --> n2["Interstitial page displayed for user during scan"]
28-
n2 --> K
29+
n2["Interstitial page displayed for user during scan"] --> n4["File activity monitored"]
30+
n1 -- Yes --> n2
31+
n4 --> K
2932
n1 -- No --> K
3033
3134
B@{ shape: subproc}
32-
C@{ shape: diam}
35+
C@{ shape: hex}
3336
D@{ shape: terminal}
34-
n1@{ shape: diam}
35-
K@{ shape: diam}
37+
n1@{ shape: hex}
38+
K@{ shape: hex}
3639
N@{ shape: terminal}
3740
n3@{ shape: terminal}
3841
n2@{ shape: display}
42+
n4@{ shape: rect}
3943
style D stroke:#D50000
4044
style N stroke:#D50000
4145
style n3 stroke:#00C853

0 commit comments

Comments
 (0)