Last active
October 30, 2021 15:43
-
-
Save 3N4N/fa12dd8b8957fdd969f26e8639d7fc5f to your computer and use it in GitHub Desktop.
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 characters
| #!/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" | |
| 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment