/usr/share/otrs/bin/otrs.CheckSum.pl is in otrs2 6.0.5-1.
This file is owned by root:root, with mode 0o755.
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 | #!/usr/bin/perl
# --
# Copyright (C) 2001-2018 OTRS AG, http://otrs.com/
# --
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU AFFERO General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# 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 Affero General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
# or see http://www.gnu.org/licenses/agpl.txt.
# --
use strict;
use warnings;
use File::Basename;
use FindBin qw($RealBin);
use lib dirname($RealBin);
use lib dirname($RealBin) . '/Kernel/cpan-lib';
use lib dirname($RealBin) . '/Custom';
use vars qw($RealBin);
use Getopt::Std;
use Digest::MD5 qw(md5_hex);
my $Start = $RealBin;
$Start =~ s{/bin}{/}smx;
my $Archive = '';
my $Action = 'compare';
my %Compare;
# get options
my %Opts;
getopt( 'abd', \%Opts );
if ( exists $Opts{h} || !keys %Opts ) {
print <<EOF;
Create or compare OTRS file checksum information.
Usage:
otrs.CheckSum.pl -a create|compare [-b /path/to/ARCHIVE] [-d /path/to/framework]
Options:
-a - Specify the action (create|compare).
[-b] - Specify the path to archive.
[-d] - Specify the path to OTRS framework.
[-h] - Display help for this command.
EOF
exit 1;
}
if ( $Opts{a} && $Opts{a} eq 'create' ) {
$Action = $Opts{a};
}
if ( $Opts{d} ) {
$Start = $Opts{d};
}
if ( $Opts{b} ) {
$Archive = $Opts{b};
}
else {
$Archive = $Start . 'ARCHIVE';
}
my $Output;
if ( $Action eq 'create' ) {
print "Writing $Archive ...";
open( $Output, '>', $Archive ) || die "ERROR: Can't write: $Archive"; ## no critic
}
else {
open( my $In, '<', $Archive ) || die "ERROR: Can't read: $Archive"; ## no critic
while (<$In>) {
my @Row = split( /::/, $_ );
chomp $Row[1];
$Compare{ $Row[1] } = $Row[0];
}
close $In;
}
my @Dirs;
ProcessDirectory($Start);
for my $File ( sort keys %Compare ) {
#print "Notice: Removed $Compare{$File}\n";
print "Notice: Removed $File\n";
}
if ( $Action eq 'create' ) {
print " done.\n";
close $Output;
}
sub ProcessDirectory {
my $In = shift;
my @List = glob("$In/*");
FILE:
for my $File (@List) {
# clean up directory name
$File =~ s{//}{/}smxg;
# always stay in OTRS directory
next FILE if $File !~ m{^\Q$Start\E};
# ignore source code directories, ARCHIVE file
next FILE if $File =~ m{/.git|/ARCHIVE}smx;
# if it's a directory
if ( -d $File ) {
ProcessDirectory($File);
next FILE;
}
# ignore all non-regular files as links, pipes, sockets etc.
next FILE if ( !-f $File );
# if it's a file
my $OrigFile = $File;
$File =~ s{$Start}{}smx;
$File =~ s{^/(.*)$}{$1}smx;
# ignore directories
next FILE if $File =~ m{^doc/}smx;
next FILE if $File =~ m{^var/tmp}smx;
next FILE if $File =~ m{^var/article}smx;
next FILE if $File =~ m{js-cache}smx;
next FILE if $File =~ m{css-cache}smx;
# next if not readable
# print "File: $File\n";
open( my $In, '<', $OrigFile ) || die "ERROR: $!"; ## no critic
my $DigestGenerator = Digest::MD5->new();
$DigestGenerator->addfile($In);
my $Digest = $DigestGenerator->hexdigest();
close $In;
if ( $Action eq 'create' ) {
print $Output $Digest . '::' . $File . "\n";
}
else {
if ( !$Compare{$File} ) {
print "Notice: New $File\n";
}
elsif ( $Compare{$File} ne $Digest && !-e "$File.save" ) { ## ignore files with .save
print "Notice: Dif $File\n";
}
elsif ( -e "$File.save" )
{ ## report .save files as modified by the OTRS Package Manager
print "Notice: OPM Changed $File\n"
}
if ( defined $Compare{$File} ) {
delete $Compare{$File};
}
}
}
return 1;
}
|