This file is indexed.

/usr/share/perl5/FlashVideo/Site/Ehow.pm is in get-flash-videos 1.25~git2012.06.27-2.

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
# Part of get-flash-videos. See get_flash_videos for copyright.
package FlashVideo::Site::Ehow;

use strict;
use FlashVideo::Utils;
use URI::Escape;

sub find_video {
  my ($self, $browser) = @_;

  # Get the video ID
  my $uri;
  if ($browser->content =~ /source=(.*?)[ &]/) {
    $uri = $1;
  }
  else {
    die "Couldn't extract video location from page";
  }

  my $title;
  if ($browser->content =~ /<h1[^>]* class="[^"]*articleTitle[^"]*"[^>]*>(.*?)<\/h1>/x) {
    $title = $1;
  }

  if($uri =~ /^http:/) {
    return $uri, title_to_filename($title);
  }
	elsif($uri =~ /http:%3A/) {
		# This is the embed, and it's the same but encoded.
		$uri = uri_unescape($1);
		# Title is also probably wrong
		if ($browser->content =~ /<a[^>]*>(.*?)<\/a>/) {
			$title = $1;
		}
		return $uri, title_to_filename($title);
	}
	else {
		die "Couldn't extract Flash video URL from embed page";
	}
}


1;