Last active
June 9, 2025 20:55
-
-
Save marcostolosa/b21d1753827f1746bfc1a1d5ec5c8ac5 to your computer and use it in GitHub Desktop.
0xKali-Setup
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/bash | |
echo 'Instalando o VIM Bootstrap (https://vim-bootstrap.com/#tagline)' | |
mv ~/Downloads/generate.vim ~/.vimrc | |
vim +PlugInstall +qall | |
echo 'Instalando as extensões do GDB: PwnDbg, GEF e PEDA' | |
cd ~/ && git clone https://github.com/apogiatzis/gdb-peda-pwndbg-gef.git | |
cd ~/gdb-peda-pwndbg-gef | |
./install.sh | |
sudo apt update | |
sudo apt install -y ht tmux ncat ltrace strace rlwrap pwncat radare2 ghidra \ | |
jd-gui dex2jar ollydbg apktool androguard lldb valgrind |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment