Limit exposure to sensitive directories and files

このページは日本語には対応しておりません。随時翻訳に取り組んでいます。翻訳に関してご質問やご意見ございましたら、お気軽にご連絡ください。

Metadata

ID: typescript-express/access-restriction

Language: TypeScript

Severity: Warning

Category: Security

Description

Exposing a directory listing could present an attacker an opportunity to access source code or other sensitive data through a file structure exploit. Restricting access to non-sensitive directories and files is strongly suggested.

Learn More

Non-Compliant Code Examples

import express, { Express } from 'express';
import serveIndex from "serve-index";

const app: Express = express();

app.use(serveIndex())

Compliant Code Examples

import express, { Express } from 'express';
import serveIndex from "serve-index";

const app: Express = express();

app.use(serveIndex("/public"))
https://static.datadoghq.com/static/images/logos/github_avatar.svg https://static.datadoghq.com/static/images/logos/vscode_avatar.svg jetbrains

Seamless integrations. Try Datadog Code Analysis