Automate Recon and scanning process with Vidoc. All security teams in one place
By kannthu
The "Microsoft SharePoint Detect" module is designed to detect the presence of Microsoft SharePoint on a website. It focuses on identifying the software by analyzing the HTTP header MicrosoftSharePointTeamServices. This module is informative in nature and provides insights into the configuration of SharePoint.
This module does not directly impact the website or its functionality. Instead, it provides information about the presence of Microsoft SharePoint, allowing website administrators to assess their SharePoint configuration and potentially identify any misconfigurations or vulnerabilities.
The "Microsoft SharePoint Detect" module utilizes HTTP request templates and matching conditions to identify the presence of Microsoft SharePoint. It checks the HTTP header for the presence of the string "MicrosoftSharePointTeamServices" using a regular expression matcher. If a match is found, the module reports the presence of SharePoint.
Here is an example of an HTTP request that the module might send:
GET / HTTP/1.1
Host: example.com
User-Agent: Vidoc
The module's matching condition is based on the HTTP header, specifically the "MicrosoftSharePointTeamServices" part. It uses a regular expression matcher to search for the case-insensitive string "Microsoftsharepointteamservices:". If this string is found in the header, the module considers it a match.