Microsoft Exchange Server Detect
ID: ms-exchange-server
Severity: info
Author: pikpikcu,dhiyaneshDK
Tags: microsoft,exchange,tech
Description
Section titled “Description”Check for presence of Exchange Server using Outlook Web App path data.
YAML Source
Section titled “YAML Source”id: ms-exchange-server
info: name: Microsoft Exchange Server Detect author: pikpikcu,dhiyaneshDK severity: info description: Check for presence of Exchange Server using Outlook Web App path data. reference: - https://github.com/GossiTheDog/scanning/blob/main/http-vuln-exchange.nse metadata: max-request: 1 tags: microsoft,exchange,tech
http: - method: GET path: - "{{BaseURL}}/owa/auth/logon.aspx"
matchers-condition: or matchers: - type: regex part: header regex: - "(?i)(X-Owa-Version:)"
- type: regex part: body regex: - "/owa/auth/[0-9.]+/"
- type: word words: - '<title>Exchange Log In</title>' - '<title>Microsoft Exchange - Outlook Web Access</title>'
extractors: - type: kval kval: - x_owa_version
- type: regex part: body group: 1 regex: - "/owa/auth/([0-9.]+)/"# digest: 490a0046304402207c37a22e43cf9af77e271aa2502f9be5c9102123b34d26ea2ffcc24a02461d3502207baa9c4c6beb214ac319b0593a96eed03ed9dfca04899f938094e35273be4170:922c64590222798bb761d5b6d8e72950Guide to check the vulnerabilities
Section titled “Guide to check the vulnerabilities”This template is used to detect vulnerabilities in web applications. It can be used with the Nuclei tool to scan for specific patterns or behaviors.
$ nuclei -u "URL" -t "http/technologies/microsoft/ms-exchange-server.yaml"