View Issue Details

IDProjectCategoryView StatusLast Update
0007223OXID eShop (all versions)4.02. Session handlingpublic2023-02-28 11:58
Reporterpvanhemmen Assigned To 
PrioritynormalSeverityfeatureReproducibilityalways
Status resolvedResolutionreopened 
Product Version6.2.2 
Fixed in Version7.0.0 
Summary0007223: force session start leads to sid parameters on all links on first page request
DescriptionWhen the config param blForceSessionStart is set to true, all article links are rendered with an unnessecary force_sid get param on the first page request.

The method isSidNeeded() in the class \OxidEsales\Eshop\Core\Session accepts an optional parameter $sUrl. If this is set, the method checks if the url matches the current base url and returns true, if both don't mach. This makes sense to keep sessions accross different domains.

But in addition, the method also should return false if both do match - as the force_sid param is superfluos when rendering article links on the same domain. Instead the method does a check for _forceSessionStart() furter down an returns true also for link rendering.

I think the additional condition above should be added to the method
Steps To Reproduce1. Set blForceSessionStart to true in config.inc.php
2. Clear server sessions and cookies in browser or use a fresh/private instance
3. Request a page with article links, for example the start page
4. Check the rendered article links. A force_sid param is present on all links.
Additional InformationThe problem here is that a lot of our new users add bookmarks to articles or even share those links with the superfluos force_sid param. When they or another user call these links later on they run into problems with mismatching CSRF Tokens when they try to add articles to their baskets.
TagsNo tags attached.
ThemeNot defined
BrowserNot defined
PHP VersionNot defined
Database VersionNot defined

Relationships

related to 0006172 confirmedSven Brunk force_sid is added to all urls if shop is hosted behind a ssl reverse proxy 

Activities

pvanhemmen

2021-03-30 17:01

reporter   ~0013407

I should mention that this is not as simple as it might seem, since the sid param mandatory for example when logging into the admin backend. Thus a check must take into account what link type is rendered and where.

Hope this helps.

QA

2021-03-30 17:12

administrator   ~0013408

Last edited: 2021-03-30 17:14

The option forces a session start on the first page load and is intended for users whose browsers do not accept cookies. That is why the sid parameter is appended to URLs:
https://docs.oxid-esales.com/developer/en/6.2/development/modules_components_themes/project/configincphp.html#blforcesessionstart

So your description is the expected behavior. For this reason, I am closing the bug. You are welcome to reopen the ticket if you have more information.

(mf)

pvanhemmen

2021-03-30 17:25

reporter   ~0013409

This behavior also affects users whose browsers do accept cookies (like 99% of all users). In this case it doesn't make sense as described above, whereas a forced session start sometimes is needed not just for the minority of users whose browsers don't accept cookies.

QA

2021-03-31 16:41

administrator   ~0013410

Last edited: 2021-03-31 16:48

The option dates back to a time when cookies were not used. This explains why the force_sid parameter is used in the URL by default. There is no other behavior and no check whether cookies are possible or not.

The option still exists for compatibility reasons and was not intended to cover the behavior you want.
Nevertheless, I will discuss the option internally.