File tree Expand file tree Collapse file tree 3 files changed +12
-6
lines changed
Expand file tree Collapse file tree 3 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 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" : [
Original file line number Diff line number Diff line change @@ -5,8 +5,12 @@ LABEL dev.containers.features="common"
55
66# Install Forensics Tools
77COPY 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
1111COPY 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
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+
3+ # Install Rev Tools
4+
5+ bash -c " $( curl -fsSL https://gef.blah.cat/sh) "
You can’t perform that action at this time.
0 commit comments