blob: bc9d2ec02dbd6b52c19b52b81c0e69f9a2504595 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/bash
if [[ $# < 1 ]]; then
echo >&2 "Usage: $0 id [name1 [name2 ...]]"
exit 2
fi
id=$1
shift 1
if [[ $# == 0 ]]; then
names="__libc_start_main_ret system dup2 recv str_bin_sh"
else
names="$@"
fi
for name in $names; do
offset=`cat db/${id}.symbols | grep "^$name " | cut -d' ' -f2`
echo "offset_${name} = 0x${offset}"
done
|