CVE | Vulnerability name | Date | Responsible Security Disclosure by | Vulnerabilities |
---|---|---|---|---|
VRF#20-08-DDFJJ. | Userbleed |
2018-06-12 |
Adrian Genaid at PLANTA Projektmanagement-Systeme GmbH Did send detailed report and fix! |
|
Timeline | Details |
---|---|
2018-06-12 20:06 GMT+3 | Report received. 5 Gold Star bonus points to Adrian Genaid for including code suggestion for fixing security issue! |
2018-06-26 16:07 GMT+3 |
Report content Hi, I just found a security issue in Wekan:
This can be solved by improving the "people" publication. Some proposal: Meteor.publish('people', function(limit) { check(limit, Number); if (!Match.test(this.userId, String)) { return []; } const user = Users.findOne(this.userId); if (user && user.isAdmin) { return Users.find({}, { limit, sort: {createdAt: -1}, fields: { 'username': 1, 'profile.fullname': 1, 'isAdmin': 1, 'emails': 1, 'createdAt': 1, 'loginDisabled': 1, }, }); } else { return []; } }); |
2018-06-13 01:30 GMT+3 | Wekan v1.04$ |