Compare commits

...

2 Commits

Author SHA1 Message Date
d3vyce
1d5d72375e clean code 2023-02-04 06:54:18 -05:00
d3vyce
b01e95c3a9 add support for alias update 2023-02-04 06:52:29 -05:00

View File

@ -107,9 +107,7 @@ tools() {
binary() {
printf "\n${YELLOW}[*]${BLUE} Binary -----------------------------------\n"
mkdir binary >/dev/null 2>&1
{
"external_update_url": "https://clients2.google.com/service/update2/crx"
}
printf ${GREEN}"[+] nmap\n"
wget -q -O - https://github.com/andrew-d/static-binaries/raw/master/binaries/linux/x86_64/nmap > $TARGET/binary/nmap
chmod +x $TARGET/binary/nmap
@ -118,16 +116,18 @@ binary() {
aliascmd() {
printf "\n${YELLOW}[*]${BLUE} Alias ------------------------------------\n"
sed -i '/# Alias created by PenTools/,/# https:\/\/github.com\/d3vyce\/pentools/d' ~/.bashrc
echo "
# Alias created by PenTools
# https://github.com/d3vyce/pentools" >> ~/.bashrc
# Alias created by PenTools" >> ~/.bashrc
printf ${GREEN}"[+] sudo filesrv\n"
echo "alias filesrv='sudo python3 -m http.server 80 --directory ${TARGET}'" >> ~/.bashrc
printf ${GREEN}"[+] sublime\n"
echo "alias sublime='sublime .'" >> ~/.bashrc
echo "alias sublime='/opt/sublime_text/sublime_text'" >> ~/.bashrc
echo "# https://github.com/d3vyce/pentools" >> ~/.bashrc
}
printf "${YELLOW}