
Research
PyPI Package Disguised as Instagram Growth Tool Harvests User Credentials
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
express-json-refiner
Advanced tools
Express JSON refiner middleware by context's scope of api (admin, member...)
Express JSON refiner middleware by scope api (admin, member...)
Dynamicaly reduce your json response by context's scope of api.
The motivation with this module is to provide a way to filter your json response attributes based on context of your apis.
You may have public/private/admin
... API and want to deal with response json objects and its visible attributes.
API focused on 'user' is giving json results (or array) like:
{
field1: '',
field2: '',
field3: '',
field4: ''
}
And for some reasons depending on context whether it is a public
API or member
API you may just want to expose :
{
field1: '',
field3: ''
}
So, idea is to provide your rules by this way, I give more details below:
var userAccessRule = {
model: {field1: '', field2: '', field3: '', field4: ''},
fields: {
public: ['field1', 'field3'],
member: ['field2', 'field3'],
admin: ['field1', 'field2', 'field3', 'field4']
}
};
var userAccessRule = {
model: {field1: '', field2: '', field3: '', field4: ''},
routes: ['/api1/admin/user/*', '/api1/member/user/*'],
fields: {
public: ['field1', 'field3'],
member: ['field2', 'field3'],
admin: ['field1', 'field2', 'field3', 'field4']
}
};
In context of Express:
var refiner = require('express-json-refiner');
var load = require('express-load');
var app = express();
app.configure(function() {
...
app.use(refiner.digest);
...
});
// NOTE here I use the best loader for me to load all api scope rules 'express-load'
// This requirement is mandatory to make all working ;)
// See test/ directory example
load('model').then('access').into(app);
// where 'model' contains Mongoose model (schema) or arbitrary model
// where 'access' contains your json refiner rules, which attributes to keep for each context.
// result is injection of `model` namespace into `app` variable.
// result is injection of `access` namespace into `app` variable.
var opts = {
debug: false,
rules: app.access
};
// Init refiner with options.
refiner.init(opts, app);
// Example on defining route
app.get('/api1/admin', function(req, res){
var o = {'field1': '1', 'field2': '2', 'field3': '3'};
// NOTE before rendering json output, just give api context for refiner to apply.
// CASE 1 : routes not definied => explicitly give rule model, here 'api1"
req.api = {model: 'api1', scope:'public'};
// CASE 2 : routes definied => just scope is needeed
req.api = {scope:'public'};
// 'api1' is a reference for 'access/api1.js' rule file
// 'admin' is the scope
res.json(o);
// result after refine process:
// {'field1': '1', 'field3': 3}
});
scope
can be set globaly for instance by this way, example made with passport-http-bearer
var checkAdminAccess = function (req, res, next) {
if (!req.user || req.user.role !== "admin") {
var err = new Error('not allowed!');
err.status = 403;
next(err);
return;
}
req.api = {scope:'admin'};
next();
};
app.all('/api/v1/admin/*', passport.authenticate('bearer', { session: false }), checkAdminAccess);
Do not hesitate look at test folder hierarchy files.
Using npm:
npm install express-json-refiner
You can run the tests by running
npm install
or
npm test
assuming you already have grunt
installed, otherwise you also need to do:
npm install -g grunt-cli
The MIT License (MIT)
Copyright (c) 2014 Julien Valéry
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Express JSON refiner middleware by context's scope of api (admin, member...)
The npm package express-json-refiner receives a total of 0 weekly downloads. As such, express-json-refiner popularity was classified as not popular.
We found that express-json-refiner 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.
Research
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
Security News
Research
Socket uncovered two npm packages that register hidden HTTP endpoints to delete all files on command.