Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
@devly/devly-apache
Advanced tools
Apache plugin for `@devly` cli manager built with redux and yargs.
Apache plugin for @devly
cli manager built with redux and yargs.
To add devly-apache 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-apache
:
npm i @devly/devly-apache
Use addApacheConfig
action creator to update the apache state in the devly-store. It is recommended to place the initialState for apache in a manifests/apache.js
file and requiring that file within the file that dispatches the action.
// mainfests/apache.js
module.exports = {
projectPath: '/etc/apache2',
configBarrels: [
{
fileName: 'test-main.conf',
content: 'some content',
directory: 'other',
},
],
certificatesAndKeys: [
{
fileName: 'cert.crt',
content: 'some cert 1',
directory: 'cert',
},
{
fileName: 'cert.key',
content: 'some key 1',
directory: 'cert',
},
{
fileName: 'server.crt',
content: 'some cert 2',
directory: 'cert',
},
{
fileName: 'server.key',
content: 'some key 2',
directory: 'cert',
},
],
};
It is recommended that the consumer create a plugins/index.js
barrel file for the devly plugins it consumes.
// plugins/index.js
require('./apache.js');
// plugins/apache.js
const {store} = require('@devly/devly-store');
const {addApacheConfig, addApacheCommands} = require('@devly/devly-apache/actions');
const {dispatch} = store;
require('@devly/devly-apache');
dispatch(addApacheConfig(require('./manifests/apache')));
dispatch(addApacheCommands());
FAQs
Apache plugin for `@devly` cli manager built with redux and yargs.
The npm package @devly/devly-apache receives a total of 7 weekly downloads. As such, @devly/devly-apache popularity was classified as not popular.
We found that @devly/devly-apache 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
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.