Skip to content

Instantly share code, notes, and snippets.

@ShayekhBinIslam
Last active August 20, 2022 15:47
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 ShayekhBinIslam/bc4e6d660efabe7bf817fa94e8a6d97d to your computer and use it in GitHub Desktop.
Save ShayekhBinIslam/bc4e6d660efabe7bf817fa94e8a6d97d to your computer and use it in GitHub Desktop.
#! /bin/zsh
sudo apt update
# Snap
# sudo apt install snapd
# SSH
sudo apt-get remove --purge openssh-server
sudo apt-get install openssh-server
sudo service ssh restart
sudo service ssh status
# VS Code
# sudo snap install code --classic
# wget https://az764295.vo.msecnd.net/stable/e4503b30fc78200f846c62cf8091b76ff5547662/code_1.70.2-1660629410_amd64.deb
curl -o code.deb -L http://go.microsoft.com/fwlink/?LinkID=760868
sudo apt install ./code.deb -y
# Miniconda3
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
bash Miniconda3-latest-Linux-x86_64.sh -b -f
sudo echo 'export PATH="/home/kali/miniconda3/bin:$PATH"' >> ~/.zshrc
conda init zsh
git clone https://github.com/RsaCtfTool/RsaCtfTool
sudo apt-get install libgmp3-dev libmpc-dev -y
cd RsaCtfTool
pip3 install -r "requirements.txt"
python3 RsaCtfTool.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment