IoT/connected device discovery and vulnerability assessment API
Adds a contact to a specific static list. See the documentation
Create or update a batch of contacts by its ID or email. See the documentation
Create a WhatsApp, LinkedIn, or SMS message. See the documentation
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 HubSpot API enables developers to integrate into HubSpots CRM, CMS, Conversations, and other features. It allows for automated management of contacts, companies, deals, and marketing campaigns, enabling custom workflows, data synchronization, and task automation. This streamlines operations and boosts customer engagement, with real-time updates for rapid response to market changes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
hubspot: {
type: "app",
app: "hubspot",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.hubapi.com/integrations/v1/me`,
headers: {
Authorization: `Bearer ${this.hubspot.$auth.oauth_access_token}`,
},
})
},
})