Created
May 19, 2022 06:04
-
-
Save vaknin/91658f7827b27a5d1760367b2ab05c6b to your computer and use it in GitHub Desktop.
Arch Linux Installation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# ~/.bashrc | |
# | |
# If not running interactively, don't do anything | |
[[ $- != *i* ]] && return | |
# Aliases | |
alias ls='ls --color=auto' | |
alias vi='nvim' | |
alias vim='nvim' | |
alias cpc='xclip -selection c' | |
alias vpncheck='sudo tmux attach-session -t OpenVPN' | |
alias killtmux='tmux kill-session -t 0 && sudo tmux kill-session -t 0' | |
## Functions | |
# Port scanning | |
prts() { rustscan -u 1000 -a $1 -g --accessible;} | |
prtsnmap() { rustscan -u 1000 -a $1 --accessible;} | |
# Busting | |
godir() { gobuster dir -t 20 -u $1 -w /usr/share/seclists/Discovery/Web-Content/directory-list-lowercase-2.3-medium.txt --no-progress;} | |
godns() { gobuster vhost -t 20 -u $1 -w /usr/share/seclists/Discovery/DNS/subdomains-top1million-20000.txt --no-progress;} | |
PS1='\W 🍦> ' | |
# PATH | |
export PATH="$PATH:/home/kivan/.local/bin" | |
. "$HOME/.cargo/env" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# pacman -S --needed - < pkglist.txt | |
burpsuite | |
gobuster | |
brave-git | |
gospider-bin | |
ly | |
marktext-bin | |
ntfs3-dkms | |
pomodoro-logger | |
rustscan | |
visual-studio-code-bin | |
yay | |
zoom | |
metasploit | |
nano | |
neofetch | |
neovim | |
nmap | |
noto-fonts | |
noto-fonts-cjk | |
noto-fonts-emoji | |
obs-studio | |
openvpn | |
plocate | |
qbittorrent | |
reflector | |
alacritty | |
cherrytree | |
copyq | |
discord | |
flameshot | |
git | |
hashcat | |
john | |
tmux | |
unzip | |
wget | |
vlc | |
darktable-git |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment