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.
The is-base64 npm package is a utility for checking if a given string is a valid Base64 encoded string. It provides simple and straightforward methods to validate Base64 strings, making it useful for applications that need to handle or verify Base64 encoded data.
Validation of Base64 Strings
This feature allows you to check if a given string is a valid Base64 encoded string. The function returns true if the string is valid Base64 and false otherwise.
const isBase64 = require('is-base64');
const validBase64 = 'SGVsbG8gd29ybGQ=';
const invalidBase64 = 'Hello world';
console.log(isBase64(validBase64)); // true
console.log(isBase64(invalidBase64)); // false
Validation with Options
This feature allows you to validate Base64 strings with additional options. For example, you can specify whether to allow empty strings as valid Base64.
const isBase64 = require('is-base64');
const validBase64 = 'SGVsbG8gd29ybGQ=';
const invalidBase64 = 'Hello world';
console.log(isBase64(validBase64, { allowEmpty: false })); // true
console.log(isBase64('', { allowEmpty: false })); // false
The base64-js package provides utilities for encoding and decoding Base64 strings. Unlike is-base64, which focuses solely on validation, base64-js offers functionality for both encoding and decoding Base64 data.
The js-base64 package is a comprehensive library for Base64 encoding and decoding. It provides methods for encoding strings to Base64 and decoding Base64 strings back to their original form. This package offers more functionality compared to is-base64, which is limited to validation.
The base-64 package is a lightweight library for encoding and decoding Base64 strings. It is similar to js-base64 but with a smaller footprint. While is-base64 focuses on validation, base-64 provides encoding and decoding capabilities.
Predicate that returns true if base64 string.
npm install is-base64
var isBase64 = require('is-base64');
var string = 'iVBORw0KGgoAAAAN ... kSuQmCC';
var stringWithMime = 'data:image/png;base64,iVBORw0KGgoAAAA ... AAElFTkSuQmCC';
console.log(isBase64(string)); // true
console.log(isBase64(stringWithMime)); // false
console.log(isBase64(stringWithMime, {allowMime: true})); // true
console.log(isBase64(string, {mimeRequired: true})); // false
console.log(isBase64(stringWithMime, {mimeRequired: true})); // true
console.log(isBase64('1342234')); // false
console.log(isBase64('afQ$%rfew')); // false
console.log(isBase64('dfasdfr342')); // false
console.log(isBase64('uuLMhh==')); // true
console.log(isBase64('uuLMhh')); // false
console.log(isBase64('uuLMhh', {paddingRequired: false})); // true
console.log(isBase64('')); // true
console.log(isBase64('', {allowEmpty: false})); // false
{string} string - string to check if is valid base64 string
{object} [options]
Install CLI:
npm install -g is-base64
CLI example:
$ is-base64 aGVsbG8gd29ybGQ=
true
Piping example:
$ echo aGVsbG8gd29ybGQ= | is-base64
true
Q: Why is empty string ""
a valid base64 string by default?
A: According to RFC 4648 Section 10, the following is valid test vector:
BASE64("") = ""
MIT
FAQs
Predicate that returns true if base64 string.
The npm package is-base64 receives a total of 399,693 weekly downloads. As such, is-base64 popularity was classified as popular.
We found that is-base64 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.