Skip to content

Commit

Permalink
firefox testing, aliases fix
Browse files Browse the repository at this point in the history
  • Loading branch information
alexrf45 committed May 23, 2024
1 parent 2c728a4 commit b533775
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 27 deletions.
24 changes: 24 additions & 0 deletions resources/zsh/.zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,27 @@ echo "

#persistant ssh agent
eval $(ssh-agent) &> /dev/null

#daily use
alias t='tmux new -f ~/.tmux.conf -s $1'
alias update='sudo apt get update'
alias upgrade='sudo apt get upgrade'
alias i='sudo apt get install -y'
alias :q='exit'
alias c='clear'
alias :r='. ~/.zshrc'
alias home='cd ~'
alias cme='nxc'
alias port-scan='sudo nmap -sC -sV -p- $IP > scan.txt'
alias udp-scan='sudo nmap -sU --top-ports 10 $IP -v > udp.scan.txt'
alias stealth-scan='sudo nmap --data-length 6 -T3 -A -ttl 64 -p- $IP > stealth-scan.txt'
alias public='curl wtfismyip.com/text'
alias proxy='proxychains'
alias serve='sudo python3 -m http.server 80'
alias webserver="miniserve -p 8001"
#python3
alias py-virt='python3 -m venv .venv && source .venv/bin/activate'
alias freeze='pip freeze > requirements.txt'
alias py-install='pip install -r requirements.txt'
alias py-list='pipx list | grep package'

23 changes: 0 additions & 23 deletions resources/zsh/aliases

This file was deleted.

2 changes: 1 addition & 1 deletion sources/0-base.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ base() {
python3-virtualenv libpcap-dev \
jq xpdf pipx man-db exploitdb \
rpcbind nfs-common feh cmake \
ntp ntpdate bash-completion zsh
ntp ntpdate bash-completion zsh firefox
}

# home_brew() {
Expand Down
4 changes: 1 addition & 3 deletions sources/4-home.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@ mkdir -p $HOME/.config && cp /home/kali/resources/tmux.conf /home/kali/.tmux.con
cp /home/kali/resources/bash/history /home/kali/.history &&
cp -r /home/kali/resources/ffuf /home/kali/.config/. &&
cp -r /home/kali/resources/.Burpsuite /home/kali/. &&
cp -r /home/kali/resources/zsh/aliases /home/kali/.zsh/aliases

git clone https://github.com/tmux-plugins/tpm $HOME/.tmux/plugins/tpm
git clone https://github.com/tmux-plugins/tpm $HOME/.tmux/plugins/tpm

sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" "" --unattended

Expand Down

0 comments on commit b533775

Please sign in to comment.