Skip to content
Ulrich Berntien edited this page Sep 6, 2020 · 2 revisions

TWA-0410

Message

"Possible build file being served (maybe protected?) at: ${url}"

In the message output the variable ${url} is replaced by the URL of the build file.

Explanation

Files of the build system (e.g. Docker compose, make, CMake) used to setup the web server or other applications running on the server should not be published by the web server.

The web server sends not the content of the package manager file but an error message "403 Forbidden". With this information a possible attacker knows that the file exists on the web server. The attacker gets the information which programming language and which package management system is used.

It is good to prevent serving the internal data files. A better protection is to hide the existence of the internal data files.

Current (August 2020) the twa script checks the files: 'Dockerfile', 'docker-compose.yml', 'Makefile' and 'CMakeLists.txt'.

Remediation

Configure the web server to not publish files with internal data. The web server should respond with "404 Not Found" or with a redirection to a standard error page.

There exists several configuration options to suppress files with name (pattern) in a blacklist or files not in whitelist. Search the web for examples.

Clone this wiki locally