
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
This holds the code for the webhooks plug client used to connect to the server
yarn add webplug
import Webplug from "webplug";
const webplugClient = new Webplug({
url: "api-gateway-url",
apiKey: "api-key-api-gateway",
});
webplugClient.services.createconst service = await webplugClient.services.create("service-name");
webplugClient.services.allconst services = await webplugClient.services.all();
webplugClient.services.getconst service = await webplugClient.services.get("service-id");
webplugClient.services.deleteconst service = await webplugClient.services.delete("service-id");
webplugClient.users.createconst user = await webplugClient.users.create("name-of-user", "service-id");
webplugClient.users.allconst users = await webplugClient.users.all("service-id");
webplugClient.users.getconst user = await webplugClient.users.get("user-id");
webplugClient.users.deleteconst user = await webplugClient.users.delete("user-id");
webplugClient.subscriptions.createconst subscription = await webplugClient.subscriptions.create(
"event-type-name",
"endpoint-url",
"id-of-user"
);
webplugClient.subscriptions.allconst subscriptions = await webplugClient.subscriptions.all("event-type-id");
webplugClient.subscriptions.getconst subscription = await webplugClient.subscriptions.get("subscription-id");
webplugClient.subscriptions.deleteconst subscription = await webplugClient.subscriptions.delete(
"subscription-id"
);
webplugClient.eventTypes.createconst eventType = await webplugClient.eventTypes.create(
"event-type-name",
"service-id"
);
webplugClient.eventTypes.allconst eventTypes = await webplugClient.eventTypes.all("service-id");
webplugClient.eventTypes.getconst eventType = await webplugClient.eventTypes.get("event-type-id");
webplugClient.eventTypes.deleteconst eventType = await webplugClient.eventTypes.delete("event-type-id");
webplugClient.events.publishconst event = await webplugClient.events.create(
"event-type-name",
"user-id",
"message-payload"
);
FAQs
This holds the code for the webhooks plug client used to connect to the server
We found that webplug demonstrated a not healthy version release cadence and project activity because the last version was released 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.