EPEL has this package:
$ rpm -q hardening-check
hardening-check-2.6-1.el7.noarch
$ rpm -qi hardening-check | grep URL
URL : http://packages.debian.org/hardening-wrapper
It will tell you basic protections in ELF binaries.
$ hardening-check /bin/ls
/bin/ls:
Position Independent Executable: no, normal executable!
Stack protected: yes
Fortify Source functions: yes (some protected functions found)
Read-only relocations: yes
Immediate binding: no, not found!
This is the configure directive for new software to pass all of the above tests:
CFLAGS='-O2 -D_FORTIFY_SOURCE=2 -fstack-protector-strong -fpic -pie' \
LDFLAGS='-Wl,-z,relro,-z,now -Wl,-z,now' ./configure
The package comes with a manual page with basic explanations of each test.