loader.web.auth.php ➔ ldGenerateSessionKeyCheck()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 7

Duplication

Lines 7
Ratio 100 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 0
dl 7
loc 7
rs 10
c 0
b 0
f 0
ccs 0
cts 6
cp 0
crap 2
1
<?php
2
3
	function ldGetCurrentTemplate( $function ) {
4
		if ( isset($function) ) {
5
			return $function;
6
		} else {
7
			$me = ar_ariadneContext::getObject();
8
			if ($me) {
9
				$context = $me->getContext();
10
				return $context['arCallFunction'];
11
			}
12
		}
13
		return null;
14
	}
15
16
	function ldSetCredentials($login, $ARUserDir="/system/users/") {
0 ignored issues
show
Coding Style introduced by
ldSetCredentials uses the super-global variable $_COOKIE which is generally not recommended.

Instead of super-globals, we recommend to explicitly inject the dependencies of your class. This makes your code less dependent on global state and it becomes generally more testable:

// Bad
class Router
{
    public function generate($path)
    {
        return $_SERVER['HOST'].$path;
    }
}

// Better
class Router
{
    private $host;

    public function __construct($host)
    {
        $this->host = $host;
    }

    public function generate($path)
    {
        return $this->host.$path;
    }
}

class Controller
{
    public function myAction(Request $request)
    {
        // Instead of
        $page = isset($_GET['page']) ? intval($_GET['page']) : 1;

        // Better (assuming you use the Symfony2 request)
        $page = $request->query->get('page', 1);
    }
}
Loading history...
Coding Style introduced by
ldSetCredentials uses the super-global variable $_SERVER which is generally not recommended.

Instead of super-globals, we recommend to explicitly inject the dependencies of your class. This makes your code less dependent on global state and it becomes generally more testable:

// Bad
class Router
{
    public function generate($path)
    {
        return $_SERVER['HOST'].$path;
    }
}

// Better
class Router
{
    private $host;

    public function __construct($host)
    {
        $this->host = $host;
    }

    public function generate($path)
    {
        return $this->host.$path;
    }
}

class Controller
{
    public function myAction(Request $request)
    {
        // Instead of
        $page = isset($_GET['page']) ? intval($_GET['page']) : 1;

        // Better (assuming you use the Symfony2 request)
        $page = $request->query->get('page', 1);
    }
}
Loading history...
Best Practice introduced by
The function ldSetCredentials() has been defined more than once; this definition is ignored, only the first definition in lib/includes/loader.cmd.php (L127-128) is considered.

This check looks for functions that have already been defined in other files.

Some Codebases, like WordPress, make a practice of defining functions multiple times. This may lead to problems with the detection of function parameters and types. If you really need to do this, you can mark the duplicate definition with the @ignore annotation.

/**
 * @ignore
 */
function getUser() {

}

function getUser($id, $realm) {

}

See also the PhpDoc documentation for @ignore.

Loading history...
17
		global $ARCurrent, $AR;
18
		if (!$ARUserDir || $ARUserDir == "") {
19
			$ARUserDir = "/system/users/";
20
		}
21
22
		// Make sure the login is lower case. Because of the
23
		// numerous checks on "admin".
24
		$login = strtolower( $login );
25
26
		debug("ldSetCredentials($login)","object");
27
28
		if (!$ARCurrent->session) {
29
			ldStartSession();
30
		} else {
31
			/* use the same sessionid if the user didn't login before */
32
			ldStartSession($ARCurrent->session->id);
33
		}
34
		$ARCurrent->session->put("ARLogin", $login);
35
		$ARCurrent->session->put("ARUserDir", $ARUserDir, true);
36
37
		/* create the session key */
38
		$session_key = bin2hex(random_bytes(16));
39
40
		$ARCurrent->session->put("ARSessionKey", $session_key, true);
41
		$ARCurrent->session->put("ARSessionTimedout", 0, 1);
42
43
		/* now save our session */
44
		$ARCurrent->session->save();
45
46
		$cookies = (array)$_COOKIE["ARSessionCookie"];
47
		$https = ($_SERVER['HTTPS']=='on');
48
49
		$currentCookies = array();
50
51
		foreach($cookies as $sessionid => $cookie){
52
			if(!$AR->hideSessionIDfromURL){
53
				if (!$ARCurrent->session->sessionstore->exists("/$sessionid/")) {
54
					$data = ldDecodeCookie($cookie);
55
					if(is_array($data)) {
56
						// don't just kill it, it may be from another ariadne installation
57
						if ($data['timestamp']<(time()-86400)) {
58
							// but do kill it if it's older than one day
59
							unset($cookies[$sessionid]);
60
							setcookie("ARSessionCookie[".$sessionid."]",false);
61
						} else {
62
							$currentCookies[$sessionid] = $data['timestamp'];
63
						}
64
					}
65
				}
66
			}
67
		}
68
69
		// Keep a maximum of 15 session cookies for one client
70
		if (sizeof($currentCookies) > 15) {
71
			sort($currentCookies);
72
			$removed = array_slice(array_keys($input), 15); // grab the session ids for all the older sessions
0 ignored issues
show
Bug introduced by
The variable $input does not exist. Did you forget to declare it?

This check marks access to variables or properties that have not been declared yet. While PHP has no explicit notion of declaring a variable, accessing it before a value is assigned to it is most likely a bug.

Loading history...
73
			foreach ($removed as $sessionid) {
74
				// and kill those sessions
75
				unset($cookies[$sessionid]);
76
				setcookie("ARSessionCookie[".$sessionid."]",false);
77
			}
78
		}
79
80
		if( $ARCurrent->session->id !== 0) {
81
			$data = array();
82
83
			$data['login']=$login;
84
			$data['timestamp']=time();
85
			$data['check']=ldGenerateSessionKeyCheck();
86
87
			$cookie=ldEncodeCookie($data);
88
			$cookiename = "ARSessionCookie[".$ARCurrent->session->id."]";
89
90
			header('P3P: CP="NOI CUR OUR"');
91
			setcookie('ARCurrentSession', $ARCurrent->session->id, 0, '/', false, $https, true);
92
			setcookie($cookiename,$cookie, 0, '/', false, $https, true);
93
		}
94
	}
