import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo

This commit is contained in:
Roy Tam 2018-01-19 03:59:58 +08:00
commit dcd9973243
150858 changed files with 23884658 additions and 0 deletions

View file

@ -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 "<B>Server Name:</B> ", $ENV{'SERVER_NAME'}, "<BR>", "\n";
print "<B>Server Port:</B> ", $ENV{'SERVER_PORT'}, "<BR>", "\n";
print "<B>Server Software:</B> ", $ENV{'SERVER_SOFTWARE'}, "<BR>", "\n";
print "<B>Server Protocol:</B> ", $ENV{'SERVER_PROTOCOL'}, "<BR>", "\n";
print "<B>CGI Revision:</B> ", $ENV{'GATEWAY_INTERFACE'}, "<BR>", "\n";
print "<B>Browser:</B> ", $ENV{'HTTP_USER_AGENT'}, "<BR>", "\n";
print "<B>Remote Address:</B> ", $ENV{'REMOTE_ADDR'}, "<BR>", "\n";
print "<B>Remote Host:</B> ", $ENV{'REMOTE_HOST'}, "<BR>", "\n";
print "<B>Remote User:</B> ", $ENV{'REMOTE_USER'}, "<BR>", "\n";
print "You typed:\n";
while( $_ = <STDIN>) {
print "$_";
}

View file

@ -0,0 +1,55 @@
<html>
<!-- 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/. -->
<head>
<title>Form to sign</title>
<script language="javascript">
<!--
function submitSigned(form){
var signature = "";
var dataToSign = "";
var i;
form.action='signedForm.pl';
for (i = 0; i < form.length; i++)
if (form.elements[i].type == "text")
dataToSign += form.elements[i].value;
// alert("Data to sign:\n" + dataToSign);
signature = crypto.signText(dataToSign, "ask");
/* alert("You cannot see this alert");
alert("Data signature:\n" + signature); */
if (signature != "error:userCancel") {
for (i = 0; i < form.length; i++) {
if (form.elements[i].type == "hidden") {
if (form.elements[i].name == "dataToSign")
form.elements[i].value = dataToSign;
if (form.elements[i].name == "dataSignature")
form.elements[i].value = signature;
}
}
form.submit();
}
}
//-->
</script>
</head>
<body>
<form method=post Action="form.pl">
<input type=hidden size=30 name=dataSignature>
<input type=hidden size=30 name=dataToSign>
<input type=text size=30 name=p>
<BR>
<input type=text size=30 name=q>
<BR>
<input type=text size=30 name=r>
<BR>
<input type=submit value="Submit Data">
<input type=button value="Sign and Submit Data" onclick=submitSigned(this.form)>
<input type=reset value=Reset>
</form>
</body>
</html>

View file

@ -0,0 +1,55 @@
<html>
<!-- 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/. -->
<head>
<title>Form to sign</title>
<script language="javascript">
<!--
function submitSigned(form){
var signature = "";
var dataToSign = "";
var i;
form.action='cgi-bin/signedForm.pl';
for (i = 0; i < form.length; i++)
if (form.elements[i].type == "text")
dataToSign += form.elements[i].value;
// alert("Data to sign:\n" + dataToSign);
signature = crypto.signText(dataToSign, "ask");
/* alert("You cannot see this alert");
alert("Data signature:\n" + signature); */
if (signature != "error:userCancel") {
for (i = 0; i < form.length; i++) {
if (form.elements[i].type == "hidden") {
if (form.elements[i].name == "dataToSign")
form.elements[i].value = dataToSign;
if (form.elements[i].name == "dataSignature")
form.elements[i].value = signature;
}
}
form.submit();
}
}
//-->
</script>
</head>
<body>
<form method=post Action="cgi-bin/form.pl">
<input type=hidden size=30 name=dataSignature>
<input type=hidden size=30 name=dataToSign>
<input type=text size=30 name=p>
<BR>
<input type=text size=30 name=q>
<BR>
<input type=text size=30 name=r>
<BR>
<input type=submit value="Submit Data">
<input type=button value="Sign and Submit Data" onclick=submitSigned(this.form)>
<input type=reset value=Reset>
</form>
</body>
</html>

View file

@ -0,0 +1,60 @@
#! /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/.
sub decode {
read (STDIN, $buffer, $ENV{'CONTENT_LENGTH'});
@pairs = split(/&/, $buffer);
foreach $pair (@pairs)
{
($name, $value) = split(/=/, $pair);
$value =~tr/+/ /;
$value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C", hex($1))/eg;
$FORM{$name} = $value;
# print "name=$name value=$value<BR>\n";
}
}
print "Content-type: text/html\n\n";
&decode();
$dataSignature = $FORM{'dataSignature'};
$dataToSign = $FORM{'dataToSign'};
unlink("signature");
open(FILE1,">signature") || die("Cannot open file for writing\n");
print FILE1 "$dataSignature";
close(FILE1);
unlink("data");
open(FILE2,">data") || die("Cannot open file for writing\n");
print FILE2 "$dataToSign";
close(FILE2);
print "<BR><B>Signed Data:</B><BR>", "$dataToSign", "<BR>";
print "<BR><b>Verification Info:</b><BR>";
$verInfo = `./signver -D . -s signature -d data -v`;
print "<font color=red><b>$verInfo</b></font><BR>";
print "<BR><B>Signature Data:</B><BR>", "$dataSignature", "<BR>";
print "<BR><b>Signature Info:</b><BR>";
foreach $line (`./signver -s signature -A`) {
print "$line<BR>\n";
}
print "<b>End of Info</b><BR>";