
Research
npm Malware Targets Telegram Bot Developers with Persistent SSH Backdoors
Malicious npm packages posing as Telegram bot libraries install SSH backdoors and exfiltrate data from Linux developer machines.
@aws-sdk/util-utf8-browser
Advanced tools
The @aws-sdk/util-utf8-browser package is designed for encoding and decoding UTF-8 content in web browsers. It provides utilities to convert between string data and Uint8Array binary format, facilitating the handling of text data in web applications that interact with AWS services or any other use cases requiring UTF-8 encoding/decoding.
UTF-8 Encoding
This feature allows you to encode a JavaScript string into a Uint8Array using UTF-8 encoding. It's useful for preparing text data for binary-safe transmission or storage.
const { fromUtf8 } = require('@aws-sdk/util-utf8-browser');
const encodedData = fromUtf8('Hello, world!');
UTF-8 Decoding
This feature enables the decoding of a Uint8Array binary data back into a JavaScript string using UTF-8 decoding. It's essential for converting received binary data into a human-readable format.
const { toUtf8 } = require('@aws-sdk/util-utf8-browser');
const decodedString = toUtf8(new Uint8Array([72, 101, 108, 108, 111]));
The 'text-encoding' package provides a polyfill for the Encoding Living Standard's API, offering encoding and decoding of textual data. It covers a broader range of encodings compared to @aws-sdk/util-utf8-browser, which focuses specifically on UTF-8.
The 'buffer' package is a node.js library for binary data manipulation that can be used in browsers. It includes methods for encoding and decoding strings in various character encodings, including UTF-8. It offers more general-purpose binary data handling capabilities compared to the more focused UTF-8 encoding/decoding functionality of @aws-sdk/util-utf8-browser.
Deprecated package
This internal package is deprecated in favor of @aws-sdk/util-utf8.
3.259.0 (2023-01-26)
FAQs
A browser UTF-8 string <-> UInt8Array converter
The npm package @aws-sdk/util-utf8-browser receives a total of 5,993,604 weekly downloads. As such, @aws-sdk/util-utf8-browser popularity was classified as popular.
We found that @aws-sdk/util-utf8-browser demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 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
Malicious npm packages posing as Telegram bot libraries install SSH backdoors and exfiltrate data from Linux developer machines.
Security News
pip, PDM, pip-audit, and the packaging library are already adding support for Python’s new lock file format.
Product
Socket's Go support is now generally available, bringing automatic scanning and deep code analysis to all users with Go projects.