Items_to_install_in_Kali
ITEMS TO INSTALL IN KALI
apt install
updatedb apt search xxxxxx
Update Kali Linux
apt update
apt list --upgradeable
apt upgrade
apt dist-upgrade
searchsploit -u
Sublimetext
wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add -
sudo apt-get install apt-transport-https
echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.list
sudo apt-get update
sudo apt-get install sublime-text
In SublimeText
1. Type control+shift+p top open the Command Palette.
2. Start typing "install".
3 Select the command "Package Control: Install" and press enter.
4. After a moment, the Command Palette will be filled with package names.
5. Start typing the name of the package you want to install, or a keyword such as "markdown" to list all packages with the keyword in their names.
6. Select the package you want (with the arrow keys), press enter, and the package will be downloaded and installed.
Markdown Extended
Markdown Preview
Markdown Editing
7. Close and restart Sublime Text for the newly installed package to be activated.
golang
apt install golang
mkdir -p ~/go/{pkg,bin,src}
nano ~/.profile
add
export GOPATH="$HOME/go"
export GOBIN="$GOPATH"/bin"
export PATH="$PATH:$GOBIN"
exit and save then type
~/.profile
go get -v -u github.com/zricethezav/gitleaks
gobuster
git clone https://github.com/OJ/gobuster.git
go build
Python3
apt install python3-dev python3-pip
pip3 install truffleHog
pip3 install jwt
pip3 install pyjwt
pip3 install hexdump
Microsoft Access database tools
apt install mdbtools
Tools for reading Microsoft Outlook PST files
apt install pst-utils
Crackmapexec
apt install crackmapexec
apt install rlwrap
Impacket
cd /opt/
git clone https://github.com/SecureAuthCorp/impacket
Kerbrute
cd /opt/
git clone https://github.com/ropnop/kerbrute
BloodHound
cd /opt/
rm -rf BloodHound
git clone https://github.com/BloodHoundAD/BloodHound.git
cd/opt/BloodHound
wget https://github.com/BloodHoundAD/BloodHound/releases/download/3.0.3/BloodHound-linux-x64.zip
unzip BloodHound-linux-x64.zip
PowerSploit
cd /opt/
git clone https://github.com/PowerShellMafia/PowerSploit/ -b dev
mimitatz
cd /opt/
git clone https://github.com/gentilkiwi/mimikatz
PDFMiner
cd /opt/
git clone https://github.com/pdfminer/pdfminer.six
pip install pdfminer.six
dotdotpwn
cd /opt/
git clone https://github.com/wireghoul/dotdotpwn
ciscot7
cd /opt/
git clone https://github.com/theevilbit/ciscot7.git
evil-winrm
cd /opt/
git clone https://github.com/Hackplayers/evil-winrm
cd /evil-winrm
gem install evil-winrm
pip3 install donut-shellcode
Padbuster
cd /opt/
apt install padbuster
zip7
cd /opt/
apt install python3-venv p7zip-full -y
usbrip
cd /opt/
git clone https://github.com/snovvcrash/usbrip.git usbrip && cd usbrip
rclone
apt install rclone
JAWS
git clone https://github.com/411Hall/JAWS.git
privilege-escalation-awesome-scripts-suite
git clone https://github.com/carlospolop/privilege-escalation-awesome-scripts-suite
ffuf
git clone https://github.com/ffuf/ffuf
PSPY
git clone https://github.com/DominicBreuker/pspy.git
lxc / lxd
git clone https://github.com/lxc/lxd.git
PRET
git clone https://github.com/RUB-NDS/PRET.git
exiftool
git clone https://github.com/exiftool/exiftool.git
sudo perl Makefile.PL
sudo make
sudo make test
sudo make install
vpn
openvpn --config dystopian.ovpn
crontab
```bash
etc/hosts
# Hack the Box machines
10.10.10.29 bank.htb
# 10.10.10.100 active.htb htb
# 10.10.10.160 Postman
# 10.10.10.161 htb.local htb
# 10.10.10.162 staging-order.mango.htb
# 10.10.10.168 obscurity.htb
# 10.10.10.172 megabank.local
# 10.10.10.177 oouch.htb consumer.oouch.htb authorization.oouch.htb
# 10.10.10.179 megacorp.htb
# 10.10.10.180 remote.htb
# 10.10.10.183 forwardslash.htb
# 10.10.10.186 quick.htb portal.quick.htb
# Vulnhub machines
# 192.168.1.86 kioptrix3.com
# 192.168.1.87 gfriEND.lan
If you really don’t care about security, and if you preferred the old model, you can install kali-grant-root and run dpkg-reconfigure kali-grant-root
to configure password-less root rights.
sudo su (enter you password)
dpkg-reconfigure kali-grant-root (choose top option)
sudo su (we don't need password for root. close terminal and reopen it)
next edit .bashrc for the user and add
sudo su
to the bottom
this will set up root.
sudo -i
(enter you password)
whoami
(this should return root)
(now change the password for root)
passwd root
(now type the password)
PS1='[\033[1;31m]\u@\h[\033[1;34m]\w:[\033[0;37m]$
Last updated
Was this helpful?