Last active
October 30, 2021 15:43
-
-
Save 3N4N/fa12dd8b8957fdd969f26e8639d7fc5f to your computer and use it in GitHub Desktop.
Revisions
-
3N4N revised this gist
Oct 24, 2021 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -6,7 +6,7 @@ USRMANDIR="$HOME/.local/share/man/man1" mkdir -p "$USRBINDIR" "$USRMANDIR" apt_pkgs="python3 python3-pip steghide valgrind build-essential netcat-traditional nmap dirb wabt hashcat" sudo apt install -y $apt_pkgs pip_pkgs="stegoveritas flask-unsign" -
3N4N revised this gist
Oct 24, 2021 . 1 changed file with 20 additions and 14 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,30 +1,36 @@ #!/bin/env bash USRBINDIR="$HOME/.local/bin" USRMANDIR="$HOME/.local/share/man/man1" mkdir -p "$USRBINDIR" "$USRMANDIR" apt_pkgs="python3-pip steghide valgrind build-essential netcat" sudo apt install -y $apt_pkgs pip_pkgs="stegoveritas flask-unsign" pip3 install --user --upgrade $pip_pkgs if ! hash upx 2>/dev/null ; then UPXVER="3.96-amd64_linux" UPXLINK="https://github.com/upx/upx/releases/download/v3.96/upx-$UPXVER.tar.xz" wget -O upx-$UPXVER.tar.xz "$UPXLINK" tar xvJf upx-$UPXVER.tar.xz cp upx-$UPXVER/upx "$USRBINDIR" cp upx-$UPXVER/upx.1 "$USRMANDIR" fi if ! grep -qEi 'source.*gef' $HOME/.gdbinit ; then mkdir -p $HOME/.config/gdb/modules wget -O $HOME/.config/gdb/modules/gef.py -q https://github.com/hugsy/gef/raw/master/gef.py echo "source $HOME/.config/gdb/modules/gef.py" >> $HOME/.gdbinit fi if ! hash extract 2>/dev/null ; then wget -O $HOME/.local/bin/extract https://raw.githubusercontent.com/3N4N/dotFiles/master/bin/extract chmod +x $HOME/.local/bin/extract fi -
3N4N revised this gist
Oct 24, 2021 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -10,7 +10,7 @@ apt_pkgs="python3-pip steghide valgrind build-essential netcat" sudo apt install -y $apt_pkgs pip_pkgs="stegoveritas" pip3 install --user --upgrade $pip_pkgs UPXVER="3.96-amd64_linux" -
3N4N revised this gist
Oct 24, 2021 . 1 changed file with 3 additions and 8 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,22 +1,17 @@ #!/bin/env bash USRBINDIR="~/.local/bin" USRMANDIR="~/.local/share/man/man1" mkdir -p "$USRBINDIR" "$USRMANDIR" apt_pkgs="python3-pip steghide valgrind build-essential netcat" sudo apt install -y $apt_pkgs pip_pkgs="stegoveritas" pip3 install --user --upgrade stegoveritas UPXVER="3.96-amd64_linux" UPXLINK="https://github.com/upx/upx/releases/download/v3.96/upx-$UPXVER.tar.xz" -
3N4N revised this gist
Oct 24, 2021 . 1 changed file with 15 additions and 15 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -11,25 +11,25 @@ USRMANDIR="~/.local/share/man/man1" mkdir -p "$USRBINDIR" "$USRMANDIR" pip_pkgs="stegoveritas" pip3 install --user --upgrade stegoveritas apt_pkgs="steghide valgrind build-essential netcat" sudo apt install -y $apt_pkgs UPXVER="3.96-amd64_linux" UPXLINK="https://github.com/upx/upx/releases/download/v3.96/upx-$UPXVER.tar.xz" wget -O upx-$UPXVER.tar.xz "$UPXLINK" tar xvJf upx-$UPXVER.tar.xz cp upx-$UPXVER/upx "$USRBINDIR" cp upx-$UPXVER/upx.1 "$USRMANDIR" mkdir -p ~/.config/gdb/modules wget -O ~/.config/gdb/modules/gef.py -q https://github.com/hugsy/gef/raw/master/gef.py echo "source ~/.config/gdb/modules/gef.py" >> ~/.gdbinit wget -O ~/.local/bin/extract https://raw.githubusercontent.com/3N4N/dotFiles/master/bin/extract chmod +x ~/.local/bin/extract -
3N4N created this gist
Oct 24, 2021 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,35 @@ #!/bin/env bash # upx # steghide # stegoveritas USRBINDIR="~/.local/bin" USRMANDIR="~/.local/share/man/man1" mkdir -p "$USRBINDIR" "$USRMANDIR" # pip_pkgs="stegoveritas" # pip3 install --user --upgrade stegoveritas # apt_pkgs="steghide valgrind build-essential netcat" # sudo apt install -y $apt_pkgs # UPXVER="3.96-amd64_linux" # UPXLINK="https://github.com/upx/upx/releases/download/v3.96/upx-$UPXVER.tar.xz" # wget -O upx-$UPXVER.tar.xz "$UPXLINK" # tar xvJf upx-$UPXVER.tar.xz # cp upx-$UPXVER/upx "$USRBINDIR" # cp upx-$UPXVER/upx.1 "$USRMANDIR" # mkdir -p ~/.config/gdb/modules # wget -O ~/.config/gdb/modules/gef.py -q https://github.com/hugsy/gef/raw/master/gef.py # echo "source ~/.config/gdb/modules/gef.py" >> ~/.gdbinit # wget -O ~/.local/bin/extract https://raw.githubusercontent.com/3N4N/dotFiles/master/bin/extract # chmod +x ~/.local/bin/extract