abuild: check for non-PIE suid files

fixes #955
This commit is contained in:
Natanael Copa 2012-02-14 12:51:33 +00:00
parent 7759f5e5df
commit 817db0ea98
1 changed files with 9 additions and 0 deletions

View File

@ -552,6 +552,15 @@ postcheck() {
warning "World writeable directories found:"
echo "$i"
fi
# check so we dont have any suid root binaries that are not
i=$(find "$dir" -type f -perm +6000 \
| xargs scanelf --nobanner --etype ET_EXEC \
| sed "s|ET_EXEC $dir|\t|")
if [ -n "$i" ]; then
error "Found non-PIE files that has SUID:"
echo "$i"
return 1
fi
return 0
}