CAPEC-127: Directory Indexing

Detailed Draft 严重程度: Medium 攻击可能性: High

CAPEC版本: 3.9

更新日期: 2023-01-24

攻击模式描述

An adversary crafts a request to a target that results in the target listing/indexing the content of a directory as output. One common method of triggering directory contents as output is to construct a request containing a path that terminates in a directory name rather than a file name since many applications are configured to provide a list of the directory's contents when such a request is received. An adversary can use this to explore the directory tree on a target as well as learn the names of files. This can often end up revealing test files, backup files, temporary files, hidden files, configuration files, user accounts, script contents, as well as naming conventions, all of which can be used by an attacker to mount additional attacks.

执行流程

步骤 1 Explore

[Directory Discovery] Use a method, either manual, scripted, or automated to discover the directories on the server by making requests for directories that may possibly exist. During this phase the adversary is less concerned with whether a directory can be accessed or indexed and more focused on simply discovering what directories do exist on the target.

技术:
  • Send requests to the web server for common directory names
  • If directories are discovered that are native to a server type further refine the directory search to include directories usually present on those types of servers.
  • Search for uncommon or potentially user created directories that may be present.
步骤 2 Experiment

[Iteratively explore directory/file structures] The adversary attempts to access the discovered directories that allow access and may attempt to bypass server or application level ACLs by using manual or automated methods

技术:
  • Use a scanner tool to dynamically add directories/files to include their scan based upon data obtained in initial probes.
  • Use a browser to manually explore the website by issuing a request ending the URL in a slash '/'.
  • Attempt to bypass ACLs on directories by using methods that known to work against some server types by appending data to the directory request. For instance, appending a Null byte to the end of the request which may cause an ACL to fail and allow access.
  • Sequentially request a list of common base files to each directory discovered.
  • Try multiple fuzzing techniques to list directory contents for directories that will not reveal their contents with a "/" request
步骤 3 Exploit

[Read directories or files which are not intended for public viewing.] The adversary attempts to access the discovered directories that allow access and may attempt to bypass server or application level ACLs by using manual or automated methods

技术:
  • Try multiple exploit techniques to list directory contents for directories that will not reveal their contents with a "/" request
  • Try other known exploits to elevate privileges sufficient to bypass protected directories.
  • List the files in the directory by issuing a request with the URL ending in a "/" slash.
  • Access the files via direct URL and capture contents.
  • Attempt to bypass ACLs on directories by using methods that are known to work against some server types by appending data to the directory request. For instance, appending a Null byte to the end of the request which may cause an ACL to fail and allow access.
  • Sequentially request a list of common base files to each directory discovered.

前提条件

  • The target must be misconfigured to return a list of a directory's content when it receives a request that ends in a directory name rather than a file name.
  • The adversary must be able to control the path that is requested of the target.
  • The administrator must have failed to properly configure an ACL or has associated an overly permissive ACL with a particular directory.
  • The server version or patch level must not inherently prevent known directory listing attacks from working.

所需技能

Low To issue the request to URL without given a specific file name
High To bypass the access control of the directory of listings

所需资源

  • Ability to send HTTP requests to a web application.

后果影响

影响范围: Confidentiality

技术影响: Read Data

说明: Information Leakage

缓解措施

1. Using blank index.html: putting blank index.html simply prevent directory listings from displaying to site visitors.

2. Preventing with .htaccess in Apache web server: In .htaccess, write "Options-indexes".

3. Suppressing error messages: using error 403 "Forbidden" message exactly like error 404 "Not Found" message.

分类映射

分类名称 条目ID 条目名称
ATTACK 1083 File and Directory Discovery
关键信息

CAPEC ID: CAPEC-127

抽象级别: Detailed

状态: Draft

典型严重程度: Medium

攻击可能性: High

相关攻击模式