This file is indexed.

/usr/share/gallery/save_photos.php is in gallery 1.5.10.dfsg-1ubuntu1.

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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
<?php
/*
 * Gallery - a web based photo album viewer and editor
 * Copyright (C) 2000-2008 Bharat Mediratta
 *
 * 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., 51 Franklin Street - Fifth Floor, Boston, MA  02110-1301, USA.
 *
 * $Id: save_photos.php 17796 2008-08-05 21:16:00Z JensT $
 */

/**
 * @package Item
 */

/**
 *
 */
require_once(dirname(__FILE__) . '/init.php');

list($urls, $meta, $usercaption, $setCaption) =
	getRequestVar(array('urls', 'meta', 'usercaption','setCaption'));

list($wmName, $wmAlign, $wmAlignX, $wmAlignY, $wmSelect) =
	getRequestVar(array('wmName', 'wmAlign', 'wmAlignX', 'wmAlignY', 'wmSelect'));

list($uploadFromUrl, $addFiles) = getRequestVar(array('uploadFromUrl', 'addFiles'));

if (!isset($gallery->album)) {
	printPopupStart(clearGalleryTitle(gTranslate('core', "Add items")));
	echo gallery_error(
		sprintf(gTranslate('core', "Invalid Request. Please go back to %s."),
			galleryLink(makeGalleryUrl(), $gallery->app->galleryTitle))
	);
	exit;
}

// Hack check
if (!$gallery->user->canAddToAlbum($gallery->album)) {
	printPopupStart(clearGalleryTitle(gTranslate('core', "Add items")));
	gallery_error(sprintf(gTranslate('core', "You are not allowed to perform this action! Please go back to %s."),
		      galleryLink(makeGalleryUrl(), $gallery->app->galleryTitle))
	);
	exit;
}

if(!empty($_FILES)) {
	$uploadTry = true;
	foreach ($_FILES as $name => $attribs) {
		foreach($attribs['size'] as $nr => $value) {
			if($value == 0) {
				foreach($attribs as $attrib => $trash)
				unset($_FILES[$name][$attrib][$nr]);
			}
		}
		if(empty($_FILES[$name]['name'])) {
			unset($_FILES[$name]);
		}
	}
}

$image_tags	= array();
$info_tags	= array();

doctype();
?>
<html>
<head>
  <title><?php echo gTranslate('core', "Processing and Saving Photos") ?></title>
  <?php common_header(); ?>
