Listing Thumbnail

    ClamAV API Server: S3 Antivirus, File Upload, and Local Scanning

     Info
    Deployed on AWS
    Free Trial
    Protect your S3 bucket data with ease using our API server, powered by ClamAV Antivirus. Seamlessly integrate our robust and reliable solution into your data processing workflows to ensure that your files are thoroughly scanned and protected against malicious threats, providing peace of mind and maintaining the integrity of your data.

    Overview

    This is a repackaged open source software product wherein additional charges apply for support by Elm Computing.

    Disclaimer: All trademarks referenced in this listing belong to their respective owners. Their use does not imply any affiliation with or endorsement by the trademark holders.

    Our API server, powered by ClamAV Antivirus, offers a comprehensive solution for protecting your valuable data stored in S3 buckets. With its powerful scanning capabilities, our server efficiently detects viruses, malware, and other malicious content, safeguarding your files from potential threats.

    Key Features:

    • Easy Integration: Integrate our API server seamlessly into your existing data processing workflows.

    • Robust Virus Detection: Leverage the powerful scanning engine of ClamAV to detect a wide range of viruses, trojans, worms, and other malware with high accuracy and efficiency.

    • Regularly updated malware database: Continuous updates to the malware database ensure that you are protected from the most recent threats.

    Please find the instructions for deploying this API Server at http://docs.elmcomputing.io .

    Disclaimer of Responsibility

    The ClamAV-based API server provided by Elm Computing is designed solely to facilitate the use of ClamAV for virus scanning. The scanning functionality, detection accuracy, and results are entirely dependent on ClamAV and its virus definitions. Elm Computing does not modify or enhance the core functionality of ClamAV and does not guarantee the accuracy, completeness, or reliability of any scanning results.

    Elm Computing provides support for the proper use and configuration of the API server but is not responsible for any consequences resulting from the use of the service, including but not limited to false positives, false negatives, system security breaches, or data integrity issues. Users are advised to implement additional security measures as appropriate for their use case.

    By using this API server, you acknowledge and accept that Elm Computing is not liable for any direct, indirect, incidental, or consequential damages arising from the use of ClamAV through this API.

    Highlights

    • ClamAV Antivirus Engine
    • Scan Amazon S3 Objects, Uploaded Files, and Server-Local Files
    • Easy Integration with API Endpoints and code Examples

    Details

    Delivery method

    Delivery option
    64-bit (x86) Amazon Machine Image (AMI)

    Latest version

    Operating system
    Ubuntu 26.04

    Deployed on AWS
    New

    Introducing multi-product solutions

    You can now purchase comprehensive solutions tailored to use cases and industries.

    Multi-product solutions

    Features and programs

    Financing for AWS Marketplace purchases

    AWS Marketplace now accepts line of credit payments through the PNC Vendor Finance program. This program is available to select AWS customers in the US, excluding NV, NC, ND, TN, & VT.
    Financing for AWS Marketplace purchases

    Pricing

    Free trial

    Try this product free for 14 days according to the free trial terms set by the vendor. Usage-based pricing is in effect for usage beyond the free trial terms. Your free trial gets automatically converted to a paid subscription when the trial ends, but may be canceled any time before that.

    ClamAV API Server: S3 Antivirus, File Upload, and Local Scanning

     Info
    Pricing is based on actual usage, with charges varying according to how much you consume. Subscriptions have no end date and may be canceled any time.
    Additional AWS infrastructure costs may apply. Use the AWS Pricing Calculator  to estimate your infrastructure costs.

    Usage costs (16)

     Info
    Dimension
    Cost/hour
    m6a.large
    Recommended
    $0.05
    t3.large
    $0.05
    t3a.xlarge
    $0.10
    t3a.large
    $0.05
    m5.2xlarge
    $0.20
    t3a.2xlarge
    $0.20
    m5.xlarge
    $0.10
    t3.medium
    $0.05
    t3.2xlarge
    $0.20
    m6a.4xlarge
    $0.40

    Vendor refund policy

    We do not currently support refunds, but you can cancel at any time.

    How can we make this page better?

    Tell us how we can improve this page, or report an issue with this product.
    Tell us how we can improve this page, or report an issue with this product.

    Legal

    Vendor terms and conditions

    Upon subscribing to this product, you must acknowledge and agree to the terms and conditions outlined in the vendor's End User License Agreement (EULA) .

    Content disclaimer

    Vendors are responsible for their product descriptions and other product content. AWS does not warrant that vendors' product descriptions or other product content are accurate, complete, reliable, current, or error-free.

    Usage information

     Info

    Delivery details

    64-bit (x86) Amazon Machine Image (AMI)

    Amazon Machine Image (AMI)

    An AMI is a virtual image that provides the information required to launch an instance. Amazon EC2 (Elastic Compute Cloud) instances are virtual servers on which you can run your applications and workloads, offering varying combinations of CPU, memory, storage, and networking resources. You can launch as many instances from as many different AMIs as you need.

    Version release notes

    Updated to ClamAV 1.4.4 on Ubuntu 26.04. Updated the API server to the current /api/v1 routes: /api/v1/aws/scan, /api/v1/scan/upload, /api/v1/scan, /api/v1/health, and /api/v1/livez. The server-local scan route is confined to LOCAL_SCAN_DIR.

    Additional details

    Usage instructions

    Accessing the API Server

    After the EC2 instance starts, access the API server through the instance private IP address on port 8080. For security, deploy the instance in a private subnet or restrict inbound access to trusted networks instead of exposing it directly to the internet.

    Example private IP used below: 172.31.39.37.

    API endpoints

    The server-local scan route is enabled on this AMI and is confined to /var/lib/elm-virus-scan/scan-drop through LOCAL_SCAN_DIR. Put files in that directory before calling POST /api/v1/scan. For arbitrary client-provided bytes, use POST /api/v1/scan/upload instead.

    IAM role requirement for S3 scans

    Attach an IAM role to the EC2 instance with read access to the S3 buckets and objects you want to scan. The AWS route uses the instance role and the instance region.

    Curl examples from inside the instance

    Readiness:

    curl http://127.0.0.1:8080/api/v1/health 

    Scan an S3 object:

    curl -X POST http://127.0.0.1:8080/api/v1/aws/scan  -H 'Content-Type: application/json' -d '{"bucket":"my-bucket","key":"path/to/file.pdf","stream":true}'

    Scan uploaded bytes:

    curl --data-binary @/tmp/test_file.txt -H 'Content-Type: application/octet-stream' http://127.0.0.1:8080/api/v1/scan/upload 

    Scan a local drop-zone file:

    sudo install -o elm-virus-scan -g elm-virus-scan -m 0640 /tmp/test_file.txt /var/lib/elm-virus-scan/scan-drop/test_file.txt curl -X POST http://127.0.0.1:8080/api/v1/scan  -H 'Content-Type: application/json' -d '{"file":"/var/lib/elm-virus-scan/scan-drop/test_file.txt"}'

    A completed scan returns HTTP 200 for both clean and infected files. Inspect the JSON response: code 0 means clean, and code 1 means malware was found. Invalid requests return 400 or 403, oversized uploads return 413, and scanner/provider failures return 5xx.

    For more instructions and code examples, visit https://docs.elmcomputing.io .

    Support

    Vendor support

    Please do not hesitate to contact us at support@elmcomputing.io  if you have any questions.

    AWS infrastructure support

    AWS Support is a one-on-one, fast-response support channel that is staffed 24x7x365 with experienced and technical support engineers. The service helps customers of all sizes and technical abilities to successfully utilize the products and features provided by Amazon Web Services.

    Product comparison

     Info
    Updated weekly

    Accolades

     Info
    Top
    100
    In Data Integration
    Top
    10
    In Security
    Top
    10
    In Security, Storage

    Customer reviews

     Info
    Sentiment is AI generated from actual customer reviews on AWS and G2
    Reviews
    Functionality
    Ease of use
    Customer service
    Cost effectiveness
    0 reviews
    Insufficient data
    Insufficient data
    Insufficient data
    Insufficient data
    Positive reviews
    Mixed reviews
    Negative reviews

    Overview

     Info
    AI generated from product descriptions
    Antivirus Scanning Engine
    Powered by ClamAV Antivirus engine for detection of viruses, trojans, worms, and malware
    Malware Database Updates
    Continuously updated malware database to protect against the most recent threats
    S3 Bucket Integration
    Seamless integration with Amazon S3 buckets for file scanning within data processing workflows
    Multi-Language API Support
    API server with code examples and integration support for Python, Go, JavaScript, and Dart
    Malware Detection Engine
    Open-source ClamAV antivirus engine for detecting viruses, worms, trojans, and latest malware threats
    Scanning Modes
    Real-time, scheduled, on-demand, on-access, and API-based virus scanning capabilities
    Automated Threat Response
    Automatic tagging, deletion, or quarantine of infected files with immediate notifications via email, Slack, Microsoft Teams, AWS Security Hub, Systems Manager OpsCenter, or Amazon SNS
    File Processing Capacity
    Support for scanning files up to 2 GB in size across multiple AWS accounts and S3 buckets
    Malware Database Updates
    Continuous updates to malware signatures to protect against latest and emerging threats
    Multi-Storage Platform Support
    Malware scanning across Amazon S3, Amazon EBS, Amazon EFS, and Amazon FSx for object, block, and file storage environments.
    Multiple Scanning Engines
    Support for Sophos, CSS Premium, and CSS Secure engines that can be used individually or simultaneously to optimize detection accuracy and performance.
    Flexible Scanning Models
    Event-based scanning on upload, retroactive scanning on-demand or scheduled, and API-based scanning before write operations for migrations and application workflows.
    In-Tenant Deployment Architecture
    Installation and operation within customer AWS accounts with data remaining in the specified region, supporting private VPC endpoints and linked account management.
    Automated Response and Remediation
    Automated quarantine, tagging, and deletion of detected malware with integration to downstream workflows, alerts, and enforcement policies through object tagging.

    Contract

     Info
    Standard contract
    No

    Customer reviews

    Ratings and reviews

     Info
    0 ratings
    5 star
    4 star
    3 star
    2 star
    1 star
    0%
    0%
    0%
    0%
    0%
    0 reviews
    No customer reviews yet
    Be the first to review this product . We've partnered with PeerSpot to gather customer feedback. You can share your experience by writing or recording a review, or scheduling a call with a PeerSpot analyst.