Rasbian
Code: Select all
cat test.c
int main(void)
{
return 0;
}
gcc test.c
hardening-check a.out
a.out:
Position Independent Executable: no, normal executable!
Stack protected: no, not found!
Fortify Source functions: unknown, no protectable libc functions used
Read-only relocations: yes
Immediate binding: no, not found!
Code: Select all
hardening-check a.out
a.out:
Position Independent Executable: yes
Stack protected: no, not found!
Fortify Source functions: unknown, no protectable libc functions used
Read-only relocations: yes
Immediate binding: no, not found!
arm-linux-gnueabihf-gcc test.c
hardening-check a.out
a.out:
Position Independent Executable: yes
Stack protected: no, not found!
Fortify Source functions: unknown, no protectable libc functions used
Read-only relocations: yes
Immediate binding: no, not found!