Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
This module provides basic functions for handling mime-types. It can handle matching mime-types against a list of media-ranges. See section 14.1 of the HTTP specification [RFC 2616] for a complete explanation.
http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.1
A port to JavaScript of Joe Gregorio's MIME-Type Parser:
http://code.google.com/p/mimeparse/
Ported by J. Chris Anderson jchris@apache.org, targeting the Spidermonkey runtime.
Ported to Chiron, Narwhal, Node by Kris Kowal.
http://github.com/kriskowal/mimeparse
Install <http://github.com/isaacs/npm>
npm install mimeparse
parseMimeType(mimeType)
Carves up a mime-type and returns an Array of the
[type, subtype, params] where "params" is a Hash of all
the parameters for the media range.
For example, the media range "application/xhtml;q=0.5" would
get parsed into::
["application", "xhtml", { "q" : "0.5" }]
parseMediaRange(range)
Carves up a media range and returns an Array of the
[type, subtype, params] where "params" is a Object with
all the parameters for the media range.
For example, the media range "application/*;q=0.5" would
get parsed into::
["application", "*", { "q" : "0.5" }]
In addition this function also guarantees that there
is a value for "q" in the params dictionary, filling it
in with a proper default if necessary.
fitnessAndQualityParsed(mimeType, parsedRanges)
Find the best match for a given mime-type against
a list of media_ranges that have already been
parsed by parseMediaRange(). Returns an array of
the fitness value and the value of the 'q' quality
parameter of the best match, or (-1, 0) if no match
was found. Just as for qualityParsed(), 'parsed_ranges'
must be a list of parsed media ranges.
qualityParsed(mimeType, parsedRanges)
Find the best match for a given mime-type against
a list of media_ranges that have already been
parsed by parseMediaRange(). Returns the
'q' quality parameter of the best match, 0 if no
match was found. This function bahaves the same as quality()
except that 'parsedRanges' must be a list of
parsed media ranges.
quality(mimeType, ranges)
Returns the quality 'q' of a mime-type when compared
against the media-ranges in ranges. For example::
>>> quality('text/html','text/*;q=0.3, text/html;q=0.7, text/html;level=1, text/html;level=2;q=0.4, *\/*;q=0.5')
0.7
bestMatch(supported, header)
Takes a list of supported mime-types and finds the best
match for all the media-ranges listed in header. The value of
header must be a string that conforms to the format of the
HTTP Accept: header. The value of 'supported' is a list of
mime-types::
>>> bestMatch(['application/xbel+xml', 'text/xml'], 'text/*;q=0.5,*\/*; q=0.1')
'text/xml'
FAQs
Basic functions for handling mime-types.
The npm package mimeparse receives a total of 23,878 weekly downloads. As such, mimeparse popularity was classified as popular.
We found that mimeparse 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.