Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
CORS up a route handler
var Corsify = require("corsify")
var http = require("http")
// cors headers set
http.createServer(Corsify(function (req, res) {
console.log("sweet")
})).listen(8000)
var Corsify = require("corsify")
var Router = require("routes-router")
var cors = Corsify({
"Access-Control-Allow-Methods": "POST, GET"
})
var app = Router()
app.addRoute("/users", cors(function (req, res) {
res.end("users")
}))
app.addRoute("/posts", cors(function (req, res) {
res.end("posts")
}))
app.addRoute("/api", Corsify({
"Access-Control-Allow-Methods": "POST, GET, PUT, DELETE"
}, function (req, res) {
res.end("api")
}))
http.createServer(app).listen(8000)
Corsify(opts: Object, handler: (req, res)) => (req, res)
Corsify
can be called with options
var opts = {
// if this is set to false then preflight `OPTIONS` is
// not terminated
endOptions: Boolean,
// if you want to compute the allowed origin manually you
// pass in a getOrigin function
getOrigin: (req, res) => String,
// these are default header values you can set. Corsify
// has sensible defaults. You can't use Allow-Origin and
// getOrigin at the same time.
"Access-Control-Allow-Origin": String,
"Access-Control-Allow-Methods": String,
"Access-Control-Allow-Credentials": String
"Access-Control-Allow-Max-Age": String,
"Access-Control-Allow-Headers": String
}
npm install corsify
FAQs
CORS up a route handler
The npm package corsify receives a total of 354 weekly downloads. As such, corsify popularity was classified as not popular.
We found that corsify 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.