blob: 3ec1e526d70a7809761368a2d44249ebe08129bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
while read -r region; do
offset=$(printf '%d' "0x$(awk '{print $3}' <<<"$region")")
if ((offset == 0)); then
offset=$(binsearch <(ptrace-region-rw "$1" read <(printf '%s' "$region") | bintrim) first $3 < "$2" 2>/dev/null)
if [[ -n "$offset" ]]; then
hex=$(printf '%.8x' "$offset")
awk '{printf "%s %s %s %s %s %s\n", $1, $2, "'"$hex"'", $4, $5, $6, $7}' <<<"$region"
fi
else
printf '%s\n' "$region"
fi
done
|