Sponsored Content
Top Forums UNIX for Advanced & Expert Users "Signed Linux" - Only executing signed programs Post 302500142 by Perderabo on Sunday 27th of February 2011 02:06:27 PM
Old 02-27-2011
I think this technique has a lot of promise. There are several implementations. Here is one. Google for "linux signed executables only" to see other references.

And those of you who think execution bits or restricted shells provide adequate security might want to take a look. Smilie
 

We Also Found This Discussion For You

1. Shell Programming and Scripting

Expect: spawn id exp5 not open while executing "expect "$" { send "sudo su -\r" }"

Hi All, i am trying to ssh to a remote machine and execute certain command to remote machine through script. i am able to ssh but after its getting hung at the promt and after pressing ctrl +d i am gettin the out put as expect: spawn id exp5 not open while executing "expect "$" {... (3 Replies)
Discussion started by: Siddharth shivh
3 Replies
OPENSSL_SPKI_VERIFY(3)							 1						    OPENSSL_SPKI_VERIFY(3)

openssl_spki_verify - Verifies a signed public key and challenge

SYNOPSIS
string openssl_spki_verify (string &$spkac) DESCRIPTION
Validates the supplied signed public key and challenge PARAMETERS
o $spkac - Expects a valid signed public key and challenge RETURN VALUES
Returns a boolean on success or failure. ERRORS
/EXCEPTIONS Emits an E_WARNING level error if an invalid argument is passed via the $spkac parameter. EXAMPLES
Example #1 openssl_spki_verify(3) example Validates an existing signed public key and challenge <?php $pkey = openssl_pkey_new('secret password'); $spkac = openssl_spki_new($pkey, 'challenge string'); if (openssl_spki_verify(preg_replace('/SPKAC=/', '', $spkac))) { echo $spkac; } else { echo "SPKAC validation failed"; } ?> Example #2 openssl_spki_verify(3) example from <keygen> Validates an existing signed public key and challenge issued from the <keygen> element <?php if (openssl_spki_verify(preg_replace('/SPKAC=/', '', $_POST['spkac']))) { echo $spkac; } else { echo "SPKAC validation failed"; } ?> <keygen name="spkac" challenge="challenge string" keytype="RSA"> SEE ALSO
openssl_spki_new(3), openssl_spki_export_challenge(3), openssl_spki_export(3), openssl_md_method(3), openssl_csr_new(3), openssl_csr_sign(3). PHP Documentation Group OPENSSL_SPKI_VERIFY(3)
All times are GMT -4. The time now is 07:05 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy