Skip to content
Snippets Groups Projects
Commit 8a62e1dd authored by Greeshma's avatar Greeshma
Browse files

installation_error_fix

parent ce5a29a7
No related branches found
No related tags found
No related merge requests found
......@@ -233,7 +233,7 @@ function csrf_get_tokens() {
// any cookies. It may or may not be used, depending on whether or not
// the cookies "stick"
$secret = csrf_get_secret();
if (!$has_cookies && $secret) {
if (!$has_cookies && $secret && isset($_SERVER['IP_ADDRESS'])) {
// :TODO: Harden this against proxy-spoofing attacks
$ip = ';ip:' . csrf_hash($_SERVER['IP_ADDRESS']);
} else {
......
......@@ -1473,7 +1473,7 @@ class Vtiger_Functions {
*/
public static function validateRequestParameters($request) {
foreach (self::$type as $param => $type) {
if ($request[$param] && !self::validateRequestParameter($type, $request[$param])) {
if ( isset($request[$param])&& $request[$param] && !self::validateRequestParameter($type, $request[$param])) {
http_response_code(400);
throw new Exception('Bad Request');
}
......
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