|
|
Scan an Azure Blob for viruses
Scan the contents of a single Azure Blob and its content for viruses. Leverage continuously updated signatures for millions of threats, and advanced high-performance scanning capabilities. Over 17 million virus and malware signatures. Continuous cloud-based updates. Wide file format support including Office, PDF, HTML, Flash. Zip support including .Zip, .Rar, .DMG, .Tar, and other archive formats. Multi-threat scanning across viruses, malware, trojans, ransomware, and spyware. High-speed in-memory scanning delivers subsecond typical response time.
var settings = {
"url": "https://api.cloudmersive.com/virus/scan/cloud-storage/azure-blob/single",
"method": "POST",
"timeout": 0,
"headers": {
"connectionString": "",
"containerName": "",
"blobPath": "",
"Apikey": "YOUR-API-KEY-HERE"
},
};
$.ajax(settings).done(function (response) {
console.log(response);
});
|