
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
hapi-sanitize-payload
Advanced tools
A plugin to recursively sanitize or prune values in a request.payload
object.
Currently uses the following rules:
\0
) from string values''
), or optionally replaces them with a different value' \t\n '
), or optionally replaces them with a different value' text '
becomes 'text'
)null
valuesconst registerPlugins = async (server) => {
await server.register([
{ plugin: require('hapi-sanitize-payload'), options: { pruneMethod: 'delete' } }
]);
};
enabled
- whether or not the plugin is enabled.pruneMethod
- the method the sanitizer uses when a value that is to be pruned is encountered. Defaults to 'delete'
. The value must be one of:
'delete'
- the key will be removed from the payload entirely (ie. { a: '', b: 'b' }
:arrow_right: { b: 'b' }
).'replace'
- the key will be preserved, but its value will be replaced with the value of replaceValue
.replaceValue
- valid only when pruneMethod
is set to 'replace'
, this value will be used as the replacement of any pruned values (ie. if configured as null
, then { a: '', b: 'b' }
:arrow_right: { a: null, b: 'b' }
).stripNull
- a boolean value to signify whether or not null
properties should be pruned with the same pruneMethod
and replaceValue
as above. Defaults to false
.fieldOverrides
- an object where each key is a property and its value is an object of options (pruneMethod
, replaceValue
, and stripNull
). The options value overrides the default options for that given property.nestedOverrides
- an object where each key is a property and its value is an object of options (pruneMethod
, replaceValue
, and stripNull
). The options value overrides the default options applied to the nested object of that property. The default options for that property are considered the options after the fieldOverrides are applied.Each of the above options can be configured on a route-by-route basis via the sanitize
plugin object.
const registerRoutes = (server) => {
server.route({
method: 'POST',
path: '/users',
handler: () => {
// handler logic
},
options: {
plugins: {
sanitize: { enabled: false }
}
}
});
};
Setting up the server.
(async () => {
try {
const server = new Hapi.Server();
await registerPlugins(server);
registerRoutes(server);
await server.start();
} catch (err) {
// Insert your preferred error handling here...
}
)();
FAQs
Hapi plugin to sanitize the request payload
We found that hapi-sanitize-payload demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 35 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.
Security News
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.