0
0
mirror of https://github.com/termux/termux-packages.git synced 2024-11-14 09:47:06 +00:00
termux-packages/scripts/bin/check-pie.sh
2023-09-03 08:46:13 +01:00

13 lines
280 B
Bash
Executable File

#!/bin/sh
# check-pie.sh - script to detect non-PIE binaries (which does not work on Android)
. $(dirname "$(realpath "$0")")/properties.sh
cd ${TERMUX_PREFIX}/bin
for file in *; do
if readelf -h $file 2>/dev/null | grep -q 'Type:[[:space:]]*EXEC'; then
echo $file
fi
done