One Hat Cyber Team
Your IP :
13.58.74.39
Server IP :
104.21.16.1
Server :
Linux agrigation-prod 5.15.0-67-generic #74-Ubuntu SMP Wed Feb 22 14:14:39 UTC 2023 x86_64
Server Software :
nginx/1.24.0
PHP Version :
7.4.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
src
/
linux-headers-5.15.0-67
/
scripts
/
View File Name :
tools-support-relr.sh
#!/bin/sh -eu # SPDX-License-Identifier: GPL-2.0 tmp_file=$(mktemp) trap "rm -f $tmp_file.o $tmp_file $tmp_file.bin" EXIT cat << "END" | $CC -c -x c - -o $tmp_file.o >/dev/null 2>&1 void *p = &p; END $LD $tmp_file.o -shared -Bsymbolic --pack-dyn-relocs=relr \ --use-android-relr-tags -o $tmp_file # Despite printing an error message, GNU nm still exits with exit code 0 if it # sees a relr section. So we need to check that nothing is printed to stderr. test -z "$($NM $tmp_file 2>&1 >/dev/null)" $OBJCOPY -O binary $tmp_file $tmp_file.bin