Skip to content

Instantly share code, notes, and snippets.

@pryorda
Created October 19, 2019 05:42
Show Gist options
  • Save pryorda/f7f82528af571cebd314117627f24132 to your computer and use it in GitHub Desktop.
Save pryorda/f7f82528af571cebd314117627f24132 to your computer and use it in GitHub Desktop.
#!/bin/bash
grep rw-p /proc/$1/maps \
| sed -n 's/^\([0-9a-f]*\)-\([0-9a-f]*\) .*$/\1 \2/p' \
| while read start stop; do \
gdb --batch --pid $1 -ex \
"dump memory $1-$start-$stop.dump 0x$start 0x$stop"; \
done
# use strings on file after.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment