
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.
@rahul_tripathi/galaxy
Advanced tools
Galaxy is a tiny routing framework for Nodejs and AWS Lambda λ;
$ npm -i @rahul_tripathi/galaxy
let galaxy = require('@rahul_tripathi/galaxy')
let apiRouter = galaxy.Galaxy('api') //initalize with /api endpoint
handler = (x)=>{return x}
let testRouter = galaxy.Star('test1') // create an intermediate router
testRouter.append(galaxy.Moon('hello', handler ,'GET'))
apiRouter.append(testRouter)
console.log(apiRouter.resolve({httpMethod :'GET',path:'/api/test1/hello'}))
let galaxy = require('@rahul_tripathi/galaxy')
let apiRouter = galaxy.Galaxy('api') //initalize with /api endpoint
handler = (x)=>{return x}
apiRouter.append(galaxy.Moon('hello/$id/someother', handler,'GET')) //directly adding Moon to Galaxy is allowed
console.log(apiRouter.resolve({httpMethod : 'GET',path :'/api/hello/abc/mnop?abc=k'}))
//This Outputs
{
httpMethod: 'GET',
path: '/api/hello/abc/someother?abc=k',
params: { id: 'abc' }
}
FAQs
tiny api routing library for aws lambda
The npm package @rahul_tripathi/galaxy receives a total of 1 weekly downloads. As such, @rahul_tripathi/galaxy popularity was classified as not popular.
We found that @rahul_tripathi/galaxy 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.