
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.
virus-back tracks the previous page a user visited in sessions, allowing for reliable back one page redirects.
The http referer header is unreliable, virus-back uses sessions to track the two previous paths a client has visited. Also provides a convienence method res.back()
to safely redirect to the previous path or fallback as to prevent a redirect loop.
var back = require('virus-back');
app.use(session({
secret: 'Session Secret'
}));
app.use(back());
app.get('/test', function(req, res) {
if (!req.isAuthenticated()) {
return res.back();
}
});
var back = require('virus-back');
This middleware depends upon a session middleware or req.session
, and will populate req.prevPath
and req.prevPrevPath
.
FAQs
virus-back tracks the previous page a user visited in sessions, allowing for reliable back one page redirects.
The npm package virus-back receives a total of 0 weekly downloads. As such, virus-back popularity was classified as not popular.
We found that virus-back 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
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.