95
96 View Code Duplication
	function ldAccessTimeout($path, $message, $args = null, $function = null) {
0 ignored issues
show
Duplication introduced by
This function seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
97
	global $ARCurrent, $store;
98
		/*
99
			since there is no 'peek' function, we need to pop and push
100
			the arCallArgs variable.
101
		*/
102
103
		if( isset( $args ) ) {
104
			$arCallArgs = $args;
105
		} else {
106
			$arCallArgs = @array_pop($ARCurrent->arCallStack);
107
			@array_push($ARCurrent->arCallStack, $arCallArgs);
108
		}
109
110
		$eventData = new baseObject();
111
		$eventData->arCallPath = $path;
0 ignored issues
show
Bug introduced by
The property arCallPath does not seem to exist in baseObject.

An attempt at access to an undefined property has been detected. This may either be a typographical error or the property has been renamed but there are still references to its old name.

If you really want to allow access to undefined properties, you can define magic methods to allow access. See the php core documentation on Overloading.

Loading history...
112
		$eventData->arCallFunction = ldGetCurrentTemplate( $function );
0 ignored issues
show
Bug introduced by
The property arCallFunction does not seem to exist in baseObject.

An attempt at access to an undefined property has been detected. This may either be a typographical error or the property has been renamed but there are still references to its old name.

If you really want to allow access to undefined properties, you can define magic methods to allow access. See the php core documentation on Overloading.

Loading history...
113
		$eventData->arCallArgs = $arCallArgs;
0 ignored issues
show
Bug introduced by
The property arCallArgs does not seem to exist in baseObject.

An attempt at access to an undefined property has been detected. This may either be a typographical error or the property has been renamed but there are still references to its old name.

If you really want to allow access to undefined properties, you can define magic methods to allow access. See the php core documentation on Overloading.

Loading history...
114
		$eventData->arLoginMessage = $message;
0 ignored issues
show
Bug introduced by
The property arLoginMessage does not seem to exist in baseObject.

An attempt at access to an undefined property has been detected. This may either be a typographical error or the property has been renamed but there are still references to its old name.

If you really want to allow access to undefined properties, you can define magic methods to allow access. See the php core documentation on Overloading.

Loading history...
115
		$eventData->arReason = 'access timeout';
0 ignored issues
show
Bug introduced by
The property arReason does not seem to exist in baseObject.

An attempt at access to an undefined property has been detected. This may either be a typographical error or the property has been renamed but there are still references to its old name.

If you really want to allow access to undefined properties, you can define magic methods to allow access. See the php core documentation on Overloading.

Loading history...
116
		$eventData = ar_events::fire( 'onaccessdenied', $eventData );
117
		if ( $eventData ) {
118
119
			$arCallArgs = $eventData->arCallArgs;
120
			$arCallArgs["arLoginMessage"] = $eventData->message;
121
122
			if (!$ARCurrent->arLoginSilent) {
123
				$ARCurrent->arLoginSilent = true;
124
				$store->call("user.session.timeout.html",
125
					$arCallArgs,
126
					$store->get($path) );
127
			}
128
129
		}
130
	}
