Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@adit-financial/adit-client
Advanced tools
This codebase provides a client interface to access the Adit Api.
Using npm:
$ npm install @adit-financial/adit-client
The Adit Client uses API keys to authenticate requests. Your API keys carry many privileges, so be sure to keep them secure.
Use your API keys by passing them to the client on initialization as the first argument. The client will then automatically send this key in each request.
Credentials:
Choose which environment you want your requests to hit by passing the correct base url to the client on initialization.
https://api.dev.aditfinancial.dev
TBD
import AditClient from 'adit-client'
const aditClient = new AditClient(
{
apiKeyId: <YOUR_API_KEY_ID>,
apiPrivateKey: <YOUR_API_PRIVATE_KEY>,
},
<ADIT_BASE_URL>,
// Optional
{
retries: 3, // Number of request attempts. Default 5.
minTimeout: 100, // Default 100
maxTimeout: 1000, // Default 1000
},
)
const requestData = {
idempotencyKey: '7ba7h811-9ase-11d1-80b4-00c04fd784c8'
name: 'Joe Smith',
email: 'email@email.com',
phone: '4151110000',
identity: {
idType: 'DL',
idNumber: '123-456-789',
issuedState: 'NY',
issuedCountry: 'US',
expirationDate: '10-31-2021',
birthDate: '10-31-1988',
},
}
await aditClient.addWallet(requestData).catch((e) => {
console.log(e.message)
})
///
In order to gain the TypeScript typings (for intellisense / autocomplete) while using CommonJS imports with require() use the following approach:
const AditClient = require('@adit-financial/adit-client').default
Payment related calls (authorize
, charge
, cancel
, and refund
) require a unique uuid to be passed in the idempotencyKey
field. This is used to recognize subsequent retries of the same request.
FAQs
Adit API Client
The npm package @adit-financial/adit-client receives a total of 7 weekly downloads. As such, @adit-financial/adit-client popularity was classified as not popular.
We found that @adit-financial/adit-client demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 open source maintainers 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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.