/usr/share/weblogin/pwchange.fcgi is in webauth-weblogin 4.5.5-2.
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 | #!/usr/bin/perl
#
# pwchange.fcgi -- WebLogin password change page for WebAuth.
#
# This is the page to change user password for weblogin. It accepts
# information from the user, passes it to the WebKDC for authentication, and
# changes password if credentials match.
#
# 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 Jon Robertson <jonrober@stanford.edu>
# Copyright 2010, 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 = (
login => 'login.tmpl',
logout => 'logout.tmpl',
confirm => 'confirm.tmpl',
pwchange => 'pwchange.tmpl',
multifactor => 'multifactor.tmpl',
error => 'error.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 };
# Set the default run mode for the pwchange script.
if (!defined $q->param('rm')) {
$q->param('rm', 'pwchange');
}
# Invoke the WebLogin application.
$weblogin->query($q);
$weblogin->run();
} continue {
if ($EXITING || -M $ENV{SCRIPT_FILENAME} < 0) {
exit;
}
}
|