131
132 View Code Duplication
	function ldAccessDenied($path, $message, $args = null, $function = null) {
0 ignored issues
show
Best Practice introduced by
The function ldAccessDenied() has been defined more than once; this definition is ignored, only the first definition in lib/includes/loader.cmd.php (L83-88) is considered.

This check looks for functions that have already been defined in other files.

Some Codebases, like WordPress, make a practice of defining functions multiple times. This may lead to problems with the detection of function parameters and types. If you really need to do this, you can mark the duplicate definition with the @ignore annotation.

/**
 * @ignore
 */
function getUser() {

}

function getUser($id, $realm) {

}

See also the PhpDoc documentation for @ignore.

Loading history...
Duplication introduced by
This function seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
133
	global $ARCurrent, $store;
134
		/*
135
			since there is no 'peek' function, we need to pop and push
136
			the arCallArgs variable.
137
		*/
138
139
		if( isset( $args ) ) {
140
			$arCallArgs = $args;
141
		} else {
142
			$arCallArgs = @array_pop($ARCurrent->arCallStack);
143
			@array_push($ARCurrent->arCallStack, $arCallArgs);
144
		}
145
146
		$eventData = new baseObject();
147
		$eventData->arCallPath = $path;
0 ignored issues
show
Bug introduced by
The property arCallPath does not seem to exist in baseObject.

An attempt at access to an undefined property has been detected. This may either be a typographical error or the property has been renamed but there are still references to its old name.

If you really want to allow access to undefined properties, you can define magic methods to allow access. See the php core documentation on Overloading.

Loading history...
148
		$eventData->arCallFunction = ldGetCurrentTemplate( $function );
0 ignored issues
show
Bug introduced by
The property arCallFunction does not seem to exist in baseObject.

An attempt at access to an undefined property has been detected. This may either be a typographical error or the property has been renamed but there are still references to its old name.

If you really want to allow access to undefined properties, you can define magic methods to allow access. See the php core documentation on Overloading.

Loading history...
149
		$eventData->arCallArgs = $arCallArgs;
0 ignored issues
show
Bug introduced by
The property arCallArgs does not seem to exist in baseObject.

An attempt at access to an undefined property has been detected. This may either be a typographical error or the property has been renamed but there are still references to its old name.

If you really want to allow access to undefined properties, you can define magic methods to allow access. See the php core documentation on Overloading.

Loading history...
150
		$eventData->arLoginMessage = $message;
0 ignored issues
show
Bug introduced by
The property arLoginMessage does not seem to exist in baseObject.

An attempt at access to an undefined property has been detected. This may either be a typographical error or the property has been renamed but there are still references to its old name.

If you really want to allow access to undefined properties, you can define magic methods to allow access. See the php core documentation on Overloading.

Loading history...
151
		$eventData->arReason = 'access denied';
0 ignored issues
show
Bug introduced by
The property arReason does not seem to exist in baseObject.

An attempt at access to an undefined property has been detected. This may either be a typographical error or the property has been renamed but there are still references to its old name.

If you really want to allow access to undefined properties, you can define magic methods to allow access. See the php core documentation on Overloading.

Loading history...
152
153
		$eventData = ar_events::fire( 'onaccessdenied', $eventData );
154
155
		if ( $eventData ) {
156
157
			$arCallArgs = $eventData->arCallArgs;
158
			$arCallArgs["arLoginMessage"] = $eventData->message;
159
160
			if (!$ARCurrent->arLoginSilent) {
161
				$ARCurrent->arLoginSilent = true;
162
				$store->call("user.login.html",
163
					$arCallArgs,
164
					$store->get($path) );
165
			}
166
		}
167
	}
