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.
@rbbn/distant-codecs
Advanced tools
Holds various codecs that can be used with Distant.
Install using npm:
npm install @distant/distant-codecs
or yarn:
yarn add @distant/distant-codecs
Use the package like so:
import { createDistantProtobufCodec } from '@distant/distant-codecs'
const codec = createDistantProtobufCodec()
const message = { foo: 55 }
const invalidMessageError = codec.verify(message)
if (invalidMessageError) {
console.error("The message is invalid: " + invalidMessageError)
return
}
const encodedMessage = codec.encode(message)
const decodedMessage = codec.decode(encodedMessage)
expect(decodedMessage).toEqual(message)
1.2.0 - 2023-09-13
distant-remote
KAJ-1638
KAJ-1644
distant-vchannel
FAQs
Codecs for Distant
The npm package @rbbn/distant-codecs receives a total of 64 weekly downloads. As such, @rbbn/distant-codecs popularity was classified as not popular.
We found that @rbbn/distant-codecs 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.