</head>
<body dir="<?php echo $gallery->direction ?>" onLoad='parent.opener.hideProgressAndReload();' class="popupbody">
<?php
// Were an Url given ?
if (!empty($urls) && ! empty($urls[0])) {
	$invalidUrls = 0;
	echo '<div class="popup" align ="center">';

	/* Process all urls first.
	 * $urls contains all URLs given by the "URL Upload".
	 * $urls should be empty when using the "Form Upload".
	 */
	$messages = array();

	foreach ($urls as $url) {
		/* Get rid of any extra white space */
		$url = trim($url);

		if(empty($url)) {
			continue;
		}

		/*
		 * Check to see if the URL is a local directory (inspired by code from Jared (hogalot))
		 */
		if (fs_is_dir($url)) {
			echo gallery_info(
				sprintf(gTranslate('core', "Processing '%s' as a local directory."),
				'<i>' . htmlspecialchars(strip_tags(urldecode($url))) . '</i>')
			);

			$handle = fs_opendir($url);
			if($handle) {
				while (($file = readdir($handle)) != false) {
					if (isXSSclean($file)) {
						$tag = pathinfo($file);
						$tag = strtolower(isset($tag['extension']) ? $tag['extension'] : '');
						if (isAcceptableFormat($tag) || canDecompressArchive($tag)) {
							/* File seems to be valid, so add to userfile */
							if (substr($url,-1) == "/") {
								$image_tags[] = fs_export_filename($url . $file);
							}
							else {
								$image_tags[] = fs_export_filename($url . "/" . $file);
							}
						}
						if ($tag == 'csv') {
							if (substr($url,-1) == "/") {
								$info_tags[] = fs_export_filename($url . $file);
							}
							else {
								$info_tags[] = fs_export_filename($url . "/" . $file);
							}
						}
					}
					else {
						if ($file != "." && $file != "./" && $file != ".." && $file != "..") {
							$badFilesMessages = true;
						}
					}
				}
				closedir($handle);
			}
			continue;
		}
		// $url is not a dir
		else {
			echo gallery_info(
				sprintf(gTranslate('core', "Processing '%s' as file or URL."),
					'<i>' . htmlspecialchars(strip_tags(urldecode($url))) . '</i>')
			);
		}

		$urlParts = parse_url($url);
		$urlPathInfo = isset($urlParts['path']) ? pathinfo($urlParts['path']) : '';
		$urlExt = isset($urlPathInfo['extension']) ? strtolower($urlPathInfo['extension']) : '';

		/* If the URI doesn't start with a scheme, prepend 'http://' */
		if (!fs_is_file($url) && !pathIsAbsolute($url)) {
			if(! preg_match('!^(http|ftp)\://!', $url)) {
				// Unable to find %s locally - trying http
				$url = "http://$url";
			}

			/* Parse URL for name and file type */
			$url_stuff = @parse_url($url);
			if (!isset($url_stuff["path"])) {
				$url_stuff["path"]="";
			}

			$name = basename($url_stuff["path"]);
		}
		else {
			debugMessage(gTranslate('core', 'local file'), __FILE__, __LINE__, 2);

			$name = basename($url);
		}

		/*
		 * Try to open the url in lots of creative ways.
		 * Do NOT use fs_fopen here because that will pre-process
		 * the URL in win32 style (ie, convert / to \, etc).
		 */
		$urlArray = array($url, "$url/");
		if (!ereg("http", $url)) {
			$urlArray[] = "http://$url";
			$urlArray[] = "http://$url/";
		}

		// Dont output warning messages if we cant open url
		do {
			$tryUrl = array_shift($urlArray);
			$id = @fopen($tryUrl, "rb");
		}
		while (!$id && !empty($urlArray));

		if (!$id) {
			echo gallery_error(gTranslate('core', "Could not open as URL, file or directory."));
			$invalidUrls++;
			continue;
		}
		else {
			debugMessage(sprintf(gTranslate('core', "Opened '%s' successfully"), $url), __FILE__, __LINE__, 2);
		}

		/*
		* If this is an image or movie -
		* copy it locally and add it to the processor array
		*/
		if (isAcceptableFormat($urlExt) || isAcceptableArchive($urlExt)) {
			/* copy file locally
			* use fopen instead of fs_fopen to prevent directory and filename disclosure
			*/
			$file = $gallery->app->tmpDir . "/upload." . genGUID();
			$od = @fopen($file, "wb");
			if ($id && $od) {
				while (!feof($id)) {
					fwrite($od, fread($id, 65536));
					set_time_limit($gallery->app->timeLimit);
				}
				fclose($id);
				fclose($od);
			}
			/* Make sure we delete this file when we're through... */
			$temp_files[$file]=1;

			/* Add it to userfile */
			$_FILES['userfile']['name'][] = $name;
			$_FILES['userfile']['tmp_name'][] = $file;
			debugMessage(gTranslate('core', "Copy file locally"), __FILE__, __LINE__, 2);
		}
		else {
			/* Slurp the file */
			processingMsg(sprintf(gTranslate('core', "Parsing %s for images..."), $url));
			$contents = fs_file_get_contents($url);

			/* We'll need to add some stuff to relative links */
			$base_url = $url_stuff["scheme"] . '://' . $url_stuff["host"];
			$base_dir = '';
			if (isset($url_stuff["port"])) {
				$base_url .= ':' . $url_stuff["port"];
			}

			/* Hack to account for broken dirname
			* This has to make the ugly assumption that the URL is either a
			* directory (with or without trailing /), or a filename containing a "."
			* This prevents a directory without a trailing / from being inadvertantly
			* dropped from resulting URLs.
			*/
			if (ereg("/$", $url_stuff["path"]) || !ereg("\.", $name)) {
				$base_dir = $url_stuff["path"];
			}
			else {
				$base_dir = dirname($url_stuff["path"]);
			}

			/* Make sure base_dir ends in a / ( accounts for empty base_dir ) */
			if (!ereg("/$", $base_dir)) {
				$base_dir .= '/';
			}

			$things = array();
			$results =array();

			if (preg_match_all('{(?:src|href)\s*=\s*(["\'])([^\'">]+\.'. acceptableFormatRegexp() .')(?:\1)}i', $contents, $matches)) {
				foreach ($matches[2] as $url) {
					$things[$url] = 1;
				}
			}

			/* Add each unique link to an array we scan later */
			foreach (array_keys($things) as $thing) {
				/*
				* Some sites (slashdot) have images that start with // and this
				* confuses Gallery.  Prepend 'http:'
				*/
				if (substr($thing, 0, 2) == '//') {
					$thing = "http:$thing";
				}

				/* Absolute Link ( http://www.foo.com/bar ) */
				if (substr($thing, 0, 4) == 'http') {
					$image_tags[] = $thing;
				}
				/* Relative link to the host ( /foo.bar )*/
				elseif (substr($thing, 0, 1) == '/') {
					$image_tags[] = $base_url . $thing;
				}
				/* Relative link to the dir ( foo.bar ) */
				else {
					$image_tags[] = $base_url . $base_dir . $thing;
				}
			}

			/* Tell user how many links we found, but delay processing */
			processingMsg(sprintf(gTranslate('core', "Found %d images"), count($image_tags)));
		}
	}
} /* if ($urls) */

