
Research
PyPI Package Disguised as Instagram Growth Tool Harvests User Credentials
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
electrum-compiler
Advanced tools
This is a run-time compiler for Electrum-enabled React components, based on Babel and relying on babel-standalone.
let input = 'const greet = x => `Hello ${x}.`;';
let compiler = new Compiler ();
let source = compiler.transform (input);
// ES2015 compatible source
let input = 'class extends React.Component { render() { return <div>Hi.</div>; } }';
let compiler = new Compiler ();
let output = compiler.build ('Foo', input);
// Component in output.component
If the source code needs to reference external symbols (for instance other
components), they must be registered before calling build()
:
let input = `
class extends React.Component {
render() {
return <Button>{text}</Button>;
}
}`;
let compiler = new Compiler ();
compiler.register (Button);
compiler.register ('text', 'Hello')
let output = compiler.build ('Foo', input);
// Component in output.component
The output of build()
is an object with following properties:
name
→ name of the component.code
→ source code used to produce the component.component
→ the component.error
→ the error (if there was an error).Properties code
and component
are only present if the call to build()
was successful. Otherwise, the error message is stored in error
.
Note that the position in the error message will be offset by one line, as
build()
prepends some code to the given input source.
FAQs
Run-time compiler for Electrum-enabled React components.
The npm package electrum-compiler receives a total of 1 weekly downloads. As such, electrum-compiler popularity was classified as not popular.
We found that electrum-compiler 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
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
Security News
Research
Socket uncovered two npm packages that register hidden HTTP endpoints to delete all files on command.