This file is indexed.

/usr/share/zabbix/js/class.cookie.js is in zabbix-frontend-php 1:1.8.11-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
//Javascript document
/*
** ZABBIX
** Copyright (C) 2000-2009 SIA Zabbix
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation; either version 2 of the License, or
** (at your option) any later version.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
**/ 

/************************************************************************************/
/*								COOKIES CONTROL 									*/
/************************************************************************************/
// Title: cookies class
// Description: to manipulate cookies on client side
// Author: Aly
var cookie ={
cookies: new Array(),

init: function(){
	var path = new Curl();
	var page = path.getPath();

	var allCookies = document.cookie.split('; ');
	for (var i=0;i<allCookies.length;i++) {
		var cookiePair = allCookies[i].split('=');

		if((cookiePair[0].indexOf('cb_') > -1) && (cookiePair[0].indexOf('cb_'+page) == -1)){
			this.erase(cookiePair[0]);
		}
		else{
			this.cookies[cookiePair[0]] = cookiePair[1];
//SDI(cookiePair[0] + ' ' + cookiePair[1]);			
		}
	}
},

create: function(name,value,days){
	if(typeof(days) != "undefined") {
		var date = new Date();
		date.setTime(date.getTime()+(days*24*60*60*1000));
		var expires = "; expires="+date.toGMTString();
	}
	else{ 
		var expires = "";
	}

	document.cookie = name+"="+value+expires+"; path=/";
	
// Apache header size limit
	if(document.cookie.length > 8000){
		document.cookie = name+"=; path=/";
		alert(locale['S_MAX_COOKIE_SIZE_REACHED']);
		return false;
	}
	else{
		this.cookies[name] = value;
	}

return true;
},

createArray: function(name,value,days){
	var list = value.join(',');
	var list_part = "";
	var part = 1;
	
	var part_count = parseInt(this.read(name+'_parts'),10);
	if(is_null(part_count)) part_count = 1;
	
	var tmp_index = 0
	var result = true;
	while(list.length > 0){
		list_part = list.substr(0, 4000);
		list = list.substr(4000);

		if(list.length > 0){
			tmp_index = list_part.lastIndexOf(',');
			if(tmp_index > -1){
				list = list_part.substring(tmp_index+1) + list;
				list_part = list_part.substring(0,tmp_index+1);
			}
		}

		result = this.create(name+'_'+part, list_part, days);
		part++;

		if(!result) break;
	}

	this.create(name+'_parts', part-1);
	
	while(part <= part_count){
		this.erase(name+'_'+part);
		part++;
	}
},

createJSON: function(name,value,days){
	var value_array = new Array();
	for(var key in value){
		if(!empty(value[key])) value_array.push(value[key]);
	}

	this.createArray(name,value_array,days);
},

read: function(name){
	if(typeof(this.cookies[name]) != 'undefined'){
		return this.cookies[name];
	} 
	else if(document.cookie.indexOf(name) != -1){
		var nameEQ = name + "=";
		var ca = document.cookie.split(';');
		for(var i=0;i < ca.length;i++) {
			var c = ca[i];
			while (c.charAt(0)==' ') c = c.substring(1,c.length);
			if(c.indexOf(nameEQ) == 0)	return this.cookies[name] = c.substring(nameEQ.length,c.length);
		}
	}

return null;
},

readArray: function(name){
	var list = "";
	var list_part = "";
	var part = 1;

	var part_count = parseInt(this.read(name+'_parts'),10);
	if(is_null(part_count)) part_count = 1;

//	reading all parts of selected list
	while(part <= (part_count+1)){
		if(!is_null(list_part))	list += list_part;

		list_part = this.read(name+'_'+part);
		part++;
	}

	var range = list.split(',');

return range;
},

readJSON: function(name){
	var value_json = {};
	var value_array = this.readArray(name);
	for(var i=0; i < value_array.length; i++){
		if(isset(i, value_array)) value_json[value_array[i]] = value_array[i];
	}

return value_json;
},

printall: function(){
	var allCookies = document.cookie.split('; ');
	for (var i=0;i<allCookies.length;i++) {
		var cookiePair = allCookies[i].split('=');
		
		SDI("[" + cookiePair[0] + "] is " + cookiePair[1]); // assumes print is already defined
	}
},

erase: function(name){
	this.create(name,'',-1);
	this.cookies[name] = undefined;
},

eraseArray: function(name){
	var part_count = parseInt(this.read('cb_'+name+'_parts'), 10);
	if(!is_null(part_count)){
		for(var i = 0; i < part_count; i++){
			this.erase('cb_'+name+'_'+i);
		}
		this.erase('cb_'+name+'_parts');
	}
},

eraseArrayByPattern: function(pattern){

	for(var name in this.cookies) {
		if(!isset(name, this.cookies) || empty(this.cookies[name])) continue;

		if(name.indexOf('cb_'+pattern) == -1){
			this.erase(name);
		}
	}
}
}