// Begin Metadata fetching and preprocessing
$image_info = array();
// Get meta data
if (!empty($meta)) {
	echo gallery_info(gTranslate('core',"Metainfo found."));

	foreach ($meta as $data) {
		$image_info = array_merge($image_info, parse_csv(fs_export_filename($data),";"));
	}
}

if(!empty($_FILES['metafile'])) {
	if (!isset($meta) || isDebugging()) {
		echo gallery_info(gTranslate('core', "Metainfo found"));
	}

	$image_info = array();

	for($i = 0; $i < sizeof($_FILES['metafile']['name']); $i++) {
		$name = $_FILES['metafile']['name'][$i];

		if(isXSSclean($name)) {
			echo debugMessage("name $name", __FILE__, __LINE__);

			$file = $_FILES['metafile']['tmp_name'][$i];
			echo debugMessage("file $file", __FILE__, __LINE__);

			// image_info is the array that contains the parsed from the csv file(s)
			$image_info = array_merge($image_info, parse_csv(fs_export_filename($file),";"));
		}
	}

	$exampleMetaData = $image_info[0];

	// Find the key of the file name field
	foreach (array_keys($exampleMetaData) as $currKey) {
		if (eregi("^\"?file\ ?name\"?$", $currKey)) {
			$filenameKey = $currKey;
		}
	}

	if(!isset($filenameKey)) {
		echo gallery_error(sprintf(gTRanslate('core', "Filename-column not found! CSV data not valid and is not used.")));
	}

	/* $captionMetaFields is an array that containes possible fields for the caption.
	* Ordered in priority from high to low.
	*/
	$captionMetaFields = array("Caption", "Title", "Description");
}
// End Metadata preprocessing

$upload_started = false;

echo "\n</div>";

echo debugMessage("Now we start processing the given Files. (If they were given)", __FILE__, __LINE__,1);

/* Delete file with malicious characters. */

if(!empty($_FILES['userfile'])) {
	foreach ($_FILES['userfile']['name'] as $nr => $filename) {
		if(! isXSSclean($filename)) {
			unset($_FILES['userfile']['name'][$nr]);
			unset($_FILES['userfile']['tmp_name'][$nr]);
		}
	}
}

$photoCount = isset($_FILES['userfile']) ? sizeof($_FILES['userfile']['name']) : 0;

if(isset($uploadTry) || $photoCount > 0) {
	echo '<div class="g-content-popup left">';

	echo infoBox(array(array(
		'type' => ($photoCount > 0) ? 'information' : 'error',
		'text' => gTranslate('core',
				"Processing %d element.",
				"Processing %d elements.",
				$photoCount,
				'Error, no photo uploaded.', true)
	)));

	$photosUploadedOk = 0;

	if($photoCount > 0) {
		for($i = 0; $i < $photoCount; $i++) {
			$upload_started = true;

			$name = $_FILES['userfile']['name'][$i];
			$file = $_FILES['userfile']['tmp_name'][$i];

			if (!empty($usercaption) && is_array($usercaption)) {
				$caption = array_shift($usercaption);
			}

			if (!isset($caption)) {
				$caption = '';
			}

			$extra_fields = array();
			if (!isset($setCaption)) {
				$setCaption = '';
			}

			if(isset($filenameKey)) {
				// Find in meta data array
				foreach ($image_info as $line) {
					if ($line[$filenameKey] == $name) {
						// Loop through fields
						foreach ($captionMetaFields as $field) {
							// If caption isn't populated and current field is
							if (empty($caption) && !empty($line[$field])) {
								$caption = $line[$field];
								unset($line[$field]);
							}
						}
						$extra_fields = $line;
						if(isDebugging()) {
							echo gTranslate('common', "Extra fields:");
							print_r($extra_fields);
						}
					}
				}
			}

			$path_parts = pathinfo($name);
			$ext = strtolower($path_parts["extension"]);

			// Add new image
			$ret = processNewImage($file, $ext, $name, $caption, $setCaption, $extra_fields, $wmName, $wmAlign, $wmAlignX, $wmAlignY, $wmSelect);
			if(empty($ret)) {
				$photosUploadedOk++;
			}
			else {
				echo gallery_error($ret);
			}
		}

		if($photosUploadedOk > 0) {
			$gallery->album->save(array(i18n("%d files uploaded."), $photosUploadedOk));
		}
	}

	if (!empty($temp_files)) {
		/* Clean up the temporary url file */
		foreach ($temp_files as $tf => $junk) {
			fs_unlink($tf);
		}
	}

	echo "\n</div>";
}

