CAPEC-170: Web Application Fingerprinting
CAPEC版本: 3.9
更新日期: 2023-01-24
攻击模式描述
An attacker sends a series of probes to a web application in order to elicit version-dependent and type-dependent behavior that assists in identifying the target. An attacker could learn information such as software versions, error pages, and response headers, variations in implementations of the HTTP protocol, directory structures, and other similar information about the targeted service. This information can then be used by an attacker to formulate a targeted attack plan. While web application fingerprinting is not intended to be damaging (although certain activities, such as network scans, can sometimes cause disruptions to vulnerable applications inadvertently) it may often pave the way for more damaging attacks.
执行流程
步骤 1 Explore
[Request fingerprinting] Use automated tools or send web server specific commands to web server and wait for server's response.
- Use automated tools or send web server specific commands to web server and then receive server's response.
步骤 2 Experiment
[Increase the accuracy of server fingerprinting of Web servers] Attacker usually needs to send several different commands to accurately identify the web server. Attacker can also use automated tools to send requests to the server. The responses of the server may be different in terms of protocol behavior.
- Observe the ordering of the several HTTP response headers. The ordering of the header of each server may have unique identities.
- Send bad requests or requests of nonexistent pages to the server.
- Attacker takes existing automated tools to recognize the type and the version of the web server in use.
步骤 3 Experiment
[Identify Web Application Software] After the web server platform software has been identified, the attacker start to identify web application technologies such as ASP, .NET, PHP and Java on the server.
- Examine the file name extensions in URL, for example .php indicates PHP script interfaced with Apache server.
- Examine the HTTP Response Headers. This may leak information about software signatures
- Examine Cookies that may contain server's software information.
- Check error pages.
步骤 4 Experiment
[Identify Backend Database Version] Determining the database engine type can assist attackers' attempt to successfully execute SQL injection. Some database API such as ODBC will show a database type as part of the driver information when reporting an error.
- Use tools to send bogus SQL query to the server and check error pages.
前提条件
- Any web application can be fingerprinted. However, some configuration choices can limit the useful information an attacker may collect during a fingerprinting attack.
所需技能
所需资源
- While simple fingerprinting can be accomplished with only a web browser, for more thorough fingerprinting an attacker requires a variety of tools to collect information about the target. These tools might include protocol analyzers, web-site crawlers, and fuzzing tools. Footprinting a service adequately may also take a few days if the attacker wishes the footprinting attempt to go undetected.
后果影响
影响范围: Confidentiality
技术影响: Other
说明: Information Leakage
缓解措施
Implementation: Obfuscate server fields of HTTP response.
Implementation: Hide inner ordering of HTTP response header.
Implementation: Customizing HTTP error codes such as 404 or 500.
Implementation: Hide URL file extension.
Implementation: Hide HTTP response header software information filed.
Implementation: Hide cookie's software information filed.
Implementation: Appropriately deal with error messages.
Implementation: Obfuscate database type in Database API's error message.