Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@hapi/content
Advanced tools
HTTP Content-* headers parsing.
Lead Maintainer - Eran Hammer
content allows to parse HTTP Content-*
headers, currently based on the rules established in both RFC 7231 Section 3.1.1.1 and RFC 6266 Section 4.1.
type(header)
Generates an object containing the associated mime-type and the boundary (if specified).
Content.type('application/json; some=property; and="another"');
// { mime: 'application/json' }
Content.type('application/json; boundary=asdf');
// { mime: 'application/json', boundary: 'asdf' }
If the header is invalid (malformed) or missing required data, such as a multipart/form-data
header missing its boundary
, it returns an HTTP Bad Request
error.
disposition(header)
Generates an object containing the details related to the Content-Disposition
header for the form-data
content type with support for utf8
encoding.
Content.disposition('form-data; name="file"; filename=file.jpg');
// { name: 'file', filename: 'file.jpg' }
Content.disposition('form-data; name="file"; filename*=utf-8\'en\'with%20space');
// { name: 'file', filename: 'with space' }
If the header is invalid (malformed, invalid or missing properties) or is empty/missing, it returns an explanatory error.
FAQs
HTTP Content-* headers parsing
The npm package @hapi/content receives a total of 0 weekly downloads. As such, @hapi/content popularity was classified as not popular.
We found that @hapi/content demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.