/usr/share/otrs/bin/fcgi-bin/customer.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 | #!/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 ../../ as lib location
use FindBin qw($Bin);
use lib "$Bin/../..";
use lib "$Bin/../../Kernel/cpan-lib";
use lib "$Bin/../../Custom";
# Imports the library; required line
use CGI::Fast;
# load customer web interface
use Kernel::System::Web::InterfaceCustomer();
use Kernel::System::ObjectManager;
# 0=off;1=on;
my $Debug = 0;
#my $Cnt = 0;
# Response loop
while ( my $WebRequest = CGI::Fast->new() ) {
local $Kernel::OM = Kernel::System::ObjectManager->new();
my $Interface = Kernel::System::Web::InterfaceCustomer->new(
Debug => $Debug,
WebRequest => $WebRequest,
);
$Interface->Run();
# $Cnt++;
# print STDERR "This is connection number $Cnt\n";
}
|