diff --git a/README.md b/README.md index 42f6c2e..e909f03 100644 --- a/README.md +++ b/README.md @@ -85,6 +85,8 @@ readelf -d -W malloc_playground | grep RUNPATH # or use checksec readelf -l -W malloc_playground | grep interpreter gdb -q -ex "start" ./malloc_playground ``` +## Download all libc beforehand +Run `./glibc_download_all.sh` to download all relevant libc versions. # Heap Exploitation Tools diff --git a/glibc_download_all.sh b/glibc_download_all.sh index bd195ca..e5ace29 100755 --- a/glibc_download_all.sh +++ b/glibc_download_all.sh @@ -1,6 +1,6 @@ #!/bin/bash - # Script to download all glibc libraries + # Import helper functions source ./glibc_helper.sh