The probability is the direct output of the EPSS model, and conveys an overall sense of the threat of exploitation in the wild. The percentile measures the EPSS probability relative to all known EPSS scores. Note: This data is updated daily, relying on the latest available EPSS model version. Check out the EPSS documentation for more details.
In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.
Test your applicationsUpdate to version 3.1.0
or newer on the 3.x
branch, or to version 2.5.0
or newer on the 2.x
branch.
express-restify-mongoose
is a module to easily create a flexible REST interface for mongoose models.
It supports marking certain fields as private, to keep from exposing them to users, but fails to remove those fields from certain output scenarios, resulting in potential private data exposure.
For instance, if you have the following User model:
const User = mongoose.model('User', new mongoose.Schema({
name: String,
password: String,
}));
To keep from exposing the password, you'll likely to want to call it out as a private field like so:
restify.serve(router, User, {
private: ['password'],
})
This will indeed result in the password field not showing when you request an item, for instance via GET /User
or GET /User/some-id
.
However, when querying on that field, using GET /User?distinct=password
, ALL passwords for ALL the users in the DB would be shown.