Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
@types/base-64
Advanced tools
TypeScript definitions for base-64
npm install --save @types/base-64
This package contains type definitions for base-64 (https://github.com/mathiasbynens/base64).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/base-64.
export as namespace base64;
export const version: string;
/**
* This function takes a byte string (the input parameter) and encodes it according to base64.
* The input data must be in the form of a string containing only characters
* in the range from U+0000 to U+00FF, each representing a binary byte with values 0x00 to 0xFF.
* The base64.encode() function is designed to be fully compatible
* with btoa() as described in the HTML Standard.
* see: https://html.spec.whatwg.org/multipage/webappapis.html#dom-windowbase64-btoa
*/
export function encode(input: string): string;
/**
* This function takes a base64-encoded string (the input parameter) and decodes it.
* The return value is in the form of a string containing only characters in
* the range from U+0000 to U+00FF, each representing a binary byte with values 0x00 to 0xFF.
* The base64.decode() function is designed to be fully compatible
* with atob() as described in the HTML Standard.
* see: https://html.spec.whatwg.org/multipage/webappapis.html#dom-windowbase64-atob
*/
export function decode(input: string): string;
These definitions were written by Dolan Miu.
FAQs
TypeScript definitions for base-64
The npm package @types/base-64 receives a total of 138,556 weekly downloads. As such, @types/base-64 popularity was classified as popular.
We found that @types/base-64 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.