
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
microgateway-core
Advanced tools
Microgateway-core is a pass through api proxy that events to plugin middleware. The plugin middleware can implement a variety of functions like oauth, spikearrest, and quotas on your apis.
We have provided some default middleware that you can use in the microgateway-plugin repo.
To use microgateway-core you must initialize microgateway with a config. The config can be instantiated using the microgateway-config repo.
const config = require('microgateway-config');
config.init({source:'<somepath.to.a.yaml.file>', targetDir:'<path.to.write.new.config>', targetFile:'<file.name.of.new.config>'});
const Gateway = require('microgateway-core');
const plugin = {
init:(config,logging,stats)=>{
return {
onrequest:(req,res,options,cb) => {
cb();
}
}
}
}
config.get({source:'same.yaml',keys:{key: '', secret: ''}},(err,config)=>{
const gateway = Gateway(config);
gateway.addPlugin('my-plugin', plugin.init);
gateway.start((server)=>{
});
});
For more info on usage we use the microgateway-core to power our microgateway product. We use a command line utility here. https://github.com/apigee/microgateway-cli
FAQs
Core engine for Apigee Edge Microgateway
The npm package microgateway-core receives a total of 440 weekly downloads. As such, microgateway-core popularity was classified as not popular.
We found that microgateway-core demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.