Skip to content
Permalink
Browse files
Added files for the metapackage need to be sort out later
  • Loading branch information
bs1phc committed Sep 15, 2021
1 parent aeffd4a commit 025bc4d9e903ad4217569e9beb6cfa68c8c30cdf
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 1 deletion.
@@ -24,5 +24,5 @@ cueh:cueh
- figure out what other packages are needed.
- Find a way to upload the kali.zip folder somewhere cause is too big for github.
# References
[Kali Metapackages](https://www.kali.org/docs/general-use/metapackages/)
[Kali Metapackages](https://www.kali.org/blog/making-your-own-kali-linux-metapackages//)

@@ -0,0 +1,19 @@
Package: kali-linux-mytools
Architecture: any
Depends: ${misc:Depends},
emacs,
neovim,
python3,
python3-pip,
golang,
metasploit-framework,
ffuf,
gobuster,
hashcat,
gdb,
seclists,
netcat-openbsd,
socat,
nmap,
git,
Description:Tools for Uni wsl image.
@@ -0,0 +1,6 @@
wget -O ~/.gdbinit-gef.py -q http://gef.blah.cat/py
echo source ~/.gdbinit-gef.py >> ~/.gdbinit

sudo apt install python3-dev git libssl-dev libffi-dev build-essential -y
python3 -m pip install --upgrade pip
python3 -m pip install --upgrade pwntools
@@ -0,0 +1,11 @@
cat << 'EOF' > /etc/apt/sources.list.d/kali-experimental.list
deb https://http.kali.org/kali kali-experimental main contrib non-free
EOF
apt update -y
apt install -t kali-experimental '?upgradable ?source-package("mesa|libdrm")' -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
echo node > ~/.nvmrc

0 comments on commit 025bc4d

Please sign in to comment.