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.
Modern, fast, simple KV storage.
Using npm (or yarn):
$ npm install monoce # or yarn add monoce
⚠️ Warning! - Currently, you can create database only this web site: https://www.monoce.com (later you can use self-hosted the Monoce)
Use for TypeScript:
import { MonoceInstance } from 'monoce'
Use for JavaScript:
const { MonoceInstance } = require('monoce')
❗ Worked copy-past example:
const monoce = new MonoceInstance({ database: 'monoce', token: '43d51bef-c1eb-43db-b961-58f4ad9a105e' })
const requestInitialization = async () => {
const setRequest = await monoce.set({
document: 'monoce',
payload: {
AnyJSONPayload: 'AnyJSONValue'
}
})
console.log(setRequest)
/**
* {
* AnyJSONPayload: 'AnyJSONValue'
* }
*/
const getRequest = await monoce.get({
document: 'monoce'
})
console.log(getRequest)
/**
* {
* AnyJSONPayload: 'AnyJSONValue'
* }
*/
const updateRequest = await monoce.update({
document: 'monoce',
payload: {
AnyOtherJSONPayload: 'AnyOtherJSONValue'
}
})
console.log(updateRequest)
/**
* {
* AnyJSONPayload: 'AnyJSONValue',
* AnyOtherJSONPayload: 'AnyOtherJSONValue'
* }
*/
const deleteRequest = await monoce.delete({
document: 'monoce'
})
console.log(deleteRequest)
/**
* {
* databse: 'monoce',
* document: 'monoce'
* }
*/
}
requestInitialization()
FAQs
Monoce - modern, fast, simple KV storage.
The npm package monoce receives a total of 1 weekly downloads. As such, monoce popularity was classified as not popular.
We found that monoce 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.