-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make it easier to setup a debug environment with some docker magic
- Loading branch information
Showing
3 changed files
with
51 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
# this is the dockerfile we use for testing techniques used in how2heap | ||
from ubuntu:24.04 | ||
from ubuntu:20.04 | ||
|
||
run apt-get update && apt-get -y install binutils git make vim gcc | ||
run apt-get update && apt-get install -y binutils git make vim gcc patchelf python-is-python3 python3-pip | ||
run pip3 install requests | ||
run git clone --depth 1 https://github.com/shellphish/how2heap /root/how2heap | ||
run git config --global --add safe.directory "*" | ||
|
||
workdir /root/how2heap | ||
run make | ||
run bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters