Skip to content
Permalink
Browse files
fix some commands
  • Loading branch information
bs1phc committed Sep 16, 2021
1 parent b3f4bde commit aa63139537748f643f431a53cf66c7866510a19f
Showing 1 changed file with 7 additions and 7 deletions.
14 wsl.sh
@@ -24,12 +24,12 @@ add_winkex()

add_editors()
{
sudo apt install emacs neovim -y
apt install emacs neovim -y
}

add_languages()
{
sudo apt install python3 python3-pip golang -y
apt install python3 python3-pip golang -y
curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain stable -yq
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | bash
source ~/.zshrc && nvm install node
@@ -38,25 +38,25 @@ add_languages()

add_tools()
{
sudo apt install metasploit-framework ffuf gobuster hashcat gdb seclists netcat-openbsd socat nmap git -y
apt install metasploit-framework ffuf gobuster hashcat gdb seclists netcat-openbsd socat nmap git -y

#gef
wget -O ~/.gdbinit-gef.py -q http://gef.blah.cat/py
echo source ~/.gdbinit-gef.py >> ~/.gdbinit

#pwntools
sudo apt install python3-dev git libssl-dev libffi-dev build-essential -y
apt install python3-dev git libssl-dev libffi-dev build-essential -y
python3 -m pip install --upgrade pip
python3 -m pip install --upgrade pwntools
}

sudo apt update
sudo apt upgrade -y
apt update
apt upgrade -y
check_priv
add_3d_Acceleration
add_winkex
add_editors
add_languages
add_tools

sudo apt autoremove
apt autoremove

0 comments on commit aa63139

Please sign in to comment.