7
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Node.js+expressでWEBサイトを構築する際に気をつけたいこと

Last updated at Posted at 2021-06-26

はじめに

Google Chromeのデベロッパーツールを使うと、サーバ情報などを分析できます。

image.png

図のようにWEBサーバがApacheだと判明できます。
例えば、Apacheの脆弱性が発見された場合に、脆弱性のあるサーバに対して攻撃を受ける可能性があります。
そこで、サーバ情報を隠す方法があります。

サーバ情報を伏せるためにX-Powerd-Byの設定を変更する。

Node.js+expressを利用したWEBアプリケーションの場合、
**app.disable("x-powered-by")**を追記しましょう。

app.js
var express = require( 'express' ),
    app = express();

app.set( 'view engine', 'ejs' )
app.disable("x-powered-by"); //これを追記する

以上です。

7
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?