From 36d22d82aa202bb199967e9512281e9a53db42c9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 21:33:14 +0200 Subject: Adding upstream version 115.7.0esr. Signed-off-by: Daniel Baumann --- security/nss/cmd/signver/examples/1/form.pl | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 security/nss/cmd/signver/examples/1/form.pl (limited to 'security/nss/cmd/signver/examples/1/form.pl') diff --git a/security/nss/cmd/signver/examples/1/form.pl b/security/nss/cmd/signver/examples/1/form.pl new file mode 100755 index 0000000000..f2cfddc691 --- /dev/null +++ b/security/nss/cmd/signver/examples/1/form.pl @@ -0,0 +1,22 @@ +#! /usr/bin/perl +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. + + +print "Content-type: text/html\n\n"; +print "Server Name: ", $ENV{'SERVER_NAME'}, "
", "\n"; +print "Server Port: ", $ENV{'SERVER_PORT'}, "
", "\n"; +print "Server Software: ", $ENV{'SERVER_SOFTWARE'}, "
", "\n"; +print "Server Protocol: ", $ENV{'SERVER_PROTOCOL'}, "
", "\n"; +print "CGI Revision: ", $ENV{'GATEWAY_INTERFACE'}, "
", "\n"; +print "Browser: ", $ENV{'HTTP_USER_AGENT'}, "
", "\n"; +print "Remote Address: ", $ENV{'REMOTE_ADDR'}, "
", "\n"; +print "Remote Host: ", $ENV{'REMOTE_HOST'}, "
", "\n"; +print "Remote User: ", $ENV{'REMOTE_USER'}, "
", "\n"; +print "You typed:\n"; + +while( $_ = ) { + print "$_"; +} + -- cgit v1.2.3