fix: 解决请求用户信息接口的越权漏洞

This commit is contained in:
WebPuY 2020-09-20 10:28:15 +08:00
parent 4a6fdd3b5c
commit d6e82622c0

View File

@ -411,6 +411,10 @@ class userController extends baseController {
let userInst = yapi.getInst(userModel);
let id = ctx.request.query.id;
if (this.getRole() !== 'admin' && id != this.getUid()) {
return (ctx.body = yapi.commons.resReturn(null, 401, '没有权限'));
}
if (!id) {
return (ctx.body = yapi.commons.resReturn(null, 400, 'uid不能为空'));
}