
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
@gwansikk/query-fetch
Advanced tools
The query-fetch is a simple and lightweight HTTP Request library.
npm i @gwansikk/server-chain
yarn add @gwansikk/server-chain
const server = ServerChain({
key: 'INSTANCE',
baseURL: 'https://jsonplaceholder.typicode.com',
});
server.get({ url: 'posts/1' }).then((data) => console.log(data));
const server = ServerChain({
key: 'INTERCEPTOR',
baseURL: 'https://jsonplaceholder.typicode.com',
interceptors: {
request: (request) => {
console.log('** request interceptor **');
// You need to modify the request and return the modified request.
// For example, you can add a specific header to the request or modify the URL.
request.headers = {
...request.headers,
Authorization: 'Bearer YOUR_ACCESS_TOKEN',
};
return request;
},
response: (response) => {
console.log('** response interceptor **');
// You need to modify the response and return the modified response.
return response;
},
error: (response) => {
console.log('** error interceptor **');
// You need to modify the error response and return the modified response.
return response;
},
},
});
Information describing how to contribute can be found in the file.
FAQs
Lightweight and Easy-to-Use Fetch API Extension Library
The npm package @gwansikk/query-fetch receives a total of 0 weekly downloads. As such, @gwansikk/query-fetch popularity was classified as not popular.
We found that @gwansikk/query-fetch demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.