I am asking this question further to my previous ticket: #37705
When Admin Tools is installed I see the following lines in the configuration.php file depending upon whether
- Shared Session = YES or No
under the System tab of Global Configuration.
When Shared Session = NO in Global Configuration
public $shared_session = false;
public $session_name = 'administrator';
This line is the same for every website when Admin Tools is installed i.e. not unique.
When Shared Session = YES in Global Configuration
public $shared_session = true;
public $session_name = 'unique_session_name;
Every website has a unique $session_name.
Question
Is it better to enable Shared Session under System tab in Global Configuration when using Admin Tools in order to assign a UNIQUE $session_name.
Does the unique session name matter from a security perspective?
Thanks,
Ken :)