with Adyntel and Verdict as a Service?
Retrieve all Google ads for a given company domain. See the documentation
Scans a file for malware and other threats. See the docs here
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
adyntel: {
type: "app",
app: "adyntel",
}
},
async run({steps, $}) {
const data = {
"api_key": `${this.adyntel.$auth.api_key}`,
"email": `${this.adyntel.$auth.username}`,
"company_domain": `pipedream.com`,
}
return await axios($, {
method: "post",
url: `https://api.adyntel.com/google`,
data,
})
},
})
Verdict as a Service (VaaS) API provides a powerful interface for automating the analysis of files and URLs for potential threats. Leveraging the capabilities of Pipedream, users can create sophisticated workflows that trigger actions based on the results of the threat analysis. From email attachments to submitted URLs, VaaS can be integrated into a variety of security and data processing pipelines to ensure safety and compliance.
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.");
}
},
})