33 lines
939 B
Plaintext
33 lines
939 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
##################################################################
|
||
|
#
|
||
|
# This script will clear the executable flag on
|
||
|
# the specified library and then check it has
|
||
|
# been cleared as a separate operation.
|
||
|
#
|
||
|
# $1 - The absolute path to the OpenCV native library.
|
||
|
#
|
||
|
# Returns:
|
||
|
# 0 - The executable flag has been cleared
|
||
|
# 1 - The executable flag could NOT be cleared (failure).
|
||
|
#
|
||
|
# Kerry Billingham <contact (at) avionicengineers (d0t) com>
|
||
|
# 11 March 2017
|
||
|
#
|
||
|
##################################################################
|
||
|
red=$'\e[1;31m'
|
||
|
green=$'\e[1;32m'
|
||
|
end=$'\e[0m'
|
||
|
echo "${green}[INFO] Checking that the native library executable stack flag is NOT set.${end}"
|
||
|
BINARY=execstack
|
||
|
$BINARY --help > /dev/null || BINARY=/usr/sbin/execstack
|
||
|
$BINARY -c $1
|
||
|
$BINARY -q $1 | grep -o ^-
|
||
|
if [ $? -ne 0 ]; then
|
||
|
echo
|
||
|
echo "${red}[ERROR] The Executable Flag could not be cleared on the library $1.${end}"
|
||
|
exit 1
|
||
|
fi
|
||
|
exit 0
|