Page 1 of 1

PCI compliance issue

Posted: Wed Sep 26, 2018 2:47 am
by compunerdy
This is the last issue I need to solve to be compliant again and I am not sure where to go to fix it..

Non-Secure Session Cookies Identified
The website software running on this server appears to be setting session cookies without the Secure flag set over HTTPS connections. This means the session identifier information in these cookies would be transmitted even over unencrypted HTTP connections, which might make them susceptible to interception and tampering.

Re: PCI compliance issue

Posted: Wed Sep 26, 2018 9:59 pm
by jmestep
We are having to patch this also- some sites are reporting it from their PCI compliance scans. Here is what we did in web.config. Adding the xxx="true" at end of tags
<forms timeout="15" slidingExpiration="true" name="ACGOLD.ASPXAUTH" requireSSL="true"/>
<anonymousIdentification enabled="true" cookieName="ACGOLD.ASPXANONYMOUS" cookieTimeout="1440" cookieRequireSSL="true"/>
Add this right before </system.web>
<httpCookies httpOnlyCookies="true" requireSSL="true" />

Note: Don't make the changes unless your entire site is running https

Re: PCI compliance issue

Posted: Thu Sep 27, 2018 1:27 am
by compunerdy
I know I can turn on the option to have all pages show https but is there any issues with that still? I recall someone posting about issues with it.

Re: PCI compliance issue

Posted: Fri Oct 05, 2018 5:09 am
by AbleMods
In R10 there were a few (minor) issues. If you're on R12, you should most certainly be running all pages in HTTPS. I have every single one of my clients (that are capable) running full HTTPS. It's rock solid.

Re: PCI compliance issue

Posted: Mon Oct 08, 2018 7:31 am
by compunerdy
Thanks!! That seems to have me all fixed up.