-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Optimización y pequeñas mejoras / Optimization and minor improvements
- Loading branch information
1 parent
9c65bca
commit cbb33c9
Showing
2 changed files
with
64 additions
and
57 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,58 @@ | ||
#!bin/bash | ||
|
||
clear | ||
echo | ||
echo " _____ _ _ _ _ _ " | ||
echo " |_ _| | | (_) | | (_) | | " | ||
echo " | | _ __ | |__ _ | |__ _ | |_ ___ _ __ " | ||
echo " | | | '_ \ | '_ \ | | | '_ \ | | | __| / _ \ | '__|" | ||
echo " _| |_ | | | | | | | | | | | |_) | | | | |_ | (_) | | | " | ||
echo " |_____| |_| |_| |_| |_| |_| |_.__/ |_| \__| \___/ |_| " | ||
echo " __________________________________________________" | ||
echo " ︻デ═一 Created by: XDeadHackerX v1.3 ︻デ═一 " | ||
echo " -------------------------------------------------------------------------------------------" | ||
echo " Cualquier acción y o actividad relacionada con Inhibitor es únicamente su responsabilidad" | ||
echo " -------------------------------------------------------------------------------------------" | ||
echo " Any action and or activity related to Inhibitor is solely your responsibility" | ||
echo " -------------------------------------------------------------------------------------------" | ||
echo | ||
echo | ||
echo "[*] Elige idioma / Select language" | ||
echo | ||
echo "#####################" | ||
echo "[1] Spain/es" | ||
echo "[2] English/en" | ||
echo "[3] Exit" | ||
echo "#####################" | ||
echo | ||
echo | ||
read -p "[*] Elige una opcion / Choose one option: " opc | ||
case $opc in | ||
1 ) echo | ||
cp requisitos/es/inhibitor.sh . | ||
;; | ||
2 ) echo | ||
cp requisitos/en/inhibitor.sh . | ||
;; | ||
3 ) exit | ||
;; | ||
* ) echo | ||
echo "$RRPLY No es una opcion valida / It is not a valid option" | ||
sleep 3 | ||
bash installer.sh | ||
esac | ||
|
||
sudo apt install hping3 -y | ||
sudo apt install aircrack-ng -y | ||
sudo apt-get install mdk4 -y | ||
sudo apt-get install gnome-terminal -y | ||
sudo apt-get install bettercap -y | ||
sudo apt-get install -y netdiscover-y | ||
sudo apt install macchanger -y | ||
chmod 777 inhibitor.sh -y | ||
bash inhibitor.sh | ||
function Title { | ||
clear | ||
echo | ||
echo " _____ _ _ _ _ _ " | ||
echo " |_ _| | | (_) | | (_) | | " | ||
echo " | | _ __ | |__ _ | |__ _ | |_ ___ _ __ " | ||
echo " | | | '_ \ | '_ \ | | | '_ \ | | | __| / _ \ | '__|" | ||
echo " _| |_ | | | | | | | | | | | |_) | | | | |_ | (_) | | | " | ||
echo " |_____| |_| |_| |_| |_| |_| |_.__/ |_| \__| \___/ |_| " | ||
echo " __________________________________________________" | ||
echo " ︻デ═一 Created by: XDeadHackerX v1.3 ︻デ═一 " | ||
echo " -------------------------------------------------------------------------------------------" | ||
echo " Cualquier acción y o actividad relacionada con Inhibitor es únicamente su responsabilidad" | ||
echo " -------------------------------------------------------------------------------------------" | ||
echo " Any action and or activity related to Inhibitor is solely your responsibility" | ||
echo " -------------------------------------------------------------------------------------------" | ||
echo | ||
echo | ||
} | ||
|
||
if [[ "${BASH_SOURCE[0]}" == "${0}" ]]; then | ||
echo "[*] Elige idioma / Select language" | ||
echo | ||
echo "#####################" | ||
echo "[1] Spain/es" | ||
echo "[2] English/en" | ||
echo "[3] Exit" | ||
echo "#####################" | ||
echo | ||
echo | ||
read -p "[*] Elige una opcion / Choose one option: " opc | ||
case $opc in | ||
1 ) echo | ||
cp requisitos/es/inhibitor.sh . | ||
;; | ||
2 ) echo | ||
cp requisitos/en/inhibitor.sh . | ||
;; | ||
3 ) exit | ||
;; | ||
* ) echo | ||
echo "$RRPLY No es una opcion valida / It is not a valid option" | ||
sleep 3 | ||
bash installer.sh | ||
esac | ||
|
||
sudo apt install hping3 -y | ||
sudo apt install aircrack-ng -y | ||
sudo apt-get install mdk4 -y | ||
sudo apt-get install gnome-terminal -y | ||
sudo apt-get install bettercap -y | ||
sudo apt-get install -y netdiscover-y | ||
sudo apt install macchanger -y | ||
chmod 777 inhibitor.sh -y | ||
bash inhibitor.sh | ||
fi |