Content distribution

By regularly scanning content before distribution, organizations can demonstrate their commitment to security and help build trust with their users. You don’t want to be the source from which a user downloads malware!

Our customers use the following options to protect their internal and external users in real-time:

Block infected file download (#)

You can allow downloads only if the file is clean using an S3 bucket policy. Therefore, you block downloads of infected and unscanned files.

Replace BUCKET_NAME with the name of your S3 bucket.

{
  "Version": "2012-10-17",
  "Statement": [{
    "Sid": "bucketAVAllowClean",
    "Effect": "Allow",
    "Principal": "*",
    "Action": "s3:GetObject*",
    "Resource": "arn:aws:s3:::BUCKET_NAME/*",
    "Condition": {
      "StringEquals": {
        "s3:ExistingObjectTag/bucketav": "clean"
      }
    }
  }
}

Setup (#)

  1. Follow the Getting started guide (reporting part is optional).
  2. Set the DeleteInfectedFiles configuration parameter to false.
  3. Apply the bucket policy from above to the S3 bucket.

Reporting only (#)

Awareness of potential threats might be good enough and minimizes the impact on your content.

Setup (#)

  1. Follow the Getting started guide.
  2. Set the DeleteInfectedFiles configuration parameter to false.

Need more help?

Write us, and we'll get back to you as soon as we can.

Send us an email