⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.150
Server IP:
13.127.59.50
Server:
Linux ip-172-31-46-210 5.15.0-1033-aws #37~20.04.1-Ubuntu SMP Fri Mar 17 11:39:30 UTC 2023 x86_64
Server Software:
Apache/2.4.41 (Ubuntu)
PHP Version:
7.4.3-4ubuntu2.29
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
src
/
linux-headers-5.15.0-1033-aws
/
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