fix(backend): Nested proxy requestsを検出した際にブロックするように
This reverts commit 086532218e
.
[ghsa-gq5q-c77c-v236](https://github.com/misskey-dev/misskey/security/advisories/ghsa-gq5q-c77c-v236)
Signed-off-by: eternal-flame-AD <yume@yumechi.jp>
This commit is contained in:
parent
acba0bb54c
commit
9a75e2f53b
1 changed files with 2 additions and 2 deletions
|
@ -325,8 +325,8 @@ export class FileServerService {
|
|||
|
||||
if (!request.headers['user-agent']) {
|
||||
throw new StatusError('User-Agent is required', 400, 'User-Agent is required');
|
||||
} else if (request.headers['user-agent'].includes(this.config.userAgent)) {
|
||||
throw new StatusError('Proxy is recursive', 400, 'Proxy is recursive');
|
||||
} else if (request.headers['user-agent'].toLowerCase().indexOf('misskey/') !== -1) {
|
||||
throw new StatusError('Refusing to proxy a request from another proxy', 403, 'Proxy is recursive');
|
||||
}
|
||||
|
||||
// Create temp file
|
||||
|
|
Loading…
Reference in a new issue