mirror of
https://github.com/YMFE/yapi.git
synced 2025-03-31 14:50:26 +08:00
fix: 解决请求用户信息接口的越权漏洞
This commit is contained in:
parent
4a6fdd3b5c
commit
d6e82622c0
@ -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不能为空'));
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user