Skip to content

Instantly share code, notes, and snippets.

@hal0taso
Last active September 20, 2017 15:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hal0taso/defab72b39af243d61ddacb8118de975 to your computer and use it in GitHub Desktop.
Save hal0taso/defab72b39af243d61ddacb8118de975 to your computer and use it in GitHub Desktop.
#!/bin/bash
sudo apt-get -y install strace
sudo apt-get -y install ltrace
git clone https://github.com/radare/radare2
cd radare2
sudo sys/install.sh
cd
sudo apt-get -y install ghex
sudo apt-get -y install binutils
sudo apt-get -y install libgtk2.0-0:i386
sudo apt-get -y install libxxf86vm1:i386
sudo apt-get -y install libsm6:i386
sudo apt-get -y install lib32stdc++6
wget http://jd.benow.ca/jd-gui/downloads/jd-gui-0.3.5.linux.i686.tar.gz
tar zxvf jd-gui-0.3.5.linux.i686.tar.gz
sudo apt-get -y install build-essential gcc-multilib git gdb
git clone https://github.com/longld/peda.git ~/peda
echo "source ~/peda/peda.py" >> ~/.gdbinit
echo "DONE! debug your program with gdb and enjoy"
export PATH=$HOME/bin:$PATH
wget https://github.com/downloads/0vercl0k/rp/rp-lin-x64 -O $HOME/bin/rp
wget https://jaist.dl.sourceforge.net/project/dex2jar/dex2jar-2.0.zip
unzip dex2jar-2.0.zip
cd dex2jar-2.0
chmod u+x ./*.sh
cd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment