
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
@devly/devly-shell
Advanced tools
Shell plugin for @devly
.
To add devly-shell plugin to your project, first make sure your project is set-up to consume Devly plugins (see https://github.com/aorinevo/devly-example#introduction).
Next, install @devly/devly-shell
:
npm i @devly/devly-shell
Use addShellConfig
action creator to update the shell state in the devly-store. It is recommneded to place the initialState for shell in a manifests/shell.js
file and requiring that file within the file that dispatches the action.
// mainfests/shell.js
module.exports = {
path: '/Users/aorinevo/.zshrc',
exports: [
{
name: 'JAVA_HOME',
value: "'/Library/Java/JavaVirtualMachines/jdk1.8.0_162.jdk/Contents/Home'"
},
{
name: 'MAVEN_HOME',
value: "'/usr/local/Cellar/maven/3.5.4/libexec'"
},
{
name: 'MAVEN_OPTS',
value: "'-Xmx1024m -Xms1024m -XX:MaxPermSize=1162m'"
},
{
name: 'M2_OPTS',
value: '$MAVEN_OPTS'
},
{
name: 'PATH',
value: '/usr/local/bin:$MAVEN_HOME/bin:$JAVA_HOME/bin:$PATH'
}
],
};
It is recommended that the consumer create a plugins/index.js
barrel file for the devly plugins it consumes.
// plugins/index.js
require('./shell.js');
// plugins/shell.js
const {store} = require('@devly/devly-store');
const {addShellConfig, addShellCommands} = require('@devly/devly-shell/actions');
const {dispatch} = store;
require('@devly/devly-shell');
dispatch(addShellConfig(require('./manifests/shell')));
dispatch(addShellCommands());
FAQs
Shell plugin for `@devly`.
The npm package @devly/devly-shell receives a total of 1 weekly downloads. As such, @devly/devly-shell popularity was classified as not popular.
We found that @devly/devly-shell 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
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.