
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
@aweber/zendesk-requests
Advanced tools
Front end client for zendesk
Quickstart example:
import ZendeskRequests, { RequestsError } from '@aweber/zendesk-requests';
const requests = new ZendeskRequests('mysubdomain');
const promise = requests.create({
requester: {
name: 'Anonymous'
},
subject: 'Request subject',
comment: {
body: 'This is the body'
}
});
promise.catch((e) => {
if(e instanceof RequestsError &&
e.status === 422 &&
e.json.error === 'RecordInvalid') {
// Handle validation error
} else {
throw e;
}
});
Creates a client for the front end.
Param | Type | Description |
---|---|---|
subdomain | string | the subdomain for your account |
Promise.<Object, Error>
Creates an anonymous Zendesk request.
Returns: Promise.<Object, Error>
- the zendesk request that was created is
resolved by the promise, else it throws a RequestsError
Param | Type | Description |
---|---|---|
request | Object | request object as documented in zendesk |
Thrown when a non-successful HTTP status was returned.
Key | Description |
---|---|
message | Response body text |
status | HTTP status code |
json | Response body as JSON, or null if not valid JSON |
FAQs
Front end client for zendesk
The npm package @aweber/zendesk-requests receives a total of 4 weekly downloads. As such, @aweber/zendesk-requests popularity was classified as not popular.
We found that @aweber/zendesk-requests demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.