Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
@maccuaa/intellitrust-admin-sdk
Advanced tools
This is a JavaScript client for the Entrust Datacard IntelliTrust Administration API. This module can be used in the following environments:
It can be used in both TypeScript and JavaScript projects.
npm install @maccuaa/intellitrust-admin-sdk --save
NOTE: Make sure to replace the configuration values in the examples with the values from your IntelliTrust account!
import * as AdminSDK from "@maccuaa/intellitrust-admin-sdk";
const basePath = "https://entrust.us.trustedauth.com";
// Admin API application credentials
const credentials: AdminSDK.AdminApiAuthentication = {
applicationId: "792130ae-fe2a-4a83-beb6-afc4306ac9fe",
sharedSecret: "b_Zv2IRQZe90ENkK59pzFQYrq1aZUJExvv4s7MJM53Q"
};
// Create a new instance of the API.
const sdk = new AdminSDK.API({
basePath
});
// Authenticate to the Admin API application.
const authResponse = await sdk.authenticateAdminApiUsingPOST(credentials);
// Get the authToken from the response
const { authToken } = authResponse.data;
// Set the authToken so it can be used in all API calls
sdk.setApiKey(authToken);
// Exampe: List all Authentication API applications
const listResponse = await sdk.listAuthApiApplicationsUsingGET();
// Print the response
console.log(listResponse.data);
For more information on how to use the APIs please refer to the IntelliTrust Administration API documentation.
FAQs
JavaScript client for @maccuaa/intellitrust-admin-sdk
The npm package @maccuaa/intellitrust-admin-sdk receives a total of 117 weekly downloads. As such, @maccuaa/intellitrust-admin-sdk popularity was classified as not popular.
We found that @maccuaa/intellitrust-admin-sdk 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
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.