Skip to content

Instantly share code, notes, and snippets.

View grant-killian's full-sized avatar

Grant Killian grant-killian

View GitHub Profile
@grant-killian
grant-killian / Rackspace.SecurityHardening.Step7.ProtectPhantomJS.config
Created August 4, 2016 21:57
Altering the Sitecore pipeline to remove the PhantomJS element
<configuration xmlns:patch="http://www.sitecore.net/xmlconfig/">
<sitecore>
<pipelines>
<getScreenShotForURL>
<patch:delete />
</getScreenShotForURL>
</pipelines>
</sitecore>
</configuration>
@grant-killian
grant-killian / Rackspace.SecurityHardening.Step5.IncreaseLoginSecurity.config
Created August 4, 2016 21:48
To "Increase login security" we use the following patch .config for Sitecore.
<configuration xmlns:patch="http://www.sitecore.net/xmlconfig/">
<sitecore>
<settings>
<setting name="Login.DisableAutoComplete">
<patch:attribute name="value">true</patch:attribute>
</setting>
<setting name="Login.DisableRememberMe">
<patch:attribute name="value">true</patch:attribute>
</setting>
<setting name="Login.RememberLastLoggedInUserName">