
Research
/Security News
Weaponizing Discord for Command and Control Across npm, PyPI, and RubyGems.org
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
@cappern/node-red-infoblox
Advanced tools
Node-RED nodes for interacting with Infoblox DDI via the Web API (WAPI).
record:host
From your Node-RED user directory (e.g. ~/.node-red
or /data
in Docker):
npm install @cappern/node-red-infoblox
Restart Node-RED and find the nodes in the palette under "Infoblox".
https://grid-master
2.12
record:a
, network
, fixedaddress
record:host
msg.statusCode
and include response details in msg.payload
.Common message properties:
msg.resource // e.g. "record:a" (Request node)
msg.method // GET | POST | PUT | PATCH | DELETE (Request node)
msg.query // object or querystring, e.g. { name: "host.example.com" }
msg.payload // object for write operations
msg.operation // create | read | update | delete (Host node)
msg.hostname // name for read/delete (Host node)
msg.ref // _ref for update/delete (Host node)
Examples:
// Request: list A records by name
msg.resource = "record:a";
msg.query = { name: "host.example.com" };
return msg;
// Request: create an A record
msg.method = "POST";
msg.resource = "record:a";
msg.payload = { name: "host.example.com", ipv4addr: "192.0.2.10" };
return msg;
// Host: create a host record
msg.operation = "create";
msg.payload = { name: "host.example.com", ipv4addrs: [{ ipv4addr: "192.0.2.10" }] };
return msg;
// Host: update by _ref
msg.operation = "update";
msg.ref = "record:host/ZG5zLmhvc3Qk...:host.example.com/default";
msg.payload = { comment: "updated via Node-RED" };
return msg;
This project is licensed under the AGPL-3.0-or-later.
Pull requests and issues are welcome! Check out the issues page.
FAQs
Node-RED nodes for Infoblox DDI (WAPI) integration.
The npm package @cappern/node-red-infoblox receives a total of 5 weekly downloads. As such, @cappern/node-red-infoblox popularity was classified as not popular.
We found that @cappern/node-red-infoblox demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
/Security News
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
Security News
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Research
The Socket Threat Research Team is tracking weekly intrusions into the npm registry that follow a repeatable adversarial playbook used by North Korean state-sponsored actors.