Forum Discussion

Greg McMurray's avatar
Greg McMurray
Brass Contributor
Feb 28, 2019
Solved

Search Issue After Installing KB4461549 (Dec 2018 CU)

My question: What is the best way to get support for this? SP2013 has moved out of mainstream support, and so I am not quite sure the right way to report this issue other than paying $500 to open a t...
  • Greg McMurray's avatar
    Mar 27, 2019

    It looks like there has been some more activity on this, with https://support.microsoft.com/en-us/help/4052414 being published, that documents how to revert back to the old (potentially insecure) behavior. On your server, open a PowerShell prompt and run the following code:

     

    $web = Get-SPWeb https://server/path/to/web
    $web.AllProperties.Add("SyncSearchAllowed", 1)
    $web.Update()

     

    Boom. The web parts start working again with the same behaviors that existed prior to the December 2013 security patches. I would assume it re-opens the information disclosure vulnerability, so certainly be aware of the risks before proceeding.

Resources