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.
A versatile and user-friendly API for accessing web services, proxy check, currency rates, crypto info, news, translation, and more.
MZR-API is a Node.js module designed to simplify sending requests to the MZR API and reduce error rates. It provides an easy-to-use interface for interacting with the MZR API.
npm install mzr-api
pnpm add mzr-api
yarn add mzr-api
Here are some usage examples. For more detailed information and additional examples, please refer to our documentation.
const { version } = require('mzr-api');
console.log(version);
const { Api } = require('mzr-api');
const mzrapi = new Api('YOUR_API_KEY');
(async () => {
const coins = ['BTC', 'ETH'];
const currencies = ['USD', 'EUR', 'TRY'];
const data = await mzrapi.crypto(coins, currencies);
console.log(data);
})();
const { Api } = require('mzr-api');
const mzrapi = new Api('YOUR_API_KEY');
(async () => {
const data = await mzrapi.minecraftServer('mc.hypixel.net');
console.log(data);
})();
const { Api } = require('mzr-api');
const mzrapi = new Api('YOUR_API_KEY');
(async () => {
const data = await mzrapi.proxyCheck(['username:password@ip:port', 'username2:password2@ip2:port2']);
console.log(data);
})();
For more examples and detailed information, please refer to our documentation.
If you would like to contribute, please check out our Contributing Guide.
This project is licensed under the MIT Lisansı.
FAQs
A versatile and user-friendly API for accessing web services, proxy check, currency rates, crypto info, news, translation, and more.
The npm package mzr-api receives a total of 10 weekly downloads. As such, mzr-api popularity was classified as not popular.
We found that mzr-api 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
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.