{"id":21281,"date":"2015-04-08T14:22:10","date_gmt":"2015-04-08T14:22:10","guid":{"rendered":"http:\/\/how_to_detect_and_prevent_malware_infected_user_uploads"},"modified":"2024-06-05T16:02:53","modified_gmt":"2024-06-05T23:02:53","slug":"how_to_detect_and_prevent_malware_infected_user_uploads","status":"publish","type":"post","link":"https:\/\/cloudinary.com\/blog\/how_to_detect_and_prevent_malware_infected_user_uploads","title":{"rendered":"How To Prevent Malware And Detect Infected User Uploads"},"content":{"rendered":"<div class=\"wp-block-cloudinary-markdown \"><p>Social networking sites allow users to <a href=\"https:\/\/cloudinary.com\/features\/file_upload_storage\">upload images<\/a> or other types of files that are immediately available to other users via news feeds or notifications. In some cases, attackers can directly spread infected files, but more commonly, they leverage the viral effect and the fact that users are simply unaware that their files are infected through sharing and collaborating with others. As a site owner or application developer, it is your responsibility to protect users and prevent these situations from occurring. Fortunately, Cloudinary makes this easier with its Metascan add-on.<\/p>\n<h2>How to prevent malware in malicious file upload<\/h2>\n<p><a href=\"https:\/\/cloudinary.com\/products\/image_video_technology_platform\">Cloudinary\u2019s image management<\/a> allows you to <a href=\"https:\/\/cloudinary.com\/features\/file_upload_storage\">file upload<\/a>, along with other files like PDFs, directly from your users\u2019 browsers or mobile applications. While most modern image formats are fairly safe, nothing is guaranteed, and the various other file formats that users use to upload and share may be infected with malicious code. We want to ensure that you and your users are safe so that there\u2019s no chance of malware creeping into uploaded files. With Cloudinary\u2019s <a href=\"https:\/\/cloudinary.com\/addons#metascan\">Metascan add-on<\/a>, you can detect and prevent advanced known and unknown malware and threats by scanning and sanitizing your users\u2019 uploaded files.<\/p>\n<h2>Metascan anti-malware add-on<\/h2>\n<p>Brought to you by <a href=\"https:\/\/www.opswat.com\/products\/metascan\">OPSWAT<\/a>, Metascan is fully integrated into Cloudinary\u2019s image management and transformation service. While uploading images to the cloud using Cloudinary\u2019s upload API, you can set the <code>moderation<\/code> upload API parameter to <code>metascan<\/code> in order to request to have your uploaded images and other files automatically scanned and removed if malware is detected. It\u2019s also possible to select batches of previously uploaded files to scan using Cloudinary\u2019s API.<\/p>\n<p>With the Metascan add-on, you don\u2019t need to install any anti-malware software or build a file scanning pipeline. By simply using Cloudinary\u2019s <a href=\"https:\/\/cloudinary.com\/documentation\/upload_images\">image upload API<\/a>, or Admin API for previously uploaded images, all of your images can be scanned and moderated accordingly.<\/p>\n<p>Below is a sample code that requests a Metascan scan of a PDF document that is being uploaded to Cloudinary.<\/p>\n<cld-code-widget\n      class=\" c-code-widget\"\n      snippets=\"[{&quot;sdkId&quot;:&quot;ruby&quot;,&quot;framework&quot;:&quot;ruby&quot;,&quot;language&quot;:&quot;ruby&quot;,&quot;displayName&quot;:&quot;Ruby&quot;,&quot;packageName&quot;:&quot;cloudinary&quot;,&quot;packageVersion&quot;:&quot;2.x&quot;,&quot;packageStatus&quot;:&quot;&quot;,&quot;rawCodeSnippet&quot;:&quot;Cloudinary::Uploader.upload(\\&quot;local_file.pdf\\&quot;, \\n  :moderation =&gt; \\&quot;metascan\\&quot;)&quot;,&quot;codeSnippet&quot;:&quot;Cloudinary::Uploader.upload(\\&quot;local_file.pdf\\&quot;, \\n  :moderation =&gt; \\&quot;metascan\\&quot;)&quot;},{&quot;sdkId&quot;:&quot;php&quot;,&quot;framework&quot;:&quot;php&quot;,&quot;language&quot;:&quot;php&quot;,&quot;displayName&quot;:&quot;PHP&quot;,&quot;packageName&quot;:&quot;cloudinary_php&quot;,&quot;packageVersion&quot;:&quot;1.x&quot;,&quot;packageStatus&quot;:&quot;legacy&quot;,&quot;rawCodeSnippet&quot;:&quot;\\\\Cloudinary\\\\Uploader::upload(\\&quot;local_file.pdf\\&quot;, \\n  array(\\&quot;moderation\\&quot; =&gt; \\&quot;metascan\\&quot;));&quot;,&quot;codeSnippet&quot;:&quot;\\\\Cloudinary\\\\Uploader::upload(\\&quot;local_file.pdf\\&quot;, \\n  array(\\&quot;moderation\\&quot; =&gt; \\&quot;metascan\\&quot;));&quot;},{&quot;sdkId&quot;:&quot;python&quot;,&quot;framework&quot;:&quot;python&quot;,&quot;language&quot;:&quot;python&quot;,&quot;displayName&quot;:&quot;Python&quot;,&quot;packageName&quot;:&quot;cloudinary&quot;,&quot;packageVersion&quot;:&quot;1.x&quot;,&quot;packageStatus&quot;:&quot;&quot;,&quot;rawCodeSnippet&quot;:&quot;cloudinary.uploader.upload(\\&quot;local_file.pdf\\&quot;,\\n  moderation = \\&quot;metascan\\&quot;)&quot;,&quot;codeSnippet&quot;:&quot;cloudinary.uploader.upload(\\&quot;local_file.pdf\\&quot;,\\n  moderation = \\&quot;metascan\\&quot;)&quot;},{&quot;sdkId&quot;:&quot;nodejs&quot;,&quot;framework&quot;:&quot;nodejs&quot;,&quot;language&quot;:&quot;javascript&quot;,&quot;displayName&quot;:&quot;Node.js&quot;,&quot;packageName&quot;:&quot;cloudinary&quot;,&quot;packageVersion&quot;:&quot;2.x&quot;,&quot;packageStatus&quot;:&quot;&quot;,&quot;rawCodeSnippet&quot;:&quot;cloudinary.uploader.upload(\\&quot;local_file.pdf\\&quot;, \\n  function(result) { console.log(result); }, \\n  { moderation: \\&quot;metascan\\&quot; });&quot;,&quot;codeSnippet&quot;:&quot;cloudinary.uploader.upload(\\&quot;local_file.pdf\\&quot;, \\n  function(result) { console.log(result); }, \\n  { moderation: \\&quot;metascan\\&quot; });&quot;},{&quot;sdkId&quot;:&quot;java&quot;,&quot;framework&quot;:&quot;java&quot;,&quot;language&quot;:&quot;java&quot;,&quot;displayName&quot;:&quot;Java&quot;,&quot;packageName&quot;:&quot;cloudinary&quot;,&quot;packageVersion&quot;:&quot;2.x&quot;,&quot;packageStatus&quot;:&quot;&quot;,&quot;rawCodeSnippet&quot;:&quot;cloudinary.uploader().upload(\\&quot;local_file.pdf\\&quot;, \\n  ObjectUtils.asMap(\\&quot;moderation\\&quot;, \\&quot;metascan\\&quot;));&quot;,&quot;codeSnippet&quot;:&quot;cloudinary.uploader().upload(\\&quot;local_file.pdf\\&quot;, \\n  ObjectUtils.asMap(\\&quot;moderation\\&quot;, \\&quot;metascan\\&quot;));&quot;}]\"\n      parsed-url=\"[]\"\n      with-url=\"false\"\n    >\n      <span class=\"u-visually-hidden\">Loading code examples<\/span>\n    <\/cld-code-widget>\n<p>With this request, Metascan <a href=\"https:\/\/cloudinary.com\/documentation\/metadefender_anti_malware_protection_addon\">performs scans with anti-malware engines<\/a> (ESet, AVG, ClaimWin and Norman) on images and files that are being uploaded. Scanning is done asynchronously within seconds, meaning there is no impact on user experience. If Metascan detects malware in a file, the file is removed and the CDN cache is invalidated. The original file is stored in secondary storage, which enables you to recover it in case you want to override the Metascan results.<\/p>\n<p>Additionally, you can set up notifications that let you know which files were marked as safe or rejected. You have the option of scanning your user uploaded files with Cloudinary before publishing them, allowing you to share only uploaded content that you know has gotten the green light.<\/p>\n<p>As you can see in the screenshot below, <a href=\"https:\/\/cloudinary.com\/blog\/the_rise_of_the_media_experience_cloud\">Cloudinary\u2019s online media library<\/a> allows you to further control this process with multiple lists of pending scan requests, and approved or rejected files, permitting you to override these results if necessary. These can also be performed by the API. For example, if a user reports a file that wasn\u2019t initially found to be malicious, you can mark it as problematic with a single click or API call and remove it or approve it if you think that it was mistakenly marked as containing malware. <a href=\"https:\/\/cloudinary.com\/documentation\/perception_point_malware_detection_addon\">See our documentation to learn more about the Metascan add-on<\/a>.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/res-2.cloudinary.com\/cloudinary\/image\/upload\/w_500,bo_1px_solid_rgb:aaa\/metascan_rejected_moderation_queue.png\" alt=\"Metascan moderation queue\" loading=\"lazy\" class=\"c-transformed-asset\"  width=\"502\" height=\"218\"\/><\/p>\n<h2>Final Notes<\/h2>\n<p>With all of the cyber threats in the world today, sharing on social networks makes malware distribution fast and dangerous. While most image formats are relatively safe, other formats, such as PDFs, are more risky. At Cloudinary, we are committed to helping you protect your users, website or web application from malware and viruses. Using Cloudinary\u2019s Metascan add-on prevents vulnerabilities and enhances overall site security.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/res.cloudinary.com\/cloudinary\/image\/upload\/w_500\/metascan_addon_screenshot.jpg\" alt=\"Metascan add-on screenshot\" loading=\"lazy\" class=\"c-transformed-asset\"  width=\"500\" height=\"212\"\/><\/p>\n<p>You can try the Metascan add-on for free, just by <a href=\"https:\/\/cloudinary.com\/addons#metascan\">subscribing to the free add-on plan<\/a>. If you don\u2019t have a Cloudinary account yet, <a href=\"https:\/\/cloudinary.com\/users\/register_free\">sign up for a free account here<\/a>.<\/p>\n<hr \/>\n<h2>Further Reading on File Upload<\/h2>\n<ul>\n<li>\n<a href=\"https:\/\/cloudinary.com\/blog\/automating_file_upload_and_sharing\">File upload and storage<\/a> with Cloudinary<\/li>\n<li>\n<a href=\"https:\/\/cloudinary.com\/documentation\/upload_images\">Image Upload &#8211; Image Management for Developers<\/a>\n<\/li>\n<li>\n<a href=\"https:\/\/cloudinary.com\/documentation\/upload_widget\">Cloudinary\u2019s upload widget<\/a>\n<\/li>\n<li>\n<a href=\"https:\/\/cloudinary.com\/blog\/file_upload_with_php\">PHP file upload<\/a> with Cloudinary<\/li>\n<li>\n<a href=\"https:\/\/cloudinary.com\/blog\/file_upload_with_ajax\">AJAX file upload<\/a> &#8211; Quick tutorial &amp; time saving Tips<\/li>\n<li>\n<a href=\"https:\/\/cloudinary.com\/blog\/impressed_by_whatsapp_technology_build_a_whatsapp_clone_with_image_and_video_upload\">Android file upload<\/a> &#8211; Clone WhatsApp technology using Cloudinary<\/li>\n<li>\n<a href=\"https:\/\/cloudinary.com\/blog\/how_to_build_a_real_time_photo_sharing_website_in_a_few_easy_steps\">Build a real-time photo sharing website<\/a> in a few easy steps<\/li>\n<li>\n<a href=\"https:\/\/cloudinary.com\/blog\/direct_image_uploads_from_the_browser_to_the_cloud_with_jquery\">jQuery image upload<\/a> plugin<\/li>\n<\/ul>\n<\/div>","protected":false},"excerpt":{"rendered":"","protected":false},"author":41,"featured_media":23363,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_cloudinary_featured_overwrite":false,"footnotes":""},"categories":[1],"tags":[25,91,92,119,176,183,214,229,257],"class_list":["post-21281","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized","tag-asset-management","tag-django","tag-dotnet","tag-file-upload","tag-java","tag-jquery","tag-node","tag-php","tag-ruby-on-rails"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.6 (Yoast SEO v26.9) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How To Prevent Malware in Malicious File Upload<\/title>\n<meta name=\"description\" content=\"How to detect and prevent malware and virus infections from user uploaded images and files. Upload directly from a browser without the risk of infection.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/cloudinary.com\/blog\/how_to_detect_and_prevent_malware_infected_user_uploads\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Prevent Malware And Detect Infected User Uploads\" \/>\n<meta property=\"og:description\" content=\"How to detect and prevent malware and virus infections from user uploaded images and files. Upload directly from a browser without the risk of infection.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/cloudinary.com\/blog\/how_to_detect_and_prevent_malware_infected_user_uploads\" \/>\n<meta property=\"og:site_name\" content=\"Cloudinary Blog\" \/>\n<meta property=\"article:published_time\" content=\"2015-04-08T14:22:10+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-06-05T23:02:53+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/v1647045702\/40_malware\/40_malware-jpg?_i=AA\" \/>\n\t<meta property=\"og:image:width\" content=\"2000\" \/>\n\t<meta property=\"og:image:height\" content=\"1100\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"NewsArticle\",\"@id\":\"https:\/\/cloudinary.com\/blog\/how_to_detect_and_prevent_malware_infected_user_uploads#article\",\"isPartOf\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/how_to_detect_and_prevent_malware_infected_user_uploads\"},\"author\":{\"name\":\"\",\"@id\":\"\"},\"headline\":\"How To Prevent Malware And Detect Infected User Uploads\",\"datePublished\":\"2015-04-08T14:22:10+00:00\",\"dateModified\":\"2024-06-05T23:02:53+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/how_to_detect_and_prevent_malware_infected_user_uploads\"},\"wordCount\":9,\"publisher\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/how_to_detect_and_prevent_malware_infected_user_uploads#primaryimage\"},\"thumbnailUrl\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1647045702\/40_malware\/40_malware.jpg?_i=AA\",\"keywords\":[\"Asset Management\",\"Django\",\"DotNet\",\"File-upload\",\"Java\",\"jQuery\",\"Node\",\"PHP\",\"Ruby on Rails\"],\"inLanguage\":\"en-US\",\"copyrightYear\":\"2015\",\"copyrightHolder\":{\"@id\":\"https:\/\/cloudinary.com\/#organization\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/cloudinary.com\/blog\/how_to_detect_and_prevent_malware_infected_user_uploads\",\"url\":\"https:\/\/cloudinary.com\/blog\/how_to_detect_and_prevent_malware_infected_user_uploads\",\"name\":\"How To Prevent Malware in Malicious File Upload\",\"isPartOf\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/how_to_detect_and_prevent_malware_infected_user_uploads#primaryimage\"},\"image\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/how_to_detect_and_prevent_malware_infected_user_uploads#primaryimage\"},\"thumbnailUrl\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1647045702\/40_malware\/40_malware.jpg?_i=AA\",\"datePublished\":\"2015-04-08T14:22:10+00:00\",\"dateModified\":\"2024-06-05T23:02:53+00:00\",\"description\":\"How to detect and prevent malware and virus infections from user uploaded images and files. Upload directly from a browser without the risk of infection.\",\"breadcrumb\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/how_to_detect_and_prevent_malware_infected_user_uploads#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/cloudinary.com\/blog\/how_to_detect_and_prevent_malware_infected_user_uploads\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cloudinary.com\/blog\/how_to_detect_and_prevent_malware_infected_user_uploads#primaryimage\",\"url\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1647045702\/40_malware\/40_malware.jpg?_i=AA\",\"contentUrl\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1647045702\/40_malware\/40_malware.jpg?_i=AA\",\"width\":2000,\"height\":1100},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/cloudinary.com\/blog\/how_to_detect_and_prevent_malware_infected_user_uploads#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/cloudinary.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Prevent Malware And Detect Infected User Uploads\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/cloudinary.com\/blog\/#website\",\"url\":\"https:\/\/cloudinary.com\/blog\/\",\"name\":\"Cloudinary Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/cloudinary.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/cloudinary.com\/blog\/#organization\",\"name\":\"Cloudinary Blog\",\"url\":\"https:\/\/cloudinary.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cloudinary.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649718331\/Web_Assets\/blog\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877.png?_i=AA\",\"contentUrl\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649718331\/Web_Assets\/blog\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877.png?_i=AA\",\"width\":312,\"height\":60,\"caption\":\"Cloudinary Blog\"},\"image\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How To Prevent Malware in Malicious File Upload","description":"How to detect and prevent malware and virus infections from user uploaded images and files. Upload directly from a browser without the risk of infection.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/cloudinary.com\/blog\/how_to_detect_and_prevent_malware_infected_user_uploads","og_locale":"en_US","og_type":"article","og_title":"How To Prevent Malware And Detect Infected User Uploads","og_description":"How to detect and prevent malware and virus infections from user uploaded images and files. Upload directly from a browser without the risk of infection.","og_url":"https:\/\/cloudinary.com\/blog\/how_to_detect_and_prevent_malware_infected_user_uploads","og_site_name":"Cloudinary Blog","article_published_time":"2015-04-08T14:22:10+00:00","article_modified_time":"2024-06-05T23:02:53+00:00","og_image":[{"width":2000,"height":1100,"url":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/v1647045702\/40_malware\/40_malware-jpg?_i=AA","type":"image\/jpeg"}],"twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"NewsArticle","@id":"https:\/\/cloudinary.com\/blog\/how_to_detect_and_prevent_malware_infected_user_uploads#article","isPartOf":{"@id":"https:\/\/cloudinary.com\/blog\/how_to_detect_and_prevent_malware_infected_user_uploads"},"author":{"name":"","@id":""},"headline":"How To Prevent Malware And Detect Infected User Uploads","datePublished":"2015-04-08T14:22:10+00:00","dateModified":"2024-06-05T23:02:53+00:00","mainEntityOfPage":{"@id":"https:\/\/cloudinary.com\/blog\/how_to_detect_and_prevent_malware_infected_user_uploads"},"wordCount":9,"publisher":{"@id":"https:\/\/cloudinary.com\/blog\/#organization"},"image":{"@id":"https:\/\/cloudinary.com\/blog\/how_to_detect_and_prevent_malware_infected_user_uploads#primaryimage"},"thumbnailUrl":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1647045702\/40_malware\/40_malware.jpg?_i=AA","keywords":["Asset Management","Django","DotNet","File-upload","Java","jQuery","Node","PHP","Ruby on Rails"],"inLanguage":"en-US","copyrightYear":"2015","copyrightHolder":{"@id":"https:\/\/cloudinary.com\/#organization"}},{"@type":"WebPage","@id":"https:\/\/cloudinary.com\/blog\/how_to_detect_and_prevent_malware_infected_user_uploads","url":"https:\/\/cloudinary.com\/blog\/how_to_detect_and_prevent_malware_infected_user_uploads","name":"How To Prevent Malware in Malicious File Upload","isPartOf":{"@id":"https:\/\/cloudinary.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/cloudinary.com\/blog\/how_to_detect_and_prevent_malware_infected_user_uploads#primaryimage"},"image":{"@id":"https:\/\/cloudinary.com\/blog\/how_to_detect_and_prevent_malware_infected_user_uploads#primaryimage"},"thumbnailUrl":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1647045702\/40_malware\/40_malware.jpg?_i=AA","datePublished":"2015-04-08T14:22:10+00:00","dateModified":"2024-06-05T23:02:53+00:00","description":"How to detect and prevent malware and virus infections from user uploaded images and files. Upload directly from a browser without the risk of infection.","breadcrumb":{"@id":"https:\/\/cloudinary.com\/blog\/how_to_detect_and_prevent_malware_infected_user_uploads#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cloudinary.com\/blog\/how_to_detect_and_prevent_malware_infected_user_uploads"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cloudinary.com\/blog\/how_to_detect_and_prevent_malware_infected_user_uploads#primaryimage","url":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1647045702\/40_malware\/40_malware.jpg?_i=AA","contentUrl":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1647045702\/40_malware\/40_malware.jpg?_i=AA","width":2000,"height":1100},{"@type":"BreadcrumbList","@id":"https:\/\/cloudinary.com\/blog\/how_to_detect_and_prevent_malware_infected_user_uploads#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cloudinary.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How To Prevent Malware And Detect Infected User Uploads"}]},{"@type":"WebSite","@id":"https:\/\/cloudinary.com\/blog\/#website","url":"https:\/\/cloudinary.com\/blog\/","name":"Cloudinary Blog","description":"","publisher":{"@id":"https:\/\/cloudinary.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/cloudinary.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/cloudinary.com\/blog\/#organization","name":"Cloudinary Blog","url":"https:\/\/cloudinary.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cloudinary.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649718331\/Web_Assets\/blog\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877.png?_i=AA","contentUrl":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649718331\/Web_Assets\/blog\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877.png?_i=AA","width":312,"height":60,"caption":"Cloudinary Blog"},"image":{"@id":"https:\/\/cloudinary.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":""}]}},"jetpack_featured_media_url":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1647045702\/40_malware\/40_malware.jpg?_i=AA","_links":{"self":[{"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/posts\/21281","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/users\/41"}],"replies":[{"embeddable":true,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/comments?post=21281"}],"version-history":[{"count":6,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/posts\/21281\/revisions"}],"predecessor-version":[{"id":34426,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/posts\/21281\/revisions\/34426"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/media\/23363"}],"wp:attachment":[{"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/media?parent=21281"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/categories?post=21281"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/tags?post=21281"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}