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.
The ultra-lightweight Node.js HTTP client.
This is a wrapper around Phin that adds support for retry & looks like request-promise.
npm install phin-retry
const request = require('phin-retry');
// should be used in async context
const response = await request.get('https://jsonplaceholder.typicode.com/posts/1');
await request.post({
url: 'http://localhost:9393/api/post',
body: { msg: 'input' },
retry: 3,
delay: 500
});
// custom retry, error & delay strategy
const response = await request.delete({
url: 'http://localhost:9393/api/delete',
auth: {
user: 'name',
pass: 'secret'
},
errorStrategy: (response, error, options) => {
if (error) return true;
if (response.statusCode >= 400) {
return false;
}
return true;
},
retryStrategy: (response, error, options) => {
if (error) return true;
if (options.method === 'POST') return false;
if (response.statusCode >=200 && response.StatusCode < 300) {
return false;
}
return true;
},
delayStrategy: (response, error, options, delay) => {
if (error) return 5000;
return 2000;
},
});
Access default options through request.defaults
.
Option | Type | Description |
---|---|---|
retry | number | max no of times to retry (1) |
delay | number | delay between retries (100ms) |
networkErrorDelay | any | delay for network errors (1000ms) |
retryStrategy | function | default retry strategy function |
delayStrategy | function | default delay strategy function |
errorStrategy | function | default error strategy function |
It supports all options from phin, refer Phin more details.
Method | Type | Description |
---|---|---|
url | string | request url |
qs | object | query parameters |
auth | object | authentication object |
headers | object | headers object |
retry | number | max no of times to retry |
delay | number | delay between retries |
body | any | equivalent to data in phin |
fullResponse | boolean | returns full phin response |
retryStrategy | function | custom retry strategy function |
delayStrategy | function | custom delay strategy function |
errorStrategy | function | custom error strategy function |
FAQs
The ultra-lightweight Node.js HTTP client
We found that phin-retry 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.
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.