echo '<div class="g-content-popup center">';

if ((empty($photoCount) || empty($photosUploadedOk)) && $upload_started) {
	print gTranslate('core', "No images uploaded!");
}

if(!empty($uploadFromUrl) && count($url) != $invalidUrls) {
	echo gallery_error(gTranslate('core', "No images found at that place."));
}

echo "\n<div style=\"margin-top: 5px;\"></div>";
echo gButton('close', gTranslate('core', "Dismiss"), 'parent.close()');

/* Prompt for additional files if we found links in the HTML slurpage */
if (count($image_tags)) {
	/*
	* include JavaScript (de)selection and invert
	*/
	insertFormJS('uploadurl_form');

	echo "\n<p>". insertFormJSLinks('urls[]') ."</p>\n";

	echo '<div class="left">';
	echo gTranslate('core', "Select the items you want to upload. To select multiple hold 'ctrl' (PC) or 'Command' (Mac).");
	echo "\n</div>";

	echo makeFormIntro("save_photos.php",
		array('name' => 'uploadurl_form'),
		array('type' => 'popup'));

	/* Allow user to select which files to grab - only show url right now ( no image previews ) */
	sort($image_tags);
	$selectSize = (sizeof($image_tags) > 20) ? 20 : sizeof($image_tags);

	echo '<select name="urls[]" multiple="multiple" size="'. $selectSize ."\">\n";
	foreach ( $image_tags as $image_src) {
		echo "\t<option value=\"$image_src\" selected>$image_src</option>\n";
	}

	echo "</select>\n";

	/* REVISIT - it'd be nice to have these functions get shoved
	* into util.php at some time - maybe added functionality to the makeFormIntro?
	*/
	echo "\n<p>". insertFormJSLinks('urls[]') ."</p>";

	if(!empty($badFilesMessages)) {
		$badChars = getMaliciousChars();

		echo gallery_warning(
			gTranslate('core', "Some files with malicious characters are not listed. ") . "<p>" . implode(" ", $badChars)
		);
	}

    if (count($info_tags)) { ?>
<div class="popup" align="left">
<?php
printf(gTranslate('core', "%d meta file(s) found.  These files contain information about the images, such as titles and descriptions."), count($info_tags));
?>
</div>
<?php
echo insertFormJSLinks('meta[]');
echo "\n<br><br>";

foreach ($info_tags as $info_tag) {
	echo "\t<input type=\"checkbox\" name=\"meta[]\" value=\"$info_tag\" checked>$info_tag<br>\n";
}

echo "\n<br>";

echo insertFormJSLinks('meta[]');
    }
    /* end if (count($info_tags)) */
?>

<p>
<input type="hidden" name="setCaption" value="<?php echo isset($setCaption) ? $setCaption : '' ?>">
<input type="hidden" name="wmName" value="<?php echo $wmName ?>">
<input type="hidden" name="wmAlign" value="<?php echo $wmAlign ?>">
<input type="hidden" name="wmAlignX" value="<?php echo $wmAlignX ?>">
<input type="hidden" name="wmAlignY" value="<?php echo $wmAlignY ?>">
<input type="hidden" name="wmSelect" value="<?php echo $wmSelect ?>">
<?php echo gButton('addFiles', gTranslate('core', "Add Files"), 'parent.opener.showProgress(); document.uploadurl_form.submit()'); ?>
</p>

</form>

<?php
} /* End if links slurped */

?>
</div>
</body>
</html>