Verdict-as-a-Service (VaaS) is a service that provides a platform for scanning files for malware and other threats. It allows easy integration in your application. With a few lines of code, you can start scanning files for malware.
Go to siteThe Verdict as a Service (VAAS) API allows developers to create AI-driven applications with confidence. With VAAS, developers can create a wide range of AI-driven applications such as security and fraud detection, personalization recommendations, next-best-action, risk assessment, and wayfinding. VAAS enables developers to quickly, easily and cost-effectively build applications that leverage the power of AI using the flexibility of a cloud-based platform.
Here are a few examples of applications you can build using the Verdict as a Service API:
import Vaas from "gdata-vaas";
export default defineComponent({
props: {
verdict_as_a_service: {
type: "app",
app: "verdict_as_a_service",
}
},
async run({steps, $}) {
// create vaas client
const vaas = await createVaasWithClientCredentialsGrant(
CLIENT_ID,
CLIENT_SECRET,
TOKEN_URL,
VAAS_URL
);
// request verdict for file
const verdict = await vaas.forFile(response.data);
if (verdict === "Malicious") {
console.log("This was malware.");
}
},
})
Scans a file for malware and other threats. See the docs here
Verdict as a Service uses API keys for authentication. When you connect your Verdict as a Service account, Pipedream securely stores the keys so you can easily authenticate to Verdict as a Service APIs in both code and no-code steps.
Contact Vaas at oem@gdata.de to retrieve your connection credentials.
https://github.com/GDATASoftwareAG/vaas#im-interested-in-vaas