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.
@automattic/babel-plugin-preserve-i18n
Advanced tools
A Babel plugin to preserves translation functions even when minified
Babel plugin that transforms this:
import { __, _x } from '@wordpress/i18n';
__( 'Hello' );
_x( 'World' );
to this:
import { __ as alias__, _x as alias_x } from '@wordpress/i18n';
const __ = alias__;
const _x = alias_x;
__( 'Hello' );
_x( 'World' );
Inspired by babel-plugin-optimize-react that does similar transforms for React imports.
The transform ensures that the __('Hello')
syntax remains intact in the output bundle (and even after minification if Terser uses the mangle.reserved
option) and can be extracted by WP i18n tools.
FAQs
A Babel plugin to preserves translation functions even when minified
The npm package @automattic/babel-plugin-preserve-i18n receives a total of 0 weekly downloads. As such, @automattic/babel-plugin-preserve-i18n popularity was classified as not popular.
We found that @automattic/babel-plugin-preserve-i18n demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 30 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
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.