168
169 View Code Duplication
	function ldAccessPasswordExpired($path, $message, $args=null, $function = null) {
0 ignored issues
show
Duplication introduced by
This function seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
170
	global $ARCurrent, $store;
171
		/*
172
			since there is no 'peek' function, we need to pop and push
173
			the arCallArgs variable.
174
		*/
175
176
		if( isset( $args ) ) {
177
			$arCallArgs = $args;
178
		} else {
179
			$arCallArgs = @array_pop($ARCurrent->arCallStack);
180
			@array_push($ARCurrent->arCallStack, $arCallArgs);
181
		}
182
183
		$eventData = new baseObject();
184
		$eventData->arCallPath = $path;
0 ignored issues
show
Bug introduced by
The property arCallPath does not seem to exist in baseObject.

An attempt at access to an undefined property has been detected. This may either be a typographical error or the property has been renamed but there are still references to its old name.

If you really want to allow access to undefined properties, you can define magic methods to allow access. See the php core documentation on Overloading.

Loading history...
185
		$eventData->arCallFunction = ldGetCurrentTemplate( $function );
0 ignored issues
show
Bug introduced by
The property arCallFunction does not seem to exist in baseObject.

An attempt at access to an undefined property has been detected. This may either be a typographical error or the property has been renamed but there are still references to its old name.

If you really want to allow access to undefined properties, you can define magic methods to allow access. See the php core documentation on Overloading.

Loading history...
186
		$eventData->arLoginMessage = $message;
0 ignored issues
show
Bug introduced by
The property arLoginMessage does not seem to exist in baseObject.

An attempt at access to an undefined property has been detected. This may either be a typographical error or the property has been renamed but there are still references to its old name.

If you really want to allow access to undefined properties, you can define magic methods to allow access. See the php core documentation on Overloading.

Loading history...
187
		$eventData->arReason = 'password expired';
0 ignored issues
show
Bug introduced by
The property arReason does not seem to exist in baseObject.

An attempt at access to an undefined property has been detected. This may either be a typographical error or the property has been renamed but there are still references to its old name.

If you really want to allow access to undefined properties, you can define magic methods to allow access. See the php core documentation on Overloading.

Loading history...
188
		$eventData->arCallArgs = $arCallArgs;
0 ignored issues
show
Bug introduced by
The property arCallArgs does not seem to exist in baseObject.

An attempt at access to an undefined property has been detected. This may either be a typographical error or the property has been renamed but there are still references to its old name.

If you really want to allow access to undefined properties, you can define magic methods to allow access. See the php core documentation on Overloading.

Loading history...
189
		$eventData = ar_events::fire( 'onaccessdenied', $eventData );
190
		if ( $eventData ) {
191
192
			$arCallArgs = $eventData->arCallArgs;
193
			$arCallArgs["arLoginMessage"] = $eventData->arLoginMessage;
194
195
			if (!$ARCurrent->arLoginSilent) {
196
				$ARCurrent->arLoginSilent = true;
197
				$store->call("user.password.expired.html",
198
					$arCallArgs,
199
					$store->get($path) );
200
			}
201
		}
202
203
	}
204
205 View Code Duplication
	function ldGenerateSessionKeyCheck() {
0 ignored issues
show
Duplication introduced by
This function seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
206
	global $ARCurrent;
207
		$session_key = $ARCurrent->session->get('ARSessionKey', true);
208
		$ARUserDir   = $ARCurrent->session->get('ARUserDir', true);
209
		$login       = $ARCurrent->session->get('ARLogin');
210
		return "{".md5($login.$ARUserDir.$session_key)."}";
211
	}
212
213
	function ldGetCredentials() {
0 ignored issues
show
Best Practice introduced by
The function ldGetCredentials() has been defined more than once; this definition is ignored, only the first definition in lib/includes/loader.cmd.php (L124-125) is considered.

This check looks for functions that have already been defined in other files.

Some Codebases, like WordPress, make a practice of defining functions multiple times. This may lead to problems with the detection of function parameters and types. If you really need to do this, you can mark the duplicate definition with the @ignore annotation.

/**
 * @ignore
 */
function getUser() {

}

function getUser($id, $realm) {

}

See also the PhpDoc documentation for @ignore.

Loading history...
Coding Style introduced by
ldGetCredentials uses the super-global variable $_COOKIE which is generally not recommended.

Instead of super-globals, we recommend to explicitly inject the dependencies of your class. This makes your code less dependent on global state and it becomes generally more testable:

// Bad
class Router
{
    public function generate($path)
    {
        return $_SERVER['HOST'].$path;
    }
}

// Better
class Router
{
    private $host;

    public function __construct($host)
    {
        $this->host = $host;
    }

    public function generate($path)
    {
        return $this->host.$path;
    }
}

class Controller
{
    public function myAction(Request $request)
    {
        // Instead of
        $page = isset($_GET['page']) ? intval($_GET['page']) : 1;

        // Better (assuming you use the Symfony2 request)
        $page = $request->query->get('page', 1);
    }
}
Loading history...
214
		debug("ldGetCredentials()","object");
215
		$ARSessionCookie = $_COOKIE["ARSessionCookie"];
216
		return $ARSessionCookie;
217
	}
