
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
#mimos
Mime database interface.
Lead Maintainer - Adam Bretz
Mimos is a convenience class for retrieving mime information objects.
new Mimos([options])
Creates a new Mimos object where:
[options]
- an option object the following keys
[override]
- an object hash that is merged into the built in mime information specified here. Each key value pair represents a single mime object. Each override value should follow this schema:
key
- the key is the lower-cased correct mime-type. (Ex. "application/javascript").value
- the value should an object following the specifications outlined here. Additional values include:
type
- specify the type
value of result objects, defaults to key
. See the example below for more clarification.predicate
- method with signature function(mime)
when this mime type is found in the database, this function will run. This allows you make customizations to mime
based on developer criteria.mimos.path(path)
Returns mime object where:
path
path to file including the file extension. Uses the extension
values of the mime objects for lookup.const mimos = new Mimos();
const mime = mimos.path('/static/public/app.js');
// mime
/*
{
source: 'iana',
charset: 'UTF-8',
compressible: true,
extensions: [ 'js' ],
type: 'application/javascript'
}
*/
mimos.type(type)
Returns mime object where:
type
the content-type to find mime information about. Uses the type
values of the mime objects for lookup.const mimos = new Mimos();
const mime = mimos.type('text/plain');
// mime
/*
{
source: 'iana',
compressible: true,
extensions: ['txt', 'text', 'conf', 'def', 'list', 'log', 'in', 'ini'],
type: 'text/plain'
}
*/
In certain situations, it can be helpful to override the built in mime type information. The optional argument to the Mimos constructor is used to override and add mime information. Below is an example to help understand how this works.
const options = {
override: {
'node/module': {
source: 'iana',
compressible: true,
extensions: ['node', 'module', 'npm'],
type: 'node/module'
},
'application/javascript': {
source: 'iana',
charset: 'UTF-8',
compressible: true,
extensions: ['js', 'javascript'],
type: 'text/javascript'
},
'text/html': {
predicate: function(mime) {
if (someCondition) {
mime.foo = 'test';
}
else {
mime.foo = 'bar';
}
return mime;
}
}
}
}
const mimos = new Mimos(options);
console.dir(mimos.path('./node_modules/mimos.module'));
/*
{
source: 'iana',
compressible: true,
extensions: ['node', 'module', 'npm'],
type: 'node/module'
}
*/
console.dir(mimos.type('application/javascript'));
/*
Note: even though we asked for type 'application/javascript', the type value is 'text/javascript' because of the override. Always use the proper content-type for retrieval.
{
source: 'iana',
charset: 'UTF-8',
compressible: true,
extensions: ['js', 'javascript'],
type: 'text/javascript'
}
*/
console.dir(mimos.type('text/html'));
/*
someCondition is true:
{
source: 'iana',
compressible: true,
extensions: ['html','htm'],
type: 'test/html',
foo: 'test'
}
someCondition is false:
{
source: 'iana',
compressible: true,
extensions: ['html','htm'],
type: 'test/html',
foo: 'bar'
}
*/
FAQs
Mime database interface
The npm package mimos receives a total of 70,953 weekly downloads. As such, mimos popularity was classified as popular.
We found that mimos demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 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.
Research
/Security News
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.