Skip to content

Commit

Permalink
tool update
Browse files Browse the repository at this point in the history
  • Loading branch information
alexrf45 committed Sep 17, 2023
1 parent e580d7e commit 048a479
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 9 deletions.
2 changes: 1 addition & 1 deletion resources/tmux.conf
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ set -sg escape-time 0
bind r source-file ~/.tmux.conf \; display "Reloaded!"

# Center the window list
set -g status-justify centre
set -g status-justify right
set -g status-position bottom

#Activity Monitoring
Expand Down
11 changes: 11 additions & 0 deletions resources/zsh/zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -75,3 +75,14 @@ alias commands='history | cut -c 6-'
alias secretsdump='impacket-secretsdump'
alias ps-shell='cp ~/nishang/Shells/Invoke-PowerShellTcpOneLine.ps1 .'
alias portscan='cp ~/nishang/Scan/Invoke-PortScan.ps1 .'

ffuf_subdomain () {

ffuf -c -t 5 -rate 30 -p 0.2 \
-H "User-Agent: $AGENT" -o $NAME_domains.json -of json \
-H "Host:FUZZ.$DOMAIN" \
-mc 200,403 -w /usr/share/seclists/Discovery/DNS/subdomains-top1million-110000.txt -u http://$DOMAIN/
}



14 changes: 7 additions & 7 deletions sources/1-tools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ install_go() {
}

httpx_install() {
wget -q https://github.com/projectdiscovery/httpx/releases/download/v1.3.4/httpx_1.3.4_linux_amd64.zip &&
unzip httpx_1.3.4_linux_amd64.zip -d ./httpx &&
rm httpx_1.3.4_linux_amd64.zip &&
wget -q https://github.com/projectdiscovery/httpx/releases/download/v1.3.4/httpx_1.3.5_linux_amd64.zip &&
unzip httpx_1.3.5_linux_amd64.zip -d ./httpx &&
rm httpx_1.3.5_linux_amd64.zip &&
mv httpx/httpx /home/kali/.local/http-x &&
rm -r httpx/

Expand Down Expand Up @@ -55,19 +55,19 @@ active_directory() {
pivot() {
cd /home/kali/tools/ &&
wget -q -O chisel.gz \
"https://github.com/jpillora/chisel/releases/download/v1.8.1/chisel_1.8.1_linux_amd64.gz" &&
"https://github.com/jpillora/chisel/releases/download/v1.8.1/chisel_1.9.1_linux_amd64.gz" &&
gunzip chisel.gz &&
wget -q -O win-chisel.gz \
"https://github.com/jpillora/chisel/releases/download/v1.8.1/chisel_1.8.1_windows_amd64.gz" &&
"https://github.com/jpillora/chisel/releases/download/v1.8.1/chisel_1.9.1_windows_amd64.gz" &&
gunzip win-chisel.gz
}

privesc() {
cd /home/kali/tools/ &&
wget -q -O linpeas.sh \
"https://github.com/carlospolop/PEASS-ng/releases/download/20230813-dc8384b3/linpeas_linux_amd64" &&
"https://github.com/carlospolop/PEASS-ng/releases/download/20230910-ae32193f/linpeas_linux_amd64" &&
wget -q -O winpeas.exe \
"https://github.com/carlospolop/PEASS-ng/releases/download/20230813-dc8384b3/winPEASany.exe" &&
"https://github.com/carlospolop/PEASS-ng/releases/download/20230910-ae32193f/winPEASany.exe" &&
wget -q -O pspy \
"https://github.com/DominicBreuker/pspy/releases/download/v1.2.1/pspy64s"
}
Expand Down
2 changes: 1 addition & 1 deletion sources/2-tools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ unfurl_install() {
}

subfinder_install() {
wget https://github.com/projectdiscovery/subfinder/releases/download/v2.6.2/subfinder_2.6.2_linux_amd64.zip \
wget https://github.com/projectdiscovery/subfinder/releases/download/v2.6.3/subfinder_2.6.3_linux_amd64.zip \
-O subfinder.zip && unzip subfinder.zip && chmod +x subfinder && mv subfinder $HOME/.local/subfinder && rm subfinder.zip
}

Expand Down

0 comments on commit 048a479

Please sign in to comment.