218
219 View Code Duplication
	function ldCheckCredentials($login) {
0 ignored issues
show
Best Practice introduced by
The function ldCheckCredentials() has been defined more than once; this definition is ignored, only the first definition in lib/includes/loader.cmd.php (L130-131) is considered.

This check looks for functions that have already been defined in other files.

Some Codebases, like WordPress, make a practice of defining functions multiple times. This may lead to problems with the detection of function parameters and types. If you really need to do this, you can mark the duplicate definition with the @ignore annotation.

/**
 * @ignore
 */
function getUser() {

}

function getUser($id, $realm) {

}

See also the PhpDoc documentation for @ignore.

Loading history...
Duplication introduced by
This function seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
Coding Style introduced by
ldCheckCredentials uses the super-global variable $_GET which is generally not recommended.

Instead of super-globals, we recommend to explicitly inject the dependencies of your class. This makes your code less dependent on global state and it becomes generally more testable:

// Bad
class Router
{
    public function generate($path)
    {
        return $_SERVER['HOST'].$path;
    }
}

// Better
class Router
{
    private $host;

    public function __construct($host)
    {
        $this->host = $host;
    }

    public function generate($path)
    {
        return $this->host.$path;
    }
}

class Controller
{
    public function myAction(Request $request)
    {
        // Instead of
        $page = isset($_GET['page']) ? intval($_GET['page']) : 1;

        // Better (assuming you use the Symfony2 request)
        $page = $request->query->get('page', 1);
    }
}
Loading history...
Coding Style introduced by
ldCheckCredentials uses the super-global variable $_POST which is generally not recommended.

Instead of super-globals, we recommend to explicitly inject the dependencies of your class. This makes your code less dependent on global state and it becomes generally more testable:

// Bad
class Router
{
    public function generate($path)
    {
        return $_SERVER['HOST'].$path;
    }
}

// Better
class Router
{
    private $host;

    public function __construct($host)
    {
        $this->host = $host;
    }

    public function generate($path)
    {
        return $this->host.$path;
    }
}

class Controller
{
    public function myAction(Request $request)
    {
        // Instead of
        $page = isset($_GET['page']) ? intval($_GET['page']) : 1;

        // Better (assuming you use the Symfony2 request)
        $page = $request->query->get('page', 1);
    }
}
Loading history...
220
	global $ARCurrent, $AR;
221
		debug("ldCheckCredentials($login)","object");
222
		$result=false;
223
		$cookie=ldGetCredentials();
224
		$data = ldDecodeCookie($cookie[$ARCurrent->session->id]);
225
		if ($login === $data['login']
226
			&& ($saved=$data['check'])) {
227
			$check=ldGenerateSessionKeyCheck();
228
			if ($check === $saved && !$ARCurrent->session->get('ARSessionTimedout', 1)) {
229
				$result=true;
230
			} else {
231
				debug("login check failed","all");
232
			}
233
		} else {
234
			$ARSessionKeyCheck = $_GET['ARSessionKeyCheck'];
235
			if (!$ARSessionKeyCheck) {
236
				$ARSessionKeyCheck = $_POST['ARSessionKeyCheck'];
237
			}
238
			if ($ARSessionKeyCheck) {
239
				debug("ldCheckCredentials: trying ARSessionKeyCheck ($ARSessionKeyCheck)");
240
				if ($ARSessionKeyCheck == ldGenerateSessionKeyCheck()) {
241
					$result = true;
242
				}
243
			} else {
244
				debug("wrong login or corrupted cookie","all");
245
			}
246
		}
247
		return $result;
248
	}
249
250 View Code Duplication
	function ldDecodeCookie($cookie) {
0 ignored issues
show
Duplication introduced by
This function seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
251
		global $AR;
252
		$data = json_decode($cookie,true);
253
		if(is_null($data)){
254
			if(isset($AR->sessionCryptoKey) && function_exists('mcrypt_encrypt') ) {
255
				$key = base64_decode($AR->sessionCryptoKey);
256
				$crypto = new ar_crypt($key,MCRYPT_RIJNDAEL_256,1);
257
				$data = json_decode($crypto->decrypt($cookie),true);
258
			}
259
		}
260
261
		return $data;
262
	}
263
264 View Code Duplication
	function ldEncodeCookie($cookie) {
0 ignored issues
show
Duplication introduced by
This function seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
265
		global $AR;
266
		$data = json_encode($cookie);
267
		if(isset($AR->sessionCryptoKey) && function_exists('mcrypt_encrypt') ) {
268
			$key = base64_decode($AR->sessionCryptoKey);
269
			$crypto = new ar_crypt($key,MCRYPT_RIJNDAEL_256,1);
270
			$encdata = $crypto->crypt($data);
271
			if($encdata !== false) {
272
				$data = $encdata;
273
			}
274
		}
275
		return $data;
276
	}
277