Skip to content

Commit 13f5632

Browse files
committed
feat: add gef installation + Docker image
1 parent a86d4a7 commit 13f5632

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
{
2-
// "build":{
3-
// "dockerfile": "../Dockerfile"
4-
// },
5-
// https://aka.ms/ghcs-default-image
2+
"image": "ghcr.io/pbrucla/ctf-dev-container:latest",
63
"customizations": {
74
"vscode": {
85
"extensions": [

Dockerfile

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,12 @@ LABEL dev.containers.features="common"
55

66
# Install Forensics Tools
77
COPY src/install-forensics.sh /tmp/install-forensics.sh
8-
RUN apt-get update && bash /tmp/install-forensics.sh
8+
RUN sudo apt-get update && sudo bash /tmp/install-forensics.sh
99

1010
# Install Pwn Tools
1111
COPY src/install-pwn.sh /tmp/install-pwn.sh
12-
RUN apt-get update && bash /tmp/install-pwn.sh
12+
RUN sudo apt-get update && sudo bash /tmp/install-pwn.sh
13+
14+
# Install Rev Tools
15+
COPY src/install-rev.sh /tmp/install-rev.sh
16+
RUN sudo apt-get update && sudo bash /tmp/install-rev.sh

src/install-rev.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/usr/bin/env bash
2+
3+
# Install Rev Tools
4+
5+
bash -c "$(curl -fsSL https://gef.blah.cat/sh)"

0 commit comments

Comments
 (0)