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.
babel-plugin-react-create-element-alias
Advanced tools
A babel plugin to change React.createElement to an alias (_rce or other unique variable based on scope) so that it can be better handled in obfuscation (without object property mangling).
A babel plugin to change React.createElement to an alias (_rce or other unique variable based on scope) so that it can be better handled in obfuscation (without object property mangling).
npm install --save-dev babel-plugin-react-create-element-alias
Add it to your bablerc
{
"presets": ["react", "es2015"],
"plugins": ["babel-plugin-react-create-element-alias"]
}
Before Transpile
import React from 'react';
function SampleComponent(props) {
const {name} = props;
return (
<div className="wrapper">
<span className="name">{name}</span>
</div>
)
}
After Transpile
"use strict";
var _react = require("react");
var _react2 = _interopRequireDefault(_react);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
var _rce = _react2.default.createElement;
function SampleComponent(props) {
var name = props.name;
return _rce(
"div",
{ className: "wrapper" },
_rce(
"span",
{ className: "name" },
name
)
);
}
I worked on this project to experiment with scope and bindings in babel plugin and later thought to open source it. Most of the time you may not need this plugin.
If you are using gzip / brotli / zopfli compression (which you always should). You might not see a significant reduction in compressed bundle size it may vary from bytes to few kbs. So you should test it before you finalize using it.
You may be using transform-react-jsx pragma if you have different method to handle creating element like in preact its h. You don't need this. But do note defining pragma does not add declaration of you pragma function in your file. for example it will not add import React, {createElement as rce} from 'react'
or const _rce = React.createElement
.
If you can mangle property with regex for createElement you will not need this.
FAQs
A babel plugin to change React.createElement to an alias (_rce or other unique variable based on scope) so that it can be better handled in obfuscation (without object property mangling).
The npm package babel-plugin-react-create-element-alias receives a total of 1 weekly downloads. As such, babel-plugin-react-create-element-alias popularity was classified as not popular.
We found that babel-plugin-react-create-element-alias 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.