forked from shellphish/how2heap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
glibc_run.sh
executable file
·187 lines (164 loc) · 4.26 KB
/
glibc_run.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
#!/bin/bash
VERSION="./glibc_versions"
#DIR_TCACHE='tcache'
DIR_TCACHE=''
DIR_HOST='x64'
LIB_HOST='amd64'
GLIBC_VERSION=''
TARGET=''
UPDATE=''
RELOAD=''
GDB=''
RADARE2=''
NOT_EXECUTION=''
FORCE_TARGET_INTERPRETER=''
# Handle arguments
function show_help {
echo "Usage: $0 <version> <target> [-h] [-i686] [-u] [-r] [-gdb | -r2 | -p]"
echo "-i686 - use x32 bits libc"
echo "-u - update libc list in glibc-all-in-one"
echo "-r - download libc in glibc-all-in-one"
echo "-gdb - start target in GDB"
echo "-r2 - start target in radare2"
echo "-p - just set interpreter and rpath in target without execution"
}
if [[ $# < 2 ]]; then
show_help
exit 1
fi
function init_glibc(){
git submodule update --init --recursive
}
function update_glibc (){
if [ "$1" == "X" ] || [ ! -f glibc-all-in-one/list ]; then
cd glibc-all-in-one
./update_list
cd -
fi
}
function download_glibc (){
if [ "$2" == "X" ] || [ ! -d glibc-all-in-one/libs/$libc ]; then
cd glibc-all-in-one
rm -rf libs/$1 debs/$1
./download $1
./download_old $1
cd -
fi
}
function copy_glibc (){
if [ ! -f "$OUTPUT_DIR/libc-$GLIBC_VERSION.so" ]; then
cp -r glibc-all-in-one/libs/$1/* $OUTPUT_DIR
cp -r glibc-all-in-one/libs/$1/.debug $OUTPUT_DIR
fi
}
function set_interpreter (){
local curr_interp=$(patchelf --print-interpreter "$TARGET")
if [[ $curr_interp != $1 ]];
then
patchelf --set-interpreter "$1" "$TARGET"
echo "INERPERETER as $1 for $TARGET"
fi
}
function set_rpath (){
curr_rpath=$(patchelf --print-rpath "$TARGET")
if [[ $curr_rpath != $OUTPUT_DIR ]];
then
patchelf --set-rpath "$OUTPUT_DIR" "$TARGET"
echo "RPATH as $OUTPUT_DIR"
fi
}
GLIBC_VERSION=$1
GLIBC_MAJOR=$(echo $GLIBC_VERSION | cut -d'.' -f1)
GLIBC_MINOR=$(echo $GLIBC_VERSION | cut -d'.' -f2)
TARGET=$2
SYSTEM_GLIBC_VERSION=$(lsof -p $$ 2>/dev/null | grep libc- | awk ' { print $NF" --version"; } ' | sh | head -n 1 | cut -d' ' -f 10 | cut -d'.' -f 1-2)
SYSTEM_GLIBC_MAJOR=$(echo $SYSTEM_GLIBC_VERSION | cut -d'.' -f1)
SYSTEM_GLIBC_MINOR=$(echo $SYSTEM_GLIBC_VERSION | cut -d'.' -f2)
SYSTEM_GLIBC=$(lsof -p $$ 2>/dev/null | grep libc- | awk ' { print $NF" --version"; } ' | sh | head -n 1 | cut -d' ' -f 10)
if [ ! -f $TARGET ]; then
echo "Create binaries by make"
exit
fi
while :; do
case $3 in
-h|-\?|--help)
show_help
exit
;;
# -disable-tcache)
# DIR_TCACHE='notcache'
# ;;
-i686)
DIR_HOST='i686'
LIB_HOST='i386'
;;
-u)
UPDATE='X'
;;
-r)
RELOAD='X'
;;
-gdb)
GDB='X'
;;
-r2)
RADARE2='X'
;;
-p)
NOT_EXECUTION='X'
;;
-ti)
FORCE_TARGET_INTERPRETER='X'
;;
'')
break
;;
esac
shift
done
if [ ! -d ./glibc-all-in-one/LICENSE ]; then
init_glibc
fi
if [ -z $DIR_TCACHE ]; then
OUTPUT_DIR="$VERSION/$GLIBC_VERSION/${DIR_HOST}/lib"
else
OUTPUT_DIR="$VERSION/$GLIBC_VERSION/${DIR_HOST}_${DIR_TCACHE}/lib"
fi
if [ ! -d "$OUTPUT_DIR" ];
then
mkdir -p $OUTPUT_DIR
fi
update_glibc $UPDATE
libc=$(cat glibc-all-in-one/list | grep "$GLIBC_VERSION" | grep "$LIB_HOST" | head -n 1)
if [ -z "$libc" ]
then
libc=$(cat glibc-all-in-one/old_list | grep "$GLIBC_VERSION" | grep "$LIB_HOST" | head -n 1)
fi
download_glibc $libc $RELOAD
copy_glibc $libc
if [ -z "$(ls -A $OUTPUT_DIR)" ]; then
echo "Couldn't download and extract glibc."
echo "Check you have installed zstd"
exit
fi
target_interpreter="$OUTPUT_DIR/$(ls $OUTPUT_DIR | grep ld)"
if [[ $GLIBC_MAJOR != $SYSTEM_GLIBC_MAJOR ]] || [[ $GLIBC_MINOR != $SYSTEM_GLIBC_MINOR ]]; then
set_interpreter $target_interpreter
set_rpath
fi
if [ "$GDB" == 'X' ];
then
if [[ $GLIBC_VERSION != $SYSTEM_GLIBC_VERSION ]]; then
gdb $TARGET -iex "set debug-file-directory $OUTPUT_DIR/.debug"
else
gdb $TARGET
fi
elif [ "$RADARE2" == 'X' ];
then
r2 -d $TARGET
elif [ "$NOT_EXECUTION" == '' ];
then
"$TARGET"
else
echo "$TARGET It's ready for discovering"
fi