-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrequeriments.sh
36 lines (27 loc) · 957 Bytes
/
requeriments.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/bin/bash
# Verificar si el script se está ejecutando como root
if [ "$(id -u)" -ne 0 ]; then
echo "Este script debe ejecutarse como root."
exit 1
fi
# Nombre del archivo original
ORIGINAL_FILE="suBruteforce.py"
# Verificar si el archivo original existe
if [ ! -f "$ORIGINAL_FILE" ]; then
echo "El archivo $ORIGINAL_FILE no existe."
exit 1
fi
# Instalar dependencias necesarias
echo "Instalando dependencias necesarias..."
apt-get update
apt-get install -y python3-pip
pip3 install colorama
# Nombre del archivo destino
DEST_FILE="/usr/bin/suBruteforce"
# Copiar el archivo a /usr/bin/ y renombrarlo
cp $ORIGINAL_FILE $DEST_FILE
# Hacer el archivo ejecutable
chmod +x $DEST_FILE
echo "El script se ha copiado y configurado correctamente en /usr/bin/suBruteforce."
echo "Todas las dependencias se han instalado correctamente."
echo "La herramienta suBruteforce no se puede ejecutar como root, tiene que ser con un usuario normal"