/usr/share/weblogin/login.fcgi is in webauth-weblogin 4.6.1-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 | #!/usr/bin/perl
#
# login.fcgi -- WebLogin login page for WebAuth.
#
# This is the front page for user authentication for weblogin. It accepts
# information from the user, passes it to the WebKDC for authentication, sets
# appropriate cookies, and displays the confirmation page and return links.
#
# It should use FastCGI if available, using the Perl CGI::Fast module's
# ability to fall back on regular operation if FastCGI isn't available.
#
# Written by Roland Schemers <schemers@stanford.edu>
# Extensive updates by Russ Allbery <eagle@eyrie.org>
# Converted to CGI::Application by Jon Robertson <jonrober@stanford.edu>
# Copyright 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012, 2013
# The Board of Trustees of the Leland Stanford Junior University
#
# See LICENSE for licensing terms.
##############################################################################
# Modules and declarations
##############################################################################
require 5.006;
use strict;
use warnings;
use CGI::Fast;
use WebLogin;
# Set to true in our signal handler to indicate that the script should exit
# once it finishes processing the current request.
our $EXITING = 0;
# Ignore SIGPIPE to force return of a proper error message.
local $SIG{PIPE} = 'IGNORE';
# The names of the page templates, relative to the template path configured in
# the WebLogin configuration file. This is set in this driver so that a
# modified driver script can use different template names, allowing multiple
# login interfaces with different UIs.
our %PAGES = (
confirm => 'confirm.tmpl',
error => 'error.tmpl',
login => 'login.tmpl',
logout => 'logout.tmpl',
multifactor => 'multifactor.tmpl',
pwchange => 'pwchange.tmpl',
);
# Create the persistent WebLogin object.
my $weblogin = WebLogin->new(PARAMS => { pages => \%PAGES });
# The main loop. If we're not running under FastCGI, CGI::Fast will detect
# that and only run us through the loop once. Otherwise, we live in this
# processing loop until the FastCGI socket closes, we get a signal to exit,
# or the script modification time changes.
while (my $q = CGI::Fast->new()) {
local $SIG{TERM} = sub { $EXITING = 1 };
$weblogin->query($q);
$weblogin->run();
} continue {
if ($EXITING || -M $ENV{SCRIPT_FILENAME} < 0) {
exit;
}
}
|