sophos endpoint defense software exchange 2016

hi,

since friday we have high cpu with the sophos endpoint defense software process.

windows server 2016

sophos central server core version: 2024.2.2.1

after disabling all the features the cpu is back to normal..

any ideas?

Parents
  • yes it´s uninstalled, i think it has to do something with enabling MAPI over HTTP. and maybe AMSI?

    what protection is behind sophos endpoint defense(sophos system protection service) ? 

    kind regards,

    sebastian

  • If you expand it:

    If you say that it's the "sophos endpoint defense software" process then that is the "Sophos System Protection Service" service, which is the sspservice.exe:

    Is the SSPService.exe using high CPU?

    If you disable AMSI in policy (or using the local UI as a test, having disabled Tamper Protection), does the workload go down?

    Is this the cause:

    https://techcommunity.microsoft.com/t5/exchange-team-blog/more-about-amsi-integration-with-exchange-server/ba-p/2572371

    Thanks

  • yes then the CPU goes down, but i thought this was already fixed in 2021? we are moving to M365 and activated MAPI over HTTP, but i need this mailserver the next 2 month.

    maybe i can disable only AMSI on the Exchange with powershell?

    But this would be only a workaround..

  • AMSI is the Microsoft Scanning Interface - https://learn.microsoft.com/en-us/windows/win32/amsi/antimalware-scan-interface-portal. For processes that load the Microsoft amsi.dll, they will automatically pull in any registered AMSI providers on the system.  There could be multiple but usually for one Security provider you have 1 AMSI provider.

    From a Sophos perspective, when AMSI is enabled in policy, Sophos registers their Sophos AMSI provider in the registry:

    • For native processes:
      HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\AMSI\Providers\{19016286-87D5-4D51-A042-2A9C5CBB8D5F}

      The native DLL loaded into the process:
      C:\Program Files\Sophos\Sophos AMSI Protection\SophosAmsiProvider.dll

    • For 32-bit process on 64-bit:
      HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\AMSI\Providers\{19016286-87D5-4D51-A042-2A9C5CBB8D5F}

      The 32-bit DLL loaded into the process:
      C:\Program Files\Sophos\Sophos AMSI Protection\x86\SophosAmsiProvider.dll

    A list of processes loading the AMSI.dll could be seen running the following PS:

    Get-Process | ForEach-Object {
        $process = $_
        try {
            $modules = $process.Modules | Where-Object { $_.ModuleName -eq "amsi.dll" }
            if ($modules) {
                $wmiProcess = Get-WmiObject Win32_Process -Filter "ProcessId = $($process.Id)"
                [pscustomobject]@{
                    ProcessName = $process.ProcessName
                    PID         = $process.Id
                    CommandLine = $wmiProcess.CommandLine
                }
            }
        } catch {
            # Ignore processes that we don't have access to
        }
    }
    

    The issue is, there is no way to say, I want Sophos AMSI enabled for some processes but not others. 

    If the AMSI provider is registered in the above registry, then for any process that loads AMSI.dll, the SophosAmsiProvider.dll will be loaded.

    The SophosAmsiProvider.dll sends data to be scanned by SophosFileScanner.exe.

    To see what is being scanned: 
    In Sophos Endpoint Self Help (ESH), Click on the "Tools" menu, then "Product Logging" on the left. Elevate as required to relaunch the tool. Navigate to "SFS" -> "Scan Summaries" and set that to "Debug" level. ESH will essentially create the DWORD "LogLevel" under "HKEY_LOCAL_MACHINE\SOFTWARE\Sophos\Logging\SFS\Scan Summaries" and set it to 0. So you could just do that if you wanted to do it on a remote computer via LiveReponse terminal for example.

    Note: Tamper protection does not apply to the logging registry section.

    The SophosFileScanner.exe processes will restart with the new logging configured automatically. After the excessive activity, under: "C:\ProgramData\Sophos\Sophos File Scanner\Logs\" there will be one or more .csv files starting with the file name "summary.". This has the files scanned, the time taken, the reason, size of the file, etc.. You can Delete the "LogLevel" DWORD to disable the logging or go back through the UI of ESH. Excel and pivot might be a good way to sort through the data, the scan type will be asmi in this case, e.g.

    #Enable CSV Logging for SFS:
    New-ItemProperty -path "HKLM:\SOFTWARE\Sophos\Logging\SFS\Scan Summaries" -Name "LogLevel" -Value 0

    #Wait for the work to occur then view the data of the created CSV file in a gridview for filtering and sorting e.g.:
    Import-Csv 'C:\ProgramData\Sophos\Sophos File Scanner\Logs\summary.240912163727.211668.csv' | ogv

    #Disable the logging.
    Remove-ItemProperty -path "HKLM:\SOFTWARE\Sophos\Logging\SFS\Scan Summaries" -Name "LogLevel"

    -- 

    You can create scanning exclusions for AMSI:



    If you put in C:\Windows\SysWOW64\inetsrv\w3wp.exe, for example, then this will prevent AMSI scan requests being sent for that process.

    Exchange does have the ability to disable AMSI integration as well.  This is mentioned here: https://techcommunity.microsoft.com/t5/exchange-team-blog/more-about-amsi-integration-with-exchange-server/ba-p/2572371 

    I hope this helps.

  • OK, understand .

    First of all , thank you for your help.

    But why is there no Automatic Exception for AMSI? Or does anyone has AMSI disabled on PowerShell ? 

    As i mentioned this error occurs since we have enabled HTTP over Mapi for all Users .

    will try to get some logs ..

    kind regards 

Reply Children