Skip to content
Snippets Groups Projects
Commit 99501a48 authored by Till Brehm's avatar Till Brehm
Browse files

Fixes #1876 Set name for ISPConfig session cookie and configure IDS to scan this cookie only

parent eaadfb9b
No related branches found
No related tags found
1 merge request!1876Resolve "Set name for ISPConfig session cookie and configure IDS to scan this cookie only"
Pipeline #14548 passed
......@@ -49,11 +49,14 @@ class ids {
require_once(ISPC_CLASS_PATH.'/IDS/Report.php');
require_once(ISPC_CLASS_PATH.'/IDS/Event.php');
require_once(ISPC_CLASS_PATH.'/IDS/Converter.php');
$ispcookie = array();
$ispcookie['ISPCSESS'] = $_COOKIE['ISPCSESS'];
$ids_request = array(
'GET' => $_GET,
'POST' => $_POST,
'COOKIE' => $_COOKIE
'COOKIE' => $ispcookie
);
$ids_init = IDS\Init::init(ISPC_CLASS_PATH.'/IDS/Config/Config.ini.php');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment