Hi @fahimeh firouzbakht,
Welcome to the Microsoft Q&A platform!
The MSExchangeHMWorker.exe
process is a part of the Microsoft Exchange Server Health Manager service, and it's responsible for monitoring and maintaining the health of Exchange services. The event you're seeing in the security log (Event ID 4624) with Logon Type 8 indicates a "NetworkCleartext" logon, which means that the user's credentials were passed in cleartext over the network. While it's concerning to see cleartext authentication, there are a few things to consider:
- The
MSExchangeHMWorker.exe
process operates within the context of internal server operations. If your Exchange server is properly segmented from public networks and only accessible by trusted internal systems, this might be less of an immediate concern. - Sometimes, this is the default behavior for certain internal processes within Windows and Exchange. However, it's always good practice to ensure that sensitive information is encrypted to mitigate any potential risks.
- Ensure that all communication between Exchange server components occurs over encrypted channels. For example, using Secure Sockets Layer (SSL) or Transport Layer Security (TLS) to encrypt data in transit between Exchange components can help mitigate the risk.
To address this potential issue, you can take the following steps:
- Ensure that Exchange services are configured to use secure methods of communication. And verify SSL/TLS settings in Exchange to ensure encrypted channels are used. The following is a example of Enforcing SSL/TLS: -Configure SSL/TLS: · Open the Exchange Management Shell. · Execute the following command to ensure the use of SSL for internal and external communications:
-Verify IIS Settings: · Open the IIS Manager on the Exchange server. · Ensure that SSL settings are correctly configured for the Exchange virtual directories.Set-ReceiveConnector "Your Receive Connector Name" -AuthMechanism TLS Set-SendConnector "Your Send Connector Name" -RequireTLS $true
- Ensure that Kerberos is used for authentication whenever possible, as it is a more secure method compared to NTLM.
- Ensure that your network segments are properly secured and that sensitive systems are isolated from unnecessary exposure. And Implement proper network security controls to prevent interception of network traffic.
- Evaluate and adjust audit policies and logs to ensure you're monitoring the right events without overlogging.
- Ensure your Exchange server is up-to-date with the latest patches and updates, as updates often include security enhancements.
Please feel free to contact me if you have any queries.
Best,
Jake Zhang