Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
It rhymes with jax-rs.
A convenience layer to build JSON APIs using
Quinn
.
import { createServer } from 'http';
import cass from 'cass';
import Boom from 'boom'; // `boom` is whitelisted for providing status codes
import { Inject, Provides } from 'nilo';
import { PUT } from 'wegweiser';
import quinn from 'quinn';
import RadioTuner from './tuner';
@Inject(RadioTuner)
class RadioResource {
constructor(tuner) { this.tuner = tuner; }
@PUT('/radio/:station')
setStation(req, params) {
if (params.station.length > 10) {
throw new Boom(400, 'Invalid station, max length is 10');
}
this.tuner.tuneTo(params.station);
return { ok: true };
}
}
const app = cass(RadioResource);
app.graph.scan({ // "scan for dependency providers"
@Provides(RadioTuner)
getRadioTuner() {
return new RadioTuner(process.env.RADIO_FILE || '/dev/null');
}
});
createServer(quinn(app)).listen(3000);
FAQs
It rhymes with jax-rs
The npm package cass receives a total of 6 weekly downloads. As such, cass popularity was classified as not popular.
We found that cass demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.