IoT/connected device discovery and vulnerability assessment API
Allows you to add one or more email addresses to the global suppressions group. See the docs here
Allows you to create a new contact list. See the docs here
Allows you to delete all email addresses on your blocks list. See the docs here
Firmalyzer IoTVAS API provides a platform for assessing the security of IoT devices. By using this API, you can automate the analysis of firmware, uncover vulnerabilities, check for outdated software, and verify compliance with security standards. Integrating Firmalyzer with Pipedream allows for the seamless incorporation of IoT security checks into broader automation workflows, which can facilitate continuous monitoring, alerting, and reporting within your infrastructure.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
firmalyzer_iotvas: {
type: "app",
app: "firmalyzer_iotvas",
}
},
async run({steps, $}) {
const data = {
"snmp_sysdescr": ``,
"ftp_banner": `AXIS P3346 Fixed Dome Network Camera 5.20 (2017) ready.`,
"telnet_banner": ``,
"hostname": ``,
"http_response": ``,
"https_response": ``,
"upnp_response": ``,
"nic_mac": ``,
}
return await axios($, {
method: "post",
url: `https://iotvas-api.firmalyzer.com/api/v1/device/detect`,
headers: {
"Accept": `application/json`,
"Content-Type": `application/json`,
"x-api-key": `${this.firmalyzer_iotvas.$auth.api_key}`,
},
data,
})
},
})
The Twilio SendGrid API opens up a world of possibilities for email automation, enabling you to send emails efficiently and track their performance. With this API, you can programmatically create and send personalized email campaigns, manage contacts, and parse inbound emails for data extraction. When you harness the power of Pipedream, you can connect SendGrid to hundreds of other apps to automate workflows, such as triggering email notifications based on specific actions, syncing email stats with your analytics, or handling incoming emails to create tasks or tickets.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sendgrid: {
type: "app",
app: "sendgrid",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.sendgrid.com/v3/user/account`,
headers: {
Authorization: `Bearer ${this.sendgrid.$auth.api_key}`,
},
})
},
})