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.
Simple typescript base45 (charset of Qr codes, alphanumeric mode) encoder/decoder.
This library exports an ES module, together with the required type annotations.
import * as b45 from "base45-ts";
const buffer : Uint8Array = new TextEncoder().encode('Hello!')
const e : string = b45.encode(buffer);
console.log(e); // Will output %69 VD92EX0"
const d = b45.decode('%69 VD92EX0')
console.log(d); // will output 'Uint8Array(7) [72, 101, 108, 108, 111, 33, 33]'
const d = b45.decodeToUtf8String('%69 VD92EX0')
console.log(d); // will output 'Hello!'
decode(utf8StringArg: string): Uint8Array
Decode a base45-encoded string
string
: A base45-encoded stringAn Uint8Array
containing the decoded data
decodeToUtf8String(utf8StringArg: string): string
Same as decode, but returns a string instead of a typed array. If the base45-encoded data was not valid UTF-8, throws an error.
string
: base45-encoded string representing an utf8 stringthe decoded string
encode(byteArrayArg: Uint8Array | number[]): string
Encode binary data to base45
Uint8Array | number[]
An array of bytes to encodea base45-encoded string
This library doesn't have any dependency.
npm run build
npm test
FAQs
type-safe base45 encoder and decoder
The npm package base45-ts receives a total of 196 weekly downloads. As such, base45-ts popularity was classified as not popular.
We found that base45-ts 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.