我在 Nest.js 应用程序中使用@nestjs/swagger来生成 Swagger 文档。
在文档中,我们有一个简单的示例,例如
const config = new DocumentBuilder()
.setTitle('Cats example')
.setDescription('The cats API description')
.setVersion('1.0')
.addTag('cats')
.build();
const document = SwaggerModule.createDocument(app, config);
SwaggerModule.setup('api', app, document);
通过这个实现,我遇到了安全问题,这可能会使攻击者暴露在网络钓鱼中。例如,我们有一个招摇页面
https://petstore.swagger.io/
攻击者可以在 URL 中添加查询参数,例如
https://petstore.swagger.io/?url=https://27.rs/card.yaml#/default/get_
这可能会导致安全问题。有什么办法可以预防吗?我们可以禁用 Swagger URL 的查询参数,或者清除它吗?转换
https://petstore.swagger.io/?url=https://27.rs/card.yaml#/default/get _ => https://petstore.swagger.io/
作为第 4 参数SwaaggerModule.setup
函数可以接收选项。我试图对他们做点什么,但仍然没有结果。以下是可能的参数
export interface SwaggerCustomOptions {
explorer?: boolean;
swaggerOptions?: Record<string, any>;
customCss?: string;
customCssUrl?: string;
customJs?: string;
customfavIcon?: string;
swaggerUrl?: string;
customSiteTitle?: string;
validatorUrl?: string;
url?: string;
urls?: Record<'url' | 'name', string>[];
}
我还可以在GitHub中看到有关此问题的未解决问题。有提到关于window.history.replaceState(null, "", window.location.pathname);
. 如何在@nestjs/swagger 中使用它?