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 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293
|
#!perl -T
use strict;
use warnings;
use ExtUtils::PkgConfig ();
use File::Spec;
use File::Temp qw(tempfile);
use Test::More;
use Test::Exception;
use Config;
BEGIN {
eval 'use Test::Taint 1.06';
plan skip_all => 'Test::Taint 1.06 required for testing behaviors on tainted inputs' if $@;
};
BEGIN {
eval 'use Taint::Util 0.08 qw(untaint)';
plan skip_all => 'Taint::Util 0.08 required for testing behaviors on tainted inputs' if $@;
};
my ($key, $crt);
do {
# What can we do other than this...?
untaint $ENV{PATH};
my $OPENSSL = do {
if (defined(my $prefix = ExtUtils::PkgConfig->variable('openssl', 'prefix'))) {
my $OPENSSL = $prefix . '/bin/openssl' . $Config{exe_ext};
if (-x $OPENSSL) {
untaint $OPENSSL;
diag "Using `$OPENSSL' to generate a keypair";
$OPENSSL;
}
else {
plan skip_all => q{Executable `openssl' was not found};
}
}
else {
plan skip_all => q{No package `openssl' found};
}
};
my ($conf_fh, $conf_file) = tempfile(UNLINK => 1);
print {$conf_fh} <<'EOF';
[ req ]
distinguished_name = req_distinguished_name
attributes = req_attributes
prompt = no
[ req_distinguished_name ]
C = AU
ST = Some-State
L = Test Locality
O = Organization Name
OU = Organizational Unit Name
CN = Common Name
emailAddress = test@email.address
[ req_attributes ]
EOF
close $conf_fh;
my $DEVNULL = File::Spec->devnull();
my (undef, $key_file) = tempfile(UNLINK => 1);
my (undef, $csr_file) = tempfile(UNLINK => 1);
my (undef, $crt_file) = tempfile(UNLINK => 1);
system(qq{$OPENSSL genrsa -out $key_file >$DEVNULL 2>&1}) and die $!;
system(qq{$OPENSSL req -new -key $key_file -out $csr_file -config $conf_file >$DEVNULL 2>&1}) and die $!;
system(qq{$OPENSSL x509 -in $csr_file -out $crt_file -req -signkey $key_file -set_serial 1 >$DEVNULL 2>&1}) and die $!;
$key = do {
local $/;
open my $fh, '<', $key_file or die $!;
scalar <$fh>;
};
$crt = do {
local $/;
open my $fh, '<', $crt_file or die $!;
scalar <$fh>;
};
};
my $plain = q{From: alice@example.org
To: bob@example.org
Subject: Crypt::SMIME test
This is a test mail. Please ignore...
};
$plain =~ s/\r?\n|\r/\r\n/g;
my $verify = q{Subject: Crypt::SMIME test
This is a test mail. Please ignore...
};
$verify =~ s/\r?\n|\r/\r\n/g;
# -----------------------------------------------------------------------------
plan tests => 7;
use_ok('Crypt::SMIME');
taint_checking_ok();
subtest 'Untainted' => sub {
plan tests => 20;
my $smime = Crypt::SMIME->new();
untaint $key;
untaint $crt;
lives_ok {$smime->setPrivateKey($key, $crt)} 'Set an untainted keypair';
lives_ok {$smime->setPublicKey($crt)} 'Set un untainted public key';
lives_ok {$smime->setPublicKey([$crt])} 'Set un untainted public key';
my $signed;
untaint $plain;
lives_ok {$signed = $smime->sign($plain)} 'Sign an untainted message';
untainted_ok $signed, 'The signed message shall be untainted';
lives_and {
ok $smime->isSigned($signed)
} 'isSigned() on an untainted signed message shall succeed';
my $verified;
lives_ok {$verified = $smime->check($signed)} 'Verify an untainted message';
untainted_ok $verified, 'The verified message shall be untainted';
lives_ok {
$smime->setAtTime(time);
$verified = $smime->check($signed);
} 'Verify an untainted message with untainted parameters';
untainted_ok $verified, 'The verified message shall still be untainted';
my $encrypted;
lives_ok {$encrypted = $smime->encrypt($plain)} 'Encrypt an untainted message';
untainted_ok $encrypted, 'The encrypted message shall be untainted';
lives_and {
ok $smime->isEncrypted($encrypted);
} 'isEncrypted() on an untainted encrypted message shall succeed';
my $decrypted;
lives_ok {$decrypted = $smime->decrypt($encrypted)} 'Decrypt an untainted message';
untainted_ok $decrypted, 'The decrypted message shall be untainted';
is $decrypted, $verify, 'The decrypted message matches to the original';
my $certs_ref;
lives_ok {$certs_ref = Crypt::SMIME::extractCertificates($signed)} 'Extract certificates from an untainted message';
untainted_ok_deeply $certs_ref, 'The extracted certificates shall be untainted';
lives_ok {$certs_ref = Crypt::SMIME::getSigners($signed)} 'Extract signer certificates from an untainted message';
untainted_ok_deeply $certs_ref, 'The extracted certificates shall be untainted';
};
subtest 'Tainted keypair' => sub {
plan tests => 18;
my $smime = Crypt::SMIME->new();
taint $key;
taint $crt;
lives_ok {$smime->setPrivateKey($key, $crt)} 'Set a tainted keypair';
untaint $crt;
lives_ok {$smime->setPublicKey($crt)} 'Set un untainted public key';
lives_ok {$smime->setPublicKey([$crt])} 'Set un untainted public key';
untainted_ok $smime, 'The context itself is not tainted';
my $signed;
untaint $plain;
lives_ok {$signed = $smime->sign($plain)} 'Sign an untainted message';
tainted_ok $signed, 'The signed message shall be tainted';
my $verified;
untaint $signed;
lives_ok {$verified = $smime->check($signed)} 'Verify an untainted message';
untainted_ok $verified, 'The verified message shall be untainted';
my $encrypted;
lives_ok {$encrypted = $smime->encrypt($plain)} 'Encrypt an untainted message';
untainted_ok $encrypted, 'The encrypted message shall be untainted';
lives_and {
ok $smime->isEncrypted($encrypted);
} 'isEncrypted() on an untainted encrypted message shall succeed';
my $decrypted;
lives_ok {$decrypted = $smime->decrypt($encrypted)} 'Decrypt an untainted message';
tainted_ok $decrypted, 'The decrypted message shall be tainted';
is $decrypted, $verify, 'The decrypted message matches to the original';
my $certs_ref;
taint $signed;
lives_ok {$certs_ref = Crypt::SMIME::extractCertificates($signed)} 'Extract certificates from a tainted message';
tainted_ok_deeply $certs_ref, 'The extracted certificates shall be tainted';
lives_ok {$certs_ref = Crypt::SMIME::getSigners($signed)} 'Extract signer certificates from an tainted message';
tainted_ok_deeply $certs_ref, 'The extracted certificates shall be tainted';
};
subtest 'Tainted plain text' => sub {
plan tests => 13;
my $smime = Crypt::SMIME->new();
untaint $key;
untaint $crt;
lives_ok {$smime->setPrivateKey($key, $crt)} 'Set an untainted keypair';
lives_ok {$smime->setPublicKey($crt)} 'Set an untainted public key';
lives_ok {$smime->setPublicKey([$crt])} 'Set an untainted public key';
my $signed;
taint $plain;
lives_ok {$signed = $smime->sign($plain)} 'Sign a tainted message';
tainted_ok $signed, 'The signed message shall be tainted';
my $verified;
lives_ok {$verified = $smime->check($signed)} 'Verify a tainted message';
tainted_ok $verified, 'The verified message shall be tainted (because we haven\'t verified the cleanliness of message itself)';
my $encrypted;
lives_ok {$encrypted = $smime->encrypt($plain)} 'Encrypt a tainted message';
tainted_ok $encrypted, 'The encrypted message shall be tainted';
lives_and {
ok $smime->isEncrypted($encrypted);
} 'isEncrypted() on a tainted encrypted message shall succeed';
my $decrypted;
lives_ok {$decrypted = $smime->decrypt($encrypted)} 'Decrypt a tainted message';
tainted_ok $decrypted, 'The decrypted message shall be tainted';
is $decrypted, $verify, 'The decrypted message matches to the original';
};
subtest 'Tainted public keys' => sub {
plan tests => 20;
my $smime = Crypt::SMIME->new();
untaint $key;
untaint $crt;
lives_ok {$smime->setPrivateKey($key, $crt)} 'Set an untainted keypair';
taint $crt;
lives_ok {$smime->setPublicKey($crt)} 'Set a tainted public key';
lives_ok {$smime->setPublicKey([$crt])} 'Set a tainted public key';
my $signed;
untaint $plain;
lives_ok {$signed = $smime->sign($plain)} 'Sign an untainted message';
tainted_ok $signed, 'The signed message shall be tainted (because we signed it with a tainted key)';
my $verified;
untaint $signed;
lives_ok {$verified = $smime->check($signed)} 'Verify an untainted message';
tainted_ok $verified, 'The verified message shall be tainted (because we verified it with a tainted key)';
my $encrypted;
lives_ok {$encrypted = $smime->encrypt($plain)} 'Encrypt an untainted message';
tainted_ok $encrypted, 'The encrypted message shall be tainted (because we encrypted it with a tainted key)';
lives_and {
ok $smime->isEncrypted($encrypted);
} 'isEncrypted() on a tainted encrypted message shall succeed';
my $decrypted;
lives_ok {$decrypted = $smime->decrypt($encrypted)} 'Decrypt a tainted message';
tainted_ok $decrypted, 'The decrypted message shall be tainted';
is $decrypted, $verify, 'The decrypted message matches to the original';
lives_ok {$smime->setPublicKeyStore()} 'Load the default public key store';
lives_ok {$signed = $smime->sign($plain)} 'Sign an untainted message';
tainted_ok $signed, 'The signed message shall be tainted (because we haven\'t removed our tainted key)';
lives_ok {$smime->setPublicKey([])} 'Clear the public key store';
lives_ok {$smime->setPublicKeyStore()} 'Load the default public key store';
lives_ok {$signed = $smime->sign($plain)} 'Sign an untainted message';
untainted_ok $signed, 'The signed message shall be untainted now';
};
subtest 'Tainted verification parameters' => sub {
plan tests => 9;
my $smime = Crypt::SMIME->new();
untaint $key;
untaint $crt;
lives_ok {$smime->setPrivateKey($key, $crt)} 'Set an untainted keypair';
lives_ok {$smime->setPublicKey($crt)} 'Set an untainted public key';
lives_ok {$smime->setPublicKey([$crt])} 'Set an untainted public key';
my $signed;
untaint $plain;
lives_ok {$signed = $smime->sign($plain)} 'Sign an untainted message';
untainted_ok $signed, 'The signed message shall be untainted';
my $verified;
lives_ok {$verified = $smime->check($signed)} 'Verify an untainted message';
untainted_ok $verified, 'The verified message shall be untainted';
lives_ok {
my $time = time;
taint $time;
$smime->setAtTime($time);
$verified = $smime->check($signed);
} 'Verify an untainted message with tainted parameters';
tainted_ok $verified, 'The verified message shall be tainted';
};
|