├── .gitignore ├── Desarrollo └── ActualizarRepositorios.sh ├── GestionArchivos ├── ordenar_lineas.sh └── ordenar_lineas2.sh ├── GestionServidores ├── apache2.sh ├── ssh.sh └── vnc.sh ├── LICENSE ├── MiniScripts ├── ContarLineas.sh ├── Cálculos_Matemáticos │ ├── Calcular decimales PI.sh │ └── Restar PI con X decimales a un número.sh └── Temperatura.sh ├── Pentesting ├── Diccionarios │ ├── Combinar_Diccionarios.sh │ ├── Generar_Diccionario_Numerico.sh │ ├── Juntar_Diccionarios.sh │ ├── Limpiar_Diccionario.sh │ └── limpiar.sh ├── Instalar_Software_Wireless_WPA-WPA2-WPS-fakeAP-EvilTwin.sh └── detectar_intrusos_red.sh ├── README.md ├── Redes ├── VerPuertosAbiertos.sh ├── convertir_lista_de_dominios_a_IP.sh └── convertir_lista_de_dominios_a_IP_mejorado.sh ├── Sistema ├── BackupCompleto.sh ├── BackupHome.sh ├── BackupRaíz.sh ├── ProgramarApagado.sh ├── chroot.sh └── chrootCifrado.sh └── Ubiquiti ├── README.md ├── apagar.sh ├── encender.sh ├── ip.config ├── menu.sh ├── ping.sh ├── redesDisponibles.sh └── reiniciar.sh /.gitignore: -------------------------------------------------------------------------------- 1 | /NOTAS.txt 2 | /TMP/* 3 | /test.sh 4 | test.sh 5 | /Backups/* 6 | Backups/* 7 | /logs/* 8 | logs/* 9 | tmp/* 10 | /tmp/* 11 | /conf/home/.vim/colors/monokai_1.vim 12 | conf/home/.vim/colors/monokai_1.vim 13 | /conf/home/.vim/colors/wombat.vim 14 | conf/home/.vim/colors/wombat.vim 15 | /conf/home/.vim/bundle/* 16 | conf/home/.vim/bundle/* 17 | /conf/home/.vim/sessions/* 18 | conf/home/.vim/sessions/* 19 | errores.log 20 | /errores.log 21 | /conf/home/.atom/Diccionarios 22 | /conf/home/.vim/UltiSnips 23 | /conf/home/.vim/after 24 | /conf/home/.vim/autoload 25 | /conf/home/.vim/doc 26 | /conf/home/.vim/etc 27 | /conf/home/.vim/ftplugin 28 | /conf/home/.vim/indent 29 | /conf/home/.vim/initialize.py 30 | /conf/home/.vim/jedi_vim.py 31 | /conf/home/.vim/macros 32 | /conf/home/.vim/plugin 33 | /conf/home/.vim/pythonx 34 | /conf/home/.vim/samples 35 | /conf/home/.vim/scripts 36 | /conf/home/.vim/snippets 37 | /conf/home/.vim/spec 38 | /conf/home/.vim/syntax_checkers 39 | /conf/home/.vim/test 40 | /.idea 41 | npm-debug.log 42 | /npm-debug.log 43 | .ropeproject 44 | __pycache__ 45 | -------------------------------------------------------------------------------- /Desarrollo/ActualizarRepositorios.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # -*- ENCODING: UTF-8 -*- 3 | ## 4 | ## @author Raúl Caro Pastorino 5 | ## @copyright Copyright © 2018 Raúl Caro Pastorino 6 | ## @license https://wwww.gnu.org/licenses/gpl.txt 7 | ## @email tecnico@fryntiz.es 8 | ## @web www.fryntiz.es 9 | ## @github https://github.com/fryntiz 10 | ## @gitlab https://gitlab.com/fryntiz 11 | ## @twitter https://twitter.com/fryntiz 12 | ## 13 | ## Guía de estilos aplicada: 14 | ## @style https://github.com/fryntiz/Bash_Style_Guide 15 | 16 | ############################ 17 | ## INSTRUCCIONES ## 18 | ############################ 19 | ## Menú principal para instalar aplicaciones desde el que se permite 20 | ## elegir entre los tipos de aplicaciones a instalar desde un menú 21 | ## interactivo seleccionando el número que le corresponda 22 | ## 23 | ## No se contemplan subdirectorios (En principio no lo veo necesario) 24 | ## En la ruta de directorio GIT se indica la "ruta" hacia el directorio padre: 25 | ## /ruta/repo/.git 26 | ## ya que se buscará en esa ruta si cada directorio en su interior es un repo. 27 | 28 | ############################ 29 | ## CONSTANTES ## 30 | ############################ 31 | WORKSCRIPT=$PWD ## Directorio principal del script 32 | USER=$(whoami) ## Usuario que ejecuta el script 33 | VERSION='0.0.1' ## Primera versión del script 34 | LOGERROR='/tmp/chrooterrores.log' ## Archivo donde almacenar errores 35 | 36 | ## MODO 37 | # if MODE = relax → solo hace git pull 38 | # if MODE = interactive → pregunta si hacer git pull o descartar cambios 39 | # if MODE = agresive → descarta todos los cambios y luego actualiza 40 | MODE='relax' ## relax|interactive|agresive 41 | 42 | ########################### 43 | ## VARIABLES ## 44 | ########################### 45 | DIRGIT='' ## Directorio con los repositorios 46 | 47 | ############################ 48 | ## FUNCIONES ## 49 | ############################ 50 | ## 51 | ## Comprueba que se ha indicado un directorio, si no es así lo pedirá y después 52 | ## comprobará que existe antes de contirnuar. 53 | ## 54 | inputDir() { 55 | if [[ "$1" != '' ]]; then 56 | DIRGIT="$1" 57 | elif [[ "$DIRGIT" = '' ]]; then 58 | echo -e "Introduce el directorio GIT" 59 | read -p ' → ' input 60 | DIRGIT="$input" 61 | fi 62 | 63 | if [[ "$DIRGIT" = '' ]]; then 64 | echo -e "No se ha introducido un directorio" 65 | exit 1 66 | fi 67 | 68 | if [[ ! -d "$DIRGIT" ]]; then 69 | echo -e "No existe el directorio indicado" 70 | exit 1 71 | fi 72 | 73 | echo -e "El directorio con los repositorios es:" 74 | echo -e "$DIRGIT" 75 | echo '' 76 | 77 | return 0 78 | } 79 | 80 | ## 81 | ## Recibe la ruta de un repositorio y lo actualiza 82 | ## 83 | updateRepo() { 84 | dir="$1" 85 | cd $dir || exit 1 86 | 87 | # if MODE = relax → solo hace git pull 88 | if [[ $MODE = 'relax' ]]; then 89 | git pull || echo "Error al actualizar $dir" >> "$LOGERROR" 90 | fi 91 | 92 | # if MODE = interactive → pregunta si hacer git pull o descartar cambios 93 | ## No implementado modo 94 | if [[ $MODE = 'interactive' ]]; then 95 | git pull ## Detectar si hay fallos y preguntar: 96 | fallos='false' 97 | if [[ "$fallos" = 'true' ]]; then 98 | echo -e "¿Descartar Cambios?" 99 | fi 100 | fi 101 | 102 | # if MODE = agresive → descarta todos los cambios y luego actualiza 103 | if [[ $MODE = 'agresive' ]]; then 104 | git checkout -- . 105 | git checkout HEAD 106 | git pull 107 | fi 108 | 109 | cd $DIRGIT || exit 1 110 | } 111 | 112 | ## 113 | ## Recorre todos los directorios comprobando si dentro exite un directorio .git 114 | ## ya que en este caso supondrá que es un repositorio y lo actualiza. 115 | ## 116 | comenzar() { 117 | cd $DIRGIT || exit 118 | 119 | for dir in *; do 120 | echo -e "Comprobando si ${dir} es un repositorio" 121 | if [[ -d "$dir" ]] && [[ -d "${dir}/.git" ]]; then 122 | echo -e "Actualizando $dir" 123 | updateRepo "$dir" 124 | fi 125 | done 126 | 127 | cd $WORKSCRIPT 128 | } 129 | 130 | inputDir "$1" 131 | comenzar 132 | 133 | echo -e "Script completado" 134 | exit 0 135 | -------------------------------------------------------------------------------- /GestionArchivos/ordenar_lineas.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Recibe un fichero y lo ordena alfabéticamente (por líneas). 4 | # Lo guarda en un fichero a parte. 5 | 6 | 7 | function ordenar() { 8 | clear 9 | 10 | read -p 'Introduce el nombre del archivo → ' input 11 | 12 | if [ -f $input ] 13 | then 14 | sort $input > resultado_ordenado.txt 15 | elif [ -z $input ] 16 | then 17 | echo 'No se ha insertado ningún archivo' 18 | exit 1 19 | else 20 | echo 'No es un archivo de texto plano válido' 21 | exit 1 22 | fi 23 | } 24 | 25 | ordenar 26 | 27 | exit 0 28 | -------------------------------------------------------------------------------- /GestionArchivos/ordenar_lineas2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Recibe un fichero y lo ordena alfabéticamente (por líneas). 4 | # Sobrescribe el fichero que recibe. 5 | 6 | 7 | function ordenar() { 8 | clear 9 | 10 | read -p 'Introduce el nombre del archivo → ' input 11 | 12 | if [ -f $input ] 13 | then 14 | sort $input > tmp_resultado_ordenado.txt 15 | rm $input 16 | mv tmp_resultado_ordenado.txt $input 17 | elif [ -z $input ] 18 | then 19 | echo 'No se ha insertado ningún archivo' 20 | exit 1 21 | else 22 | echo 'No es un archivo de texto plano válido' 23 | exit 1 24 | fi 25 | } 26 | 27 | ordenar 28 | 29 | exit 0 30 | -------------------------------------------------------------------------------- /GestionServidores/apache2.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # -*- ENCODING: UTF-8 -*- 3 | ## 4 | ## @author Raúl Caro Pastorino 5 | ## @copyright Copyright © 2018 Raúl Caro Pastorino 6 | ## @license https://wwww.gnu.org/licenses/gpl.txt 7 | ## @email dev@fryntiz.es 8 | ## @web https://fryntiz.es 9 | ## @github https://github.com/fryntiz 10 | ## @gitlab https://gitlab.com/fryntiz 11 | ## @twitter https://twitter.com/fryntiz 12 | ## 13 | ## Guía de estilos aplicada: 14 | ## @style https://github.com/fryntiz/Bash_Style_Guide 15 | 16 | ############################ 17 | ## INSTRUCCIONES ## 18 | ############################ 19 | ## Gestiona tareas del servidor apache 20 | 21 | ############################ 22 | ## CONSTANTES ## 23 | ############################ 24 | AM="\033[1;33m" ## Color Amarillo 25 | RO="\033[1;31m" ## Color Rojo 26 | VE="\033[1;32m" ## Color Verde 27 | CL="\e[0m" ## Limpiar colores 28 | 29 | ########################### 30 | ## VARIABLES ## 31 | ########################### 32 | 33 | ########################### 34 | ## FUNCIONES ## 35 | ########################### 36 | 37 | # Menu 38 | while : 39 | do 40 | clear 41 | 42 | echo "" 43 | echo -e " $AM Apache2 $RO" 44 | echo "" 45 | echo -e " $RO 1) $VE Deshabilitar del inicio" 46 | echo -e " $RO 2) $VE Habilitar en el inicio" 47 | echo -e " $RO 3) $VE Apagar" 48 | echo -e " $RO 4) $VE Encender" 49 | echo -e " $RO 5) $VE Reiniciar" 50 | echo -e " $RO 6) $VE Reinicio Seguro" 51 | echo -e " $RO 0) $VE Volver atrás$CL" 52 | echo "" 53 | 54 | read -p " → " OPCION 55 | case $OPCION in 56 | 57 | 1) ## Deshabilitar del inicio 58 | clear 59 | sudo systemctl disable apache2 60 | read -p "Pulsa una tecla para continuar" input 61 | continue;; 62 | 63 | 2) ## Habilitar al inicio 64 | clear 65 | sudo systemctl enable apache2 66 | read -p "Pulsa una tecla para continuar" input 67 | continue;; 68 | 69 | 3) ## Apagar 70 | clear 71 | sudo systemctl stop apache2 72 | read -p "Pulsa una tecla para continuar" input 73 | continue;; 74 | 75 | 4) ## Encender 76 | clear 77 | sudo systemctl start apache2 78 | read -p "Pulsa una tecla para continuar" input 79 | continue;; 80 | 81 | 5) ## Reiniciar 82 | clear 83 | sudo systemctl restart apache2 84 | read -p "Pulsa una tecla para continuar" input 85 | continue;; 86 | 87 | 6) ## Reinicio Seguro 88 | clear 89 | sudo systemctl reload apache2 90 | read -p "Pulsa una tecla para continuar" input 91 | continue;; 92 | 93 | 94 | 0) ## Volver Atrás 95 | clear 96 | break;; 97 | 98 | *) ## Cualquier otra opción que no sea las anteriores 99 | clear 100 | echo "" 101 | echo -e "$RO La opción elegida no es válida$AM introduce otra" 102 | read -p "Pulsa una tecla para continuar" input;; 103 | esac 104 | done 105 | -------------------------------------------------------------------------------- /GestionServidores/ssh.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # -*- ENCODING: UTF-8 -*- 3 | ## 4 | ## @author Raúl Caro Pastorino 5 | ## @copyright Copyright © 2018 Raúl Caro Pastorino 6 | ## @license https://wwww.gnu.org/licenses/gpl.txt 7 | ## @email dev@fryntiz.es 8 | ## @web https://fryntiz.es 9 | ## @github https://github.com/fryntiz 10 | ## @gitlab https://gitlab.com/fryntiz 11 | ## @twitter https://twitter.com/fryntiz 12 | ## 13 | ## Guía de estilos aplicada: 14 | ## @style https://github.com/fryntiz/Bash_Style_Guide 15 | 16 | ############################ 17 | ## INSTRUCCIONES ## 18 | ############################ 19 | ## Gestiona tareas del servidor ssh 20 | 21 | ############################ 22 | ## CONSTANTES ## 23 | ############################ 24 | AM="\033[1;33m" ## Color Amarillo 25 | RO="\033[1;31m" ## Color Rojo 26 | VE="\033[1;32m" ## Color Verde 27 | CL="\e[0m" ## Limpiar colores 28 | 29 | ########################### 30 | ## VARIABLES ## 31 | ########################### 32 | 33 | ########################### 34 | ## FUNCIONES ## 35 | ########################### 36 | 37 | # Menu 38 | while : 39 | do 40 | clear 41 | 42 | echo "" 43 | echo -e " $AM SSH $RO" 44 | echo "" 45 | echo -e " $RO 1) $VE Deshabilitar del inicio" 46 | echo -e " $RO 2) $VE Habilitar en el inicio" 47 | echo -e " $RO 3) $VE Apagar" 48 | echo -e " $RO 4) $VE Encender" 49 | echo -e " $RO 5) $VE Reiniciar" 50 | echo -e " $RO 0) $VE Volver atrás$CL" 51 | echo "" 52 | 53 | read -p " → " OPCION 54 | case $OPCION in 55 | 56 | 1) # Deshabilitar del inicio 57 | clear 58 | sudo systemctl disable ssh 59 | read -p "Pulsa una tecla para continuar" input 60 | continue;; 61 | 62 | 2) # Habilitar al inicio 63 | clear 64 | sudo systemctl enable ssh 65 | read -p "Pulsa una tecla para continuar" input 66 | continue;; 67 | 68 | 3) # Apagar 69 | clear 70 | sudo systemctl stop ssh 71 | read -p "Pulsa una tecla para continuar" input 72 | continue;; 73 | 74 | 4) # Encender 75 | clear 76 | sudo systemctl start ssh 77 | read -p "Pulsa una tecla para continuar" input 78 | continue;; 79 | 80 | 5) # Reiniciar 81 | clear 82 | sudo systemctl restart ssh 83 | read -p "Pulsa una tecla para continuar" input 84 | continue;; 85 | 86 | 0) # Volver Atrás 87 | clear 88 | break;; 89 | 90 | *) # Cualquier otra opción que no sea las anteriores 91 | clear 92 | echo "" 93 | echo -e "$RO La opción elegida no es válida$AM introduce otra" 94 | read -p "Pulsa una tecla para continuar" input;; 95 | esac 96 | done 97 | -------------------------------------------------------------------------------- /GestionServidores/vnc.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # -*- ENCODING: UTF-8 -*- 3 | ## 4 | ## @author Raúl Caro Pastorino 5 | ## @copyright Copyright © 2018 Raúl Caro Pastorino 6 | ## @license https://wwww.gnu.org/licenses/gpl.txt 7 | ## @email dev@fryntiz.es 8 | ## @web https://fryntiz.es 9 | ## @github https://github.com/fryntiz 10 | ## @gitlab https://gitlab.com/fryntiz 11 | ## @twitter https://twitter.com/fryntiz 12 | ## 13 | ## Guía de estilos aplicada: 14 | ## @style https://github.com/fryntiz/Bash_Style_Guide 15 | 16 | ############################ 17 | ## INSTRUCCIONES ## 18 | ############################ 19 | ## Gestiona tareas del servidor VNC 20 | 21 | ############################ 22 | ## CONSTANTES ## 23 | ############################ 24 | AM="\033[1;33m" ## Color Amarillo 25 | RO="\033[1;31m" ## Color Rojo 26 | VE="\033[1;32m" ## Color Verde 27 | CL="\e[0m" ## Limpiar colores 28 | 29 | ########################### 30 | ## VARIABLES ## 31 | ########################### 32 | 33 | ########################### 34 | ## FUNCIONES ## 35 | ########################### 36 | 37 | # Menu 38 | while : 39 | do 40 | clear 41 | 42 | echo "" 43 | echo -e " $AM VNC $RO" 44 | echo "" 45 | #echo -e " $RO 1) $VE Deshabilitar del inicio" 46 | #echo -e " $RO 2) $VE Habilitar en el inicio" 47 | #echo -e " $RO 3) $VE Apagar" 48 | #echo -e " $RO 4) $VE Encender" 49 | #echo -e " $RO 5) $VE Reiniciar" 50 | echo -e " $RO 0) $VE Volver atrás$CL" 51 | echo "" 52 | 53 | read -p " → " OPCION 54 | case $OPCION in 55 | 56 | 1) # Deshabilitar del inicio 57 | clear 58 | read -p "Pulsa una tecla para continuar" input 59 | continue;; 60 | 61 | 2) # Habilitar al inicio 62 | clear 63 | read -p "Pulsa una tecla para continuar" input 64 | continue;; 65 | 66 | 3) # Apagar 67 | clear 68 | read -p "Pulsa una tecla para continuar" input 69 | continue;; 70 | 71 | 4) # Encender 72 | clear 73 | read -p "Pulsa una tecla para continuar" input 74 | continue;; 75 | 76 | 5) # Reiniciar 77 | clear 78 | read -p "Pulsa una tecla para continuar" input 79 | continue;; 80 | 81 | 0) # Volver Atrás 82 | clear 83 | break;; 84 | 85 | *) # Cualquier otra opción que no sea las anteriores 86 | clear 87 | echo "" 88 | echo -e "$RO La opción elegida no es válida$AM introduce otra" 89 | read -p "Pulsa una tecla para continuar" input;; 90 | esac 91 | done 92 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | {one line to give the program's name and a brief idea of what it does.} 635 | Copyright (C) {year} {name of author} 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | {project} Copyright (C) {year} {fullname} 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /MiniScripts/ContarLineas.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # -*- ENCODING: UTF-8 -*- 3 | ## 4 | ## @author Raúl Caro Pastorino 5 | ## @copyright Copyright © 2018 Raúl Caro Pastorino 6 | ## @license https://wwww.gnu.org/licenses/gpl.txt 7 | ## @email dev@fryntiz.es 8 | ## @web https://fryntiz.es 9 | ## @github https://github.com/fryntiz 10 | ## @gitlab https://gitlab.com/fryntiz 11 | ## @twitter https://twitter.com/fryntiz 12 | ## 13 | ## Guía de estilos aplicada: 14 | ## @style https://github.com/fryntiz/Bash_Style_Guide 15 | 16 | ############################ 17 | ## INSTRUCCIONES ## 18 | ############################ 19 | ## Este script contará las líneas de todos los archivos del directorio 20 | 21 | ############################ 22 | ## CONSTANTES ## 23 | ############################ 24 | AM="\033[1;33m" ## Color Amarillo 25 | RO="\033[1;31m" ## Color Rojo 26 | VE="\033[1;32m" ## Color Verde 27 | CL="\e[0m" ## Limpiar colores 28 | 29 | ########################### 30 | ## VARIABLES ## 31 | ########################### 32 | 33 | ########################### 34 | ## FUNCIONES ## 35 | ########################### 36 | TOTAL=0 37 | 38 | ## TODO → Solo contar archivos con extensiones válidas a partir de una lista 39 | 40 | ## Cuenta todas las líneas y las agrego a un array 41 | TMP=`find -type f -exec wc -l {} \; | cut -d " " -f 1` 42 | 43 | ## Bucle para recorrer todos los valores de $TMP 44 | for i in $TMP; do 45 | TOTAL=$(( $TOTAL + $i )) 46 | done 47 | 48 | ## Mostrar resultado 49 | echo "El total es $TOTAL" 50 | 51 | exit 0 52 | -------------------------------------------------------------------------------- /MiniScripts/Cálculos_Matemáticos/Calcular decimales PI.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | #Variables Generales 4 | decimales="100" #Cantidad de decimales máxima permitida 5 | 6 | ##### CONSTANTES COLORES ##### 7 | negro="\033[0;30m" 8 | rojo="\033[0;31m" 9 | verde="\033[0;32m" 10 | marron="\033[0;33m" 11 | azul="\033[0;34m" 12 | magenta="\033[0;35m" 13 | cyan="\033[01;36m" 14 | grisC="\033[0;37m" 15 | gris="\033[1;30m" 16 | rojoC="\033[1;31m" 17 | verdeC="\033[1;32m" 18 | amarillo="\033[1;33m" 19 | azulC="\033[1;34m" 20 | magentaC="\033[1;35m" 21 | cyanC="\033[1;36m" 22 | blanco="\033[1;37m" 23 | subrayar="\E[4m" 24 | parpadeoON="\E[5m" 25 | parpadeoOFF="\E[0m" 26 | resaltar="\E[7m" 27 | 28 | clear 29 | 30 | # Menu 31 | while : 32 | do 33 | echo "" 34 | echo -e " $amarillo Introduce la cantidad para los decimales de PI " 35 | echo "" 36 | 37 | 38 | #Último Menú para salir: 39 | echo -e " $rojoC Pulsa 0 para $magentaC Salir" 40 | echo "" 41 | echo "" 42 | 43 | #Comentario impreso en pantalla donde muestra opciones disponibles a elegir 44 | echo -e " $azulC Introduce un valor:" 45 | echo "" 46 | echo "" 47 | 48 | read entrada 49 | case $entrada in 50 | 51 | 0)#Opción 0 52 | clear 53 | echo -e "$grisC" 54 | echo "Nos vemos, ya volverás...." 55 | echo "" 56 | exit 1;; 57 | 58 | *)#Cualquier otra opción que no sea las anteriores 59 | clear; 60 | if [ $entrada -le $decimales ]; then 61 | PI=$({ echo -n "scale=$entrada;"; seq 1 2 200 | xargs -n1 -I{} echo '(16*(1/5)^{}/{}-4*(1/239)^{}/{})';} | paste -sd-+ | bc -l) 62 | echo -e "$azulC El número PI con$rojoC $entrada$azulC decimales:" 63 | echo -e "$verdeC$PI" 64 | echo "" 65 | echo -e "$rojoC Pulsa INTRO para volver$gris" 66 | else 67 | clear 68 | echo "" 69 | echo -e " $rojoC ERROR - No se ha introducido un valor numérico menor de $decimales" 70 | echo "" 71 | echo -e "$rojoC Pulsar $amarillo $entrada $rojoC no va a conseguir hacer nada porque no está contemplado." 72 | echo "" 73 | echo "" 74 | echo -e " $azulC Pulsa sobre cualquier tecla para volver a probar" 75 | fi 76 | echo -e "$grisC" 77 | read foo;;#Script Realizado por Fryntiz (Raúl Caro Pastorino) 78 | esac 79 | done -------------------------------------------------------------------------------- /MiniScripts/Cálculos_Matemáticos/Restar PI con X decimales a un número.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | #Variables Generales 4 | decimales="100" #Cantidad de decimales máxima permitida 5 | numeroArestar="4" #Número al que se le quiere restar PI 6 | 7 | ##### CONSTANTES COLORES ##### 8 | negro="\033[0;30m" 9 | rojo="\033[0;31m" 10 | verde="\033[0;32m" 11 | marron="\033[0;33m" 12 | azul="\033[0;34m" 13 | magenta="\033[0;35m" 14 | cyan="\033[01;36m" 15 | grisC="\033[0;37m" 16 | gris="\033[1;30m" 17 | rojoC="\033[1;31m" 18 | verdeC="\033[1;32m" 19 | amarillo="\033[1;33m" 20 | azulC="\033[1;34m" 21 | magentaC="\033[1;35m" 22 | cyanC="\033[1;36m" 23 | blanco="\033[1;37m" 24 | subrayar="\E[4m" 25 | parpadeoON="\E[5m" 26 | parpadeoOFF="\E[0m" 27 | resaltar="\E[7m" 28 | 29 | clear 30 | 31 | # Menu 32 | while : 33 | do 34 | echo "" 35 | echo -e " $amarillo Introduce la cantidad para los decimales de PI " 36 | echo "" 37 | 38 | 39 | #Último Menú para salir: 40 | echo -e " $rojoC Pulsa 0 para $magentaC Salir" 41 | echo "" 42 | echo "" 43 | 44 | #Comentario impreso en pantalla donde muestra opciones disponibles a elegir 45 | echo -e " $azulC Introduce un valor:" 46 | echo "" 47 | echo "" 48 | 49 | read entrada 50 | case $entrada in 51 | 52 | 0)#Opción 0 53 | clear 54 | echo -e "$grisC" 55 | echo "Nos vemos, ya volverás...." 56 | echo "" 57 | exit 1;; 58 | 59 | *)#Cualquier otra opción que no sea las anteriores 60 | clear; 61 | if [ $entrada -le $decimales ]; then 62 | PI=$({ echo -n "scale=$entrada;"; seq 1 2 200 | xargs -n1 -I{} echo '(16*(1/5)^{}/{}-4*(1/239)^{}/{})';} | paste -sd-+ | bc -l) 63 | echo -e "$azulC El número PI con$rojoC $entrada$azulC decimales:" 64 | echo -e "$verdeC$PI" 65 | echo "" 66 | echo -e "$azulC El número$rojoC $numeroArestar$azulC menos el número PI:" 67 | echo -e "$rojoC $numeroArestar$azulC -$rojoC $PI" 68 | echo "" 69 | RESTA=$(echo $numeroArestar - $PI | bc) 70 | echo -e "$amarillo RESULTADO =$verdeC 0$RESTA" 71 | echo "" 72 | echo -e "$rojoC Pulsa INTRO para volver$gris" 73 | else 74 | clear 75 | echo "" 76 | echo -e " $rojoC ERROR - No se ha introducido un valor numérico menor de $decimales" 77 | echo "" 78 | echo -e "$rojoC Pulsar $amarillo $entrada $rojoC no va a conseguir hacer nada porque no es un valor numérico." 79 | echo "" 80 | echo "" 81 | echo -e " $azulC Pulsa sobre cualquier tecla para volver a probar" 82 | fi 83 | echo -e "$grisC" 84 | read foo;;#Script Realizado por Fryntiz (Raúl Caro Pastorino) 85 | esac 86 | done -------------------------------------------------------------------------------- /MiniScripts/Temperatura.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # -*- ENCODING: UTF-8 -*- 3 | ## 4 | ## @author Raúl Caro Pastorino 5 | ## @copyright Copyright © 2018 Raúl Caro Pastorino 6 | ## @license https://wwww.gnu.org/licenses/gpl.txt 7 | ## @email dev@fryntiz.es 8 | ## @web https://fryntiz.es 9 | ## @github https://github.com/fryntiz 10 | ## @gitlab https://gitlab.com/fryntiz 11 | ## @twitter https://twitter.com/fryntiz 12 | ## 13 | ## Guía de estilos aplicada: 14 | ## @style https://github.com/fryntiz/Bash_Style_Guide 15 | 16 | ############################ 17 | ## INSTRUCCIONES ## 18 | ############################ 19 | ## Mostrar temperatura cada un tiempo determinado 20 | 21 | ############################ 22 | ## CONSTANTES ## 23 | ############################ 24 | AM="\033[1;33m" ## Color Amarillo 25 | RO="\033[1;31m" ## Color Rojo 26 | VE="\033[1;32m" ## Color Verde 27 | CL="\e[0m" ## Limpiar colores 28 | 29 | ########################### 30 | ## VARIABLES ## 31 | ########################### 32 | 33 | ########################### 34 | ## FUNCIONES ## 35 | ########################### 36 | 37 | ESPERA='7s' 38 | 39 | clear 40 | while true : 41 | do 42 | time sensors 43 | echo "" 44 | echo -e "Tiempo encendido --> " $(uptime) 45 | echo "" 46 | sleep "$ESPERA" 47 | clear 48 | done 49 | -------------------------------------------------------------------------------- /Pentesting/Diccionarios/Combinar_Diccionarios.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # -*- ENCODING: UTF-8 -*- 3 | ## 4 | ## @author Raúl Caro Pastorino 5 | ## @copyright Copyright © 2018 Raúl Caro Pastorino 6 | ## @license https://wwww.gnu.org/licenses/gpl.txt 7 | ## @email dev@fryntiz.es 8 | ## @web https://fryntiz.es 9 | ## @github https://github.com/fryntiz 10 | ## @gitlab https://gitlab.com/fryntiz 11 | ## @twitter https://twitter.com/fryntiz 12 | ## 13 | ## Guía de estilos aplicada: 14 | ## @style https://github.com/fryntiz/Bash_Style_Guide 15 | 16 | ############################ 17 | ## INSTRUCCIONES ## 18 | ############################ 19 | ## Este script combina todas las palabras de dos diccionarios 20 | 21 | ############################ 22 | ## CONSTANTES ## 23 | ############################ 24 | AM="\033[1;33m" ## Color Amarillo 25 | RO="\033[1;31m" ## Color Rojo 26 | VE="\033[1;32m" ## Color Verde 27 | CL="\e[0m" ## Limpiar colores 28 | AZ="\033[1;34m" 29 | CY="\033[1;36m" 30 | 31 | ########################### 32 | ## VARIABLES ## 33 | ########################### 34 | espacio="" 35 | eliminar_ceros=false 36 | escribir_salida=false 37 | sufijo="_temporal" 38 | 39 | ########################### 40 | ## FUNCIONES ## 41 | ########################### 42 | clear 43 | 44 | mkdir tmp 45 | 46 | mensaje() { 47 | echo -e " $RO Modo de uso:" 48 | echo -e " $AM$0 [OPCIONES] " 49 | echo "" 50 | echo -e " $AZ Opciones:" 51 | echo -e " $VE -e, Insertar espacio entre cada palabra" 52 | echo -e " $CY -h, Mostrar esta ayuda" 53 | echo -e " $VE -z, Omitir ceros en los diccionarios" 54 | echo -e " $CY -o, Especificar archivo de salida." 55 | echo "" 56 | echo "" 57 | echo -e "$AM Este script combinará todas las posibilidades del$RO Diccionario1$AM con el$RO Diccionario2$AM detrás." 58 | echo -e " Para hacerlo al revés simplemente cambia el orden de los diccionarios al ejecutar el script$CL" 59 | echo "" 60 | } 61 | 62 | if [[ $# -eq 0 ]] ## Comprueba que existen parámentros 63 | then 64 | mensaje 65 | exit 1 66 | fi 67 | 68 | while getopts "zeho:" Opcion 69 | do 70 | case $Opcion in 71 | e) 72 | espacio=" " 73 | ;; 74 | h) 75 | echo "Menu de ayuda" 76 | echo "" 77 | mensaje 78 | exit 1 79 | ;; 80 | z) 81 | eliminar_ceros='true' 82 | ;; 83 | o) 84 | salida=$OPTARG 85 | escribir_salida='true' 86 | ;; 87 | ?) 88 | echo "opción $OPTARG no reconocida" 89 | ;; 90 | :) 91 | echo "opción $OPTARG requiere un argumento" 92 | ;; 93 | esac 94 | done 95 | 96 | shift $(( OPTIND -1 )) 97 | 98 | if [[ -z "$1" ]] || [[ -z "$2" ]]; then 99 | echo "Faltan argumentos válidos" 100 | exit 1 101 | fi 102 | 103 | if [[ ! -e "$1" ]]; then 104 | echo "No se ha podido encontrar $1" 105 | exit 1 106 | fi 107 | 108 | if [[ ! -e "$2" ]]; then 109 | echo "No se ha podido encontrar $2" 110 | exit 1 111 | fi 112 | 113 | for f1 in $(if [[ "$eliminar_ceros" = 'true' ]]; then 114 | cat $1|tr -d "0" #elimina el caracter "0" 115 | else 116 | cat $1 |tr -d "\r" 117 | fi) 118 | 119 | do 120 | for f2 in $(if [[ "$eliminar_ceros" = 'true' ]] 121 | then 122 | cat $2|tr -d "0" 123 | else 124 | cat $2 |tr -d "\r" 125 | fi) 126 | 127 | do 128 | if [[ "$escribir_salida" = 'true' ]]; then 129 | echo $f1$espacio$f2 >> tmp/$salida ##Escribir salida en archivo omitiendo "intro" 130 | echo $f1$espacio$f2 131 | else 132 | echo $f1$espacio$f2 |tr -d "\r" ## Mostrar salida sin escribirla omitiendo "intro" 133 | fi 134 | done 135 | done 136 | 137 | if [[ -f "tmp/$salida" ]]; then 138 | #sort /tmp/Desordenado-$salida > $salida 139 | cat tmp/$salida | sort | uniq > $salida 140 | if [[ "$salida" ]]; then 141 | sleep 5 142 | rm tmp/$salida 143 | rm -R tmp 144 | chmod 777 $salida 145 | else 146 | echo -e "$RO Ha ocurrido algún problema" 147 | echo -e " El diccionario no ha podido crearse correctamente" 148 | echo -e " Comprueba el archivo tmp/$salida" 149 | echo -e " Este archivo contendrá el diccionario sin ordenar ni filtrar" 150 | echo -e " Puedes ponerte en contacto con el creador del script si no consigues solucionar el problema$CL" 151 | fi 152 | fi 153 | -------------------------------------------------------------------------------- /Pentesting/Diccionarios/Generar_Diccionario_Numerico.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | #Script realizado por Raúl Caro Pastoriono (fryntiz) fryntiz@gmail.com 3 | #GitHub --> https://github.com/fryntiz 4 | 5 | #Variables Generales 6 | eliminar_ceros=false 7 | escribir_salida=false 8 | 9 | ##### CONSTANTES COLORES ##### 10 | rojo="\033[0;31m" 11 | verde="\033[0;32m" 12 | azul="\033[0;34m" 13 | magenta="\033[0;35m" 14 | cyan="\033[01;36m" 15 | grisC="\033[0;37m" 16 | gris="\033[1;30m" 17 | rojoC="\033[1;31m" 18 | verdeC="\033[1;32m" 19 | amarillo="\033[1;33m" 20 | azulC="\033[1;34m" 21 | magentaC="\033[1;35m" 22 | cyanC="\033[1;36m" 23 | blanco="\033[1;37m" 24 | 25 | clear 26 | 27 | mensaje() { 28 | echo -e " $rojoC Modo de uso:" 29 | echo -e " $amarillo$0 [OPCIONES]" 30 | echo -e " $blanco Ejemplo:$rojoC$0 -z -o Diccionario_Años" 31 | echo "" 32 | echo -e " $azulC Opciones:" 33 | echo -e " $cyanC -h, Mostrar esta ayuda" 34 | echo -e " $verdeC -z, Omitir ceros en los diccionarios" 35 | echo -e " $cyanC -o, Especificar archivo de salida." 36 | echo "" 37 | echo "" 38 | echo -e "$amarillo Este script generará todos los números comprendidos entre los dos valores que introduzcas$blanco" 39 | echo "" 40 | } 41 | 42 | if [ $# -eq 0 ] #Comprueba que existen parámentros 43 | then 44 | mensaje 45 | exit 1 46 | fi 47 | 48 | while getopts "zho:" Opcion 49 | do 50 | case $Opcion in 51 | h) 52 | echo "Menu de ayuda" 53 | echo "" 54 | mensaje 55 | exit 1 56 | ;; 57 | z) 58 | eliminar_ceros=true 59 | ;; 60 | o) 61 | salida=$OPTARG 62 | escribir_salida=true 63 | ;; 64 | ?) 65 | echo "opción $OPTARG no reconocida" 66 | ;; 67 | :) 68 | echo "opción $OPTARG requiere un argumento" 69 | ;; 70 | esac 71 | done 72 | 73 | shift $(( OPTIND -1 )) 74 | 75 | echo "" 76 | echo "" 77 | echo -e "$verdeC Introduce solo un valor numérico entero" 78 | echo -e "$rojoC" 79 | read -p " Introduce el numero de inicio: " numero_actual 80 | read -p " Introduce el numero de fin: " numero_final 81 | echo -e "$blanco" 82 | 83 | while [ $numero_actual -lt $numero_final ] 84 | do 85 | echo -e "$azulC Calculando número actual: $verdeC$numero_actual" 86 | 87 | if [ $eliminar_ceros == true ] 88 | then 89 | if [ $escribir_salida == true ] 90 | then 91 | echo $numero_actual | tr -d "0" >> /tmp/$salida 92 | else 93 | echo $numero_actual | tr -d "0" 94 | fi 95 | else 96 | if [ $escribir_salida == true ] 97 | then 98 | echo $numero_actual >> /tmp/$salida 99 | else 100 | echo $numero_actual 101 | fi 102 | fi 103 | let numero_actual++ 104 | done 105 | 106 | echo -e "$blanco" 107 | 108 | if [ $escribir_salida == true ] 109 | then 110 | cat /tmp/$salida > $salida 111 | sleep 2 112 | rm /tmp/$salida 113 | else 114 | echo "Solo mostrando datos sin guardar en archivos (parámetro '-o')" 115 | fi 116 | #Script realizado por Raúl Caro Pastoriono (fryntiz) 117 | -------------------------------------------------------------------------------- /Pentesting/Diccionarios/Juntar_Diccionarios.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | #Script realizado por Raúl Caro Pastoriono (fryntiz) fryntiz@gmail.com 3 | #GitHub --> https://github.com/fryntiz 4 | 5 | #Variables Generales 6 | escribir_salida=false 7 | diccionario1=$1 8 | diccionario2=$2 9 | 10 | ##### CONSTANTES COLORES ##### 11 | rojo="\033[0;31m" 12 | verde="\033[0;32m" 13 | azul="\033[0;34m" 14 | magenta="\033[0;35m" 15 | cyan="\033[01;36m" 16 | grisC="\033[0;37m" 17 | gris="\033[1;30m" 18 | rojoC="\033[1;31m" 19 | verdeC="\033[1;32m" 20 | amarillo="\033[1;33m" 21 | azulC="\033[1;34m" 22 | magentaC="\033[1;35m" 23 | cyanC="\033[1;36m" 24 | blanco="\033[1;37m" 25 | 26 | clear 27 | 28 | mensaje() { 29 | echo -e " $rojoC Modo de uso:" 30 | echo -e " $amarillo$0 [OPCIONES] " 31 | echo "" 32 | echo -e " $azulC Opciones:" 33 | echo -e " $cyanC -h, Mostrar esta ayuda" 34 | echo -e " $verdeC -o, Especificar nombre del archivo de salida." 35 | echo "" 36 | echo "" 37 | echo -e "$amarillo Este script sumará 2 diccionarios, ordenará alfabeticamente el nuevo diccionario generado y eliminará las lineas duplicadas$blanco" 38 | echo "" 39 | } 40 | 41 | if [ $# -eq 0 ] #Comprueba que existen parámentros 42 | then 43 | mensaje 44 | exit 1 45 | fi 46 | 47 | while getopts "ho:" Opcion 48 | do 49 | case $Opcion in 50 | h) 51 | echo "Menu de ayuda" 52 | echo "" 53 | mensaje 54 | exit 1 55 | ;; 56 | o) 57 | salida=$OPTARG 58 | escribir_salida=true 59 | ;; 60 | ?) 61 | echo "opción $OPTARG no reconocida" 62 | ;; 63 | :) 64 | echo "opción $OPTARG requiere un argumento" 65 | ;; 66 | esac 67 | done 68 | 69 | shift $(( OPTIND -1 )) 70 | 71 | cat $1 > tmp/$salida 72 | cat $2 >> tmp/$salida 73 | cat tmp/$salida | sort | uniq > $salida 74 | rm tmp/$salida 75 | 76 | #Script realizado por Raúl Caro Pastoriono (fryntiz) 77 | -------------------------------------------------------------------------------- /Pentesting/Diccionarios/Limpiar_Diccionario.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # -*- ENCODING: UTF-8 -*- 3 | ## 4 | ## @author Raúl Caro Pastorino 5 | ## @copyright Copyright © 2018 Raúl Caro Pastorino 6 | ## @license https://wwww.gnu.org/licenses/gpl.txt 7 | ## @email dev@fryntiz.es 8 | ## @web https://fryntiz.es 9 | ## @github https://github.com/fryntiz 10 | ## @gitlab https://gitlab.com/fryntiz 11 | ## @twitter https://twitter.com/fryntiz 12 | ## 13 | ## Guía de estilos aplicada: 14 | ## @style https://github.com/fryntiz/Bash_Style_Guide 15 | 16 | ############################ 17 | ## INSTRUCCIONES ## 18 | ############################ 19 | ## 20 | 21 | ############################ 22 | ## CONSTANTES ## 23 | ############################ 24 | AM="\033[1;33m" ## Color Amarillo 25 | RO="\033[1;31m" ## Color Rojo 26 | VE="\033[1;32m" ## Color Verde 27 | CL="\e[0m" ## Limpiar colores 28 | 29 | ########################### 30 | ## VARIABLES ## 31 | ########################### 32 | 33 | ########################### 34 | ## FUNCIONES ## 35 | ########################### 36 | 37 | Eliminar líneas en blanco (variación del anterior): 38 | # comando | sed '/^$/ d' 39 | # sed '/^$/d' fichero > fichero2.txt 40 | 41 | Eliminar espacios al principio de línea: 42 | # sed 's/^ *//g' fichero 43 | 44 | Eliminar todos los espacios que haya al final de cada línea: 45 | # sed 's/ *$//' fichero 46 | 47 | Eliminar espacios sobrantes a principio y final de línea, o ambos: 48 | # sed 's/^[ \t]*//' fichero 49 | # sed 's/[ \t]*$//' fichero 50 | # sed 's/^[ \t]*//;s/[ \t]*$//' fichero 51 | 52 | Borrar líneas duplicadas no consecutivas de un fichero: 53 | # sed -n 'G; s/\n/&&/; /^\([ -~]*\n\).*\n\1/d; s/\n//; h; P' fichero 54 | 55 | Eliminar líneas en blanco y comentarios bash: 56 | # comando | sed '/^$/ d' 57 | # sed '/^$/d; / *#/d' fichero > fichero2.txt 58 | 59 | Eliminar numeros 60 | cat names.hp | tr -d "1,2,3,4,5,6,7,8,9,0" > a 61 | 62 | Eliminar las líneas que contentan una cadena: 63 | # sed '/cadena/ d' fichero > fichero2.txt 64 | # sed '/^cadena/ d' fichero > fichero2.txt 65 | # sed '/^cadena$/ d' fichero > fichero2.txt 66 | 67 | Eliminar múltiples líneas en blanco consecutivas dejando sólo 1: 68 | # sed '/./,/^$/!d' fichero 69 | 70 | Elimnar espacios 71 | cat a | tr -d " " > b 72 | 73 | Eliminar tags HTML: 74 | # sed -e :a -e 's/<[^>]*>//g;/ pass-listos.txt 42 | -------------------------------------------------------------------------------- /Pentesting/Instalar_Software_Wireless_WPA-WPA2-WPS-fakeAP-EvilTwin.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # -*- ENCODING: UTF-8 -*- 3 | ## 4 | ## @author Raúl Caro Pastorino 5 | ## @copyright Copyright © 2018 Raúl Caro Pastorino 6 | ## @license https://wwww.gnu.org/licenses/gpl.txt 7 | ## @email dev@fryntiz.es 8 | ## @web https://fryntiz.es 9 | ## @github https://github.com/fryntiz 10 | ## @gitlab https://gitlab.com/fryntiz 11 | ## @twitter https://twitter.com/fryntiz 12 | ## 13 | ## Guía de estilos aplicada: 14 | ## @style https://github.com/fryntiz/Bash_Style_Guide 15 | 16 | ############################ 17 | ## INSTRUCCIONES ## 18 | ############################ 19 | ## El objetivo de este script es instalar algunas herramientas para la auditoría 20 | ## de forma automatizada 21 | 22 | ############################ 23 | ## CONSTANTES ## 24 | ############################ 25 | AM="\033[1;33m" ## Color Amarillo 26 | RO="\033[1;31m" ## Color Rojo 27 | VE="\033[1;32m" ## Color Verde 28 | CL="\e[0m" ## Limpiar colores 29 | 30 | ########################### 31 | ## VARIABLES ## 32 | ########################### 33 | 34 | ########################### 35 | ## FUNCIONES ## 36 | ########################### 37 | 38 | # Handshaker 39 | function handshaker_instalador() { 40 | sudo git clone https://github.com/d4rkcat/HandShaker.git /opt/handshaker 41 | sudo ln -s /opt/handshaker/handshaker.sh /bin/handshaker 42 | sudo chmod 777 -R /opt/handshaker 43 | } 44 | 45 | # Wifiphisher 46 | function wifiphisher_instalador() { 47 | sudo git clone https://github.com/wifiphisher/wifiphisher.git /usr/src/wifiphisher 48 | cd /usr/src/wifiphisher 49 | sudo python setup.py install 50 | 51 | # Extra pishin Guardados en → wifiphisher/data/phishingpages 52 | # https://github.com/wifiphisher/extra-phishing-pages.git 53 | } 54 | 55 | # Airgeddon 56 | function airgeddon_instalador() { 57 | sudo git clone --depth 1 https://github.com/v1s1t0r1sh3r3/airgeddon.git /opt/airgeddon 58 | sudo ln -s /opt/airgeddon/airgeddon.sh /bin/airgeddon 59 | sudo chmod 777 -R /opt/airgeddon 60 | 61 | sudo apt install ettercap-graphical 62 | } 63 | 64 | # Aircrack-ng 65 | function aircrack_instalador() { 66 | sudo git clone https://github.com/aircrack-ng/aircrack-ng.git /usr/src/aircrack 67 | sudo cd /usr/src/aircrack 68 | sudo make 69 | sudo make install 70 | } 71 | 72 | # Wifite 73 | function wifite_instalador() { 74 | sudo git clone https://github.com/derv82/wifite.git /opt/wifite 75 | sudo ln -s /opt/wifite/wifite.py /bin/wifite 76 | sudo chmod 777 -R /opt/wifite 77 | } 78 | 79 | # Wifite 2 80 | function wifite2_instalador() { 81 | sudo git clone https://github.com/derv82/wifite2.git /opt/wifite2 82 | sudo ln -s /opt/wifite2/Wifite.py /bin/wifite2 83 | sudo chmod 777 -R /opt/wifite2 84 | } 85 | 86 | # Airscript 87 | function airscript_instalador() { 88 | sudo git clone https://github.com/Sh3llcod3/Airscript-ng.git /opt/airscript 89 | sudo ln -s /opt/airscript/airscript-ng.py /bin/airscript-ng 90 | sudo chmod 777 -R /opt/airscript 91 | #sudo python3 /opt/airscript/airscript-ng.py 92 | } 93 | 94 | # Linset 95 | function linset_instalador() { 96 | sudo git clone https://github.com/vk496/linset.git /opt/linset 97 | sudo ln -s /opt/linset/linset /bin/linset 98 | sudo chmod 777 -R /opt/linset 99 | } 100 | 101 | # Eaphammer for WPA-2 Enterprise with radius 102 | function eaphammer_instalador() { 103 | sudo git clone https://github.com/s0lst1c3/eaphammer.git /opt/eaphammer 104 | cd /opt/eaphammer 105 | sudo ./kali-setup 106 | sudo ln -s /opt/eaphammer/eaphammer /bin/eaphammer 107 | sudo chmod 777 -R /opt/eaphammer 108 | } 109 | 110 | # MITMF Men in the Middle Framework 111 | function mitmf_instalador() { 112 | sudo apt install -y python-dev python-setuptools libpcap0.8-dev libnetfilter-queue-dev libssl-dev libjpeg-dev libxml2-dev libxslt1-dev libcapstone3 libcapstone-dev libffi-dev file 113 | 114 | pip install virtualenvwrapper 115 | 116 | sudo git clone https://github.com/byt3bl33d3r/MITMf.git /opt/mitmf 117 | ln -s /opt/mitmf/mitmf.py /bin/mitmf 118 | } 119 | 120 | 121 | # Bad-Brother 122 | function badbrother_instalador() { 123 | sudo git clone https://github.com/willnaoosmit/Bad-Brother.git /opt/bad-brother 124 | #sudo ln -s /opt/bad-brother/badbrother /bin/badbrother 125 | sudo chmod 777 -R /opt/bad-brother 126 | 127 | echo '#!/bin/bash' | sudo tee /bin/badbrother 128 | echo 'cd /opt/bad-brother' | sudo tee -a /bin/badbrother 129 | echo './BadBrother.sh' | sudo tee -a /bin/badbrother 130 | 131 | sudo chmod +x /bin/badbrother 132 | } 133 | 134 | # Fluxion 135 | function fluxion_instalador() { 136 | sudo git clone --recursive https://github.com/FluxionNetwork/fluxion.git /opt/fluxion 137 | 138 | echo '#!/bin/bash' | sudo tee /bin/fluxion 139 | echo 'cd /opt/fluxion' | sudo tee -a /bin/fluxion 140 | echo './fluxion.sh' | sudo tee -a /bin/fluxion 141 | 142 | sudo chmod 777 -R /opt/fluxion 143 | sudo chmod +x /bin/fluxion 144 | } 145 | 146 | # Wirespy 147 | function wirespy_instalador() { 148 | sudo git clone https://github.com/AresS31/wirespy.git /opt/wirespy 149 | sudo ln -s /opt/wirespy/wirespy.sh /bin/wirespy 150 | sudo chmod 777 -R /opt/wirespy 151 | } 152 | 153 | # ApeX 154 | function apex_instalador() { 155 | sudo git clone https://github.com/Ethical-H4CK3R/ApeX.git /opt/apex 156 | sudo ln -s /opt/apex/apex.py /bin/apex 157 | 158 | echo '#!/bin/python' | sudo tee /bin/apex 159 | echo 'cd /opt/apex' | sudo tee -a /bin/apex 160 | echo 'sudo python apex.py' | sudo tee -a /bin/apex 161 | 162 | sudo chmod 777 -R /opt/apex 163 | } 164 | 165 | # Pixiewps 166 | function pixiewps_instalador() { 167 | echo "pixiewps no instala nada aún" 168 | #sudo mkdir /opt/pixiewps 169 | } 170 | 171 | # Geminis 172 | function geminis_instalador() { 173 | echo "gemini no instala nada aún" 174 | } 175 | 176 | # GoyScript 177 | function goyscript_instalador() { 178 | echo "goyscript no instala nada aún" 179 | } 180 | 181 | ## Hcxpcaptool 182 | hcxpcaptool_instalador() { 183 | echo "Instalando Hcxpcaptool" 184 | sudo git clone https://github.com/warecrer/Hcxpcaptool.git /usr/src/Hcxpcaptool 185 | sudo chmod 755 -R /usr/src/Hcxpcaptool 186 | cd /usr/src/Hcxpcaptool 187 | sudo make 188 | sudo make install 189 | } 190 | 191 | ## Hcxdumptool 192 | hcxdumptool_instalador() { 193 | sudo git clone https://github.com/ZerBea/hcxdumptool.git /usr/src/hcxdumptool 194 | sudo chmod 755 -R /usr/src/hcxdumptool 195 | cd /usr/src/hcxdumptool 196 | sudo make 197 | sudo make install 198 | } 199 | 200 | 201 | 202 | function instalar_todo() { 203 | handshaker_instalador 204 | #wifiphisher_instalador → Mejor desde kali linux 205 | airgeddon_instalador 206 | # aircrack_instalador → Mejor desde kali linux 207 | # wifite_instalador → Mejor desde kali linux 208 | wifite2_instalador 209 | airscript_instalador 210 | linset_instalador 211 | eaphammer_instalador 212 | # mitmf_instalador → Mejor desde kali linux 213 | badbrother_instalador 214 | fluxion_instalador 215 | apex_instalador 216 | wirespy_instalador 217 | pixiewps_instalador 218 | geminis_instalador 219 | goyscript_instalador 220 | } 221 | instalar_todo 222 | -------------------------------------------------------------------------------- /Pentesting/detectar_intrusos_red.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # -*- ENCODING: UTF-8 -*- 3 | ## 4 | ## @author Raúl Caro Pastorino 5 | ## @copyright Copyright © 2018 Raúl Caro Pastorino 6 | ## @license https://wwww.gnu.org/licenses/gpl.txt 7 | ## @email dev@fryntiz.es 8 | ## @web https://fryntiz.es 9 | ## @github https://github.com/fryntiz 10 | ## @gitlab https://gitlab.com/fryntiz 11 | ## @twitter https://twitter.com/fryntiz 12 | ## 13 | ## Guía de estilos aplicada: 14 | ## @style https://github.com/fryntiz/Bash_Style_Guide 15 | 16 | ############################ 17 | ## INSTRUCCIONES ## 18 | ############################ 19 | ## Script para detectar intrusos en una red utilizando nmap 20 | 21 | ############################ 22 | ## CONSTANTES ## 23 | ############################ 24 | AM="\033[1;33m" ## Color Amarillo 25 | RO="\033[1;31m" ## Color Rojo 26 | VE="\033[1;32m" ## Color Verde 27 | CL="\e[0m" ## Limpiar colores 28 | 29 | ########################### 30 | ## VARIABLES ## 31 | ########################### 32 | RED='' ## Dirección y máscara de red, si está vacío se pedirá después 33 | LOGRED='/tmp/detectar_intrusos.log' ## Archivo de log 34 | 35 | ########################### 36 | ## EJECUCIÓN ## 37 | ########################### 38 | 39 | if [[ ! -x '/usr/bin/nmap' ]]; then 40 | echo -e "$RO No tienes$AM nmap$RO instalado en el equipo$CL" 41 | echo -e "$VE Puedes instalarlo con:$AM sudo apt install nmap$CL" 42 | exit 1 43 | fi 44 | 45 | if [[ "$RED" = '' ]]; then 46 | echo -e "$VE Introduce la dirección de la red$CL" 47 | echo -e "$VE Si tu router es$RO 192.168.1.1$VE la dirección de la red$CL" 48 | echo -e "$VE y los bits, puede ser $RO 192.168.1.0/24$VE si es de 24 bits$CL" 49 | read -p ' → ' RED 50 | fi 51 | 52 | if [[ "$RED" != '' ]]; then 53 | nmap -sPn $RED | tee -a $LOGRED 54 | else 55 | echo -e "$RO La dirección de la red está vacía, saliendo del script$CL" 56 | exit 1 57 | fi 58 | 59 | echo -e "$RO Script completado$CL" 60 | 61 | exit 0 62 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Scripts para Bash 2 | Scripts independientes para objetivos concretos 3 | 4 | Este es un repositorio donde guardo mis scripts agrupados por funcionamiento. 5 | 6 | Estos scripts nacen en el momento que necesito resolver alguna situación que 7 | se dará más de una vez. 8 | 9 | -- 10 | 11 | ¡Puedes nutrirte de este repositorio cuanto necesites, licencia: GPLv3! 12 | 13 | -- 14 | 15 | Si ves que algún script puede mejorar, no dudes en aportar tu contribución: 16 | 17 | https://gitlab.com/raupulus/shellscript 18 | 19 | ## Arbol de Categorías 20 | Cada directorio contiene scripts relacionado dividiéndose en los siguientes directorios: 21 | 22 | - Desarrollo → Scripts para facilitar tareas en el desarrollo de aplicaciones 23 | - ActualizarRepositorios: Actualiza todos los repositorios dentre de un 24 | directorio pasado. 25 | 26 | - GestionArchivos → Manipulación y procesado por lotes de archivos. 27 | - GestionServidores → Facilita la configuración y mantenimiento de Servidores 28 | - Mini Scripts → Pequeños scripts de categoría general no definida 29 | - Pentesting → Scripts con propósitos de analizar o testear seguridad 30 | - Redes → Gestión y monitorización de red e interfaces de red 31 | - Sistema → Gestión y configuración del Sistema 32 | - Ubiquiti → Scripts para interactuar con antenas ubiquiti 33 | -------------------------------------------------------------------------------- /Redes/VerPuertosAbiertos.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ####################################### 4 | # ### Raúl Caro Pastorino ### # 5 | ## ## ## ## 6 | ### # https://github.com/fryntiz/ # ### 7 | ## ## ## ## 8 | # ### www.fryntiz.es ### # 9 | ####################################### 10 | 11 | ############################ 12 | ## Constantes Colores ## 13 | ############################ 14 | amarillo="\033[1;33m" 15 | azul="\033[1;34m" 16 | blanco="\033[1;37m" 17 | cyan="\033[1;36m" 18 | gris="\033[0;37m" 19 | magenta="\033[1;35m" 20 | rojo="\033[1;31m" 21 | verde="\033[1;32m" 22 | 23 | ############################# 24 | ## Variables Generales ## 25 | ############################# 26 | PUERTO_INICIAL=0 27 | PUERTO_FINAL=65535 28 | IP=localhost 29 | 30 | #Escanea los puertos internos de la red 31 | echo -e "Buscando puertos abiertos en modo Local" 32 | for (( i = $PUERTO_INICIAL; i<=$PUERTO_FINAL; i++)) 33 | do 34 | PUERTO="nmap -p $i -A -v $IP | grep Discovered | tr -s ' ' | cut -d ' ' -f4 | grep ^[0-9]*" 35 | x=`eval $PUERTO 2>/dev/null` 36 | y=`echo $x | cut -d '/' -f2` 37 | x=`echo $x | cut -d '/' -f1` 38 | if [ $x -eq $i 2>/dev/null ]; then 39 | echo "Puerto abierto --> $x protocolo --> $y" 40 | fi 41 | done 42 | 43 | #Estoy limitando a la primera, que es la correspondiente a eth0 44 | IP=`ifconfig | grep -e 'eth' -e 'wlan' -e 'inet ' | tr -s ' ' | cut -d ' ' -f3 | cut -d ':' -f2 | grep -e "^[0-9]*.[0-9]*.[0-9]*.[0-9]*$" | grep -v -e ^127.0.0.1$ -e ^0.0.0.0$ -e ^127.0.0.1$ -e ^255.255.255.255$ | head -n 1` 45 | 46 | #Los puertos desde fuera pueden ser distintos a los de localhost 47 | echo "Puertos desde la red" 48 | echo -e "Buscando puertos abiertos en modo Local" 49 | for (( i = $PUERTO_INICIAL; i<=$PUERTO_FINAL; i++)) 50 | do 51 | PUERTO="nmap -p $i -A -v $IP | grep Discovered | tr -s ' ' | cut -d ' ' -f4 | grep ^[0-9]*" 52 | x=`eval $PUERTO` 53 | y=`echo $x | cut -d '/' -f2` 54 | x=`echo $x | cut -d '/' -f1` 55 | if [ $x -eq $i 2>/dev/null ]; then 56 | echo "Puerto abierto --> $x protocolo --> $y" 57 | fi 58 | done 59 | 60 | 61 | ################## IDEAS DE FUTURO ######################## 62 | </dev/null para no mostrar salidas feas 64 | Contador para avisar cada 100 direcciones comprobadas 65 | Contador que almacena la cantidad de puertos abiertos 66 | Sacar el sistema operativo 67 | Sacar la dirección mac 68 | COMMENT 69 | -------------------------------------------------------------------------------- /Redes/convertir_lista_de_dominios_a_IP.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # -*- ENCODING: UFT-8 -*- 3 | 4 | # Recibe un fichero con urls y las evalúa línea por línea 5 | # para sacar las IP. Que posteriormente guarda en 6 | # el archivo resultado.txt. 7 | # 8 | # Será BORRADO el archivo resultado.txt en caso de existir. 9 | 10 | function obtener_IPs() { 11 | clear 12 | read -p 'Introduce el nombre del archivo → ' input 13 | if [ -f $input ] 14 | then 15 | echo "Resultados de $input" 16 | if [ -f 'resultado.txt' ] 17 | then 18 | rm resultado.txt 19 | fi 20 | for y in $(cat $input | cut -d'/' -f3) 21 | do 22 | resultado=$(nslookup $y | tail -n2 | head -n1 | cut -d' ' -f2) 23 | echo "$y → $resultado" 24 | echo $resultado >> resultado.txt 2>> /dev/null 25 | done 26 | fi 27 | } 28 | 29 | obtener_IPs 30 | -------------------------------------------------------------------------------- /Redes/convertir_lista_de_dominios_a_IP_mejorado.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # -*- ENCODING: UFT-8 -*- 3 | 4 | # Recibe un fichero con urls y las evalúa línea por línea 5 | # para sacar las IP. Que posteriormente guarda en 6 | # el archivo resultado.txt. 7 | # 8 | # Será BORRADO el archivo resultado.txt en caso de existir. 9 | 10 | function obtener_IPs() { 11 | clear 12 | if [ $# = 0 ] 13 | then 14 | read -p 'Introduce el nombre del archivo → ' input 15 | generar_resultado $input 16 | fi 17 | 18 | if [ -f $1 ] 19 | then 20 | generar_resultado $1 21 | else 22 | var=$(echo $1 | cut -d'/' -f3) 23 | resultado=$(nslookup $var | tail -n2 | head -n1 | cut -d' ' -f2) 24 | echo "$1 → $resultado" 25 | fi 26 | exit 27 | } 28 | 29 | function generar_resultado() { 30 | if [ -f $1 ] 31 | then 32 | if [ -f 'resultado.txt' ] 33 | then 34 | rm resultado.txt 35 | fi 36 | for y in $(cat $1 | cut -d'/' -f3) 37 | do 38 | resultado=$(nslookup $y | tail -n2 | head -n1 | cut -d' ' -f2) 39 | echo "$y → $resultado" 40 | echo $resultado >> resultado.txt 2>> /dev/null 41 | done 42 | exit 43 | fi 44 | } 45 | 46 | obtener_IPs "prueba.txt" 47 | 48 | -------------------------------------------------------------------------------- /Sistema/BackupCompleto.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # -*- ENCODING: UTF-8 -*- 3 | ## 4 | ## @author Raúl Caro Pastorino 5 | ## @copyright Copyright © 2018 Raúl Caro Pastorino 6 | ## @license https://wwww.gnu.org/licenses/gpl.txt 7 | ## @email dev@fryntiz.es 8 | ## @web https://fryntiz.es 9 | ## @github https://github.com/fryntiz 10 | ## @gitlab https://gitlab.com/fryntiz 11 | ## @twitter https://twitter.com/fryntiz 12 | ## 13 | ## Guía de estilos aplicada: 14 | ## @style https://github.com/fryntiz/Bash_Style_Guide 15 | 16 | ############################ 17 | ## INSTRUCCIONES ## 18 | ############################ 19 | ## Este script permite realizar una copia de seguridad de nuestro sistema completo 20 | ## El resultado será un archivo comprimido y empaquetado en .tar.bz2 21 | 22 | ############################ 23 | ## CONSTANTES ## 24 | ############################ 25 | AM="\033[1;33m" ## Color Amarillo 26 | RO="\033[1;31m" ## Color Rojo 27 | VE="\033[1;32m" ## Color Verde 28 | CL="\e[0m" ## Limpiar colores 29 | 30 | ########################### 31 | ## VARIABLES ## 32 | ########################### 33 | 34 | ########################### 35 | ## FUNCIONES ## 36 | ########################### 37 | 38 | ############################ 39 | ## VARIABLES ## 40 | ############################ 41 | USERNAME="$(whoami)" 42 | NOMBRE_BACKUP="Backup_$(date +%Y%m%d).tar.bz2" 43 | 44 | # Nombres de directorios excluidos. Se comienza desde la raíz (/) 45 | DIR_EXCLUIDOS=("proc" "mnt" "sys" "media" "tmp" "var/log" ".cache" "root/.cache" "root/.local/share/Trash") 46 | 47 | # Archivos o directorios excluidos mientras coincida el nombre 48 | ARCHIVOS_EXCLUIDOS=("Backup_*" ".cache" "lost+found" "Trash" "Cache" ".trash" ".Trash-1000" ".Trash-1001" ".thumbnails" "TEMPORAL" "temporal" "tmp") 49 | 50 | TMP="" 51 | RUTA_DESTINO="" 52 | 53 | clear 54 | 55 | # Comprobar que está ejecutándose como root 56 | if [ $USERNAME != "root" ]; then 57 | echo "Un backup para la raíz del sistema requiere ser usuario \"root\"" 58 | exit 1 59 | fi 2> /dev/null 60 | 61 | read -p "Introduce donde guardar el Backup --> " RUTA_DESTINO 62 | 63 | # Rellenar lista de exclusiones para archivos 64 | for i in ${ARCHIVOS_EXCLUIDOS[*]} 65 | do 66 | TMP="$TMP --exclude=$i" 67 | done 68 | 69 | # Añadir valores a una cadena 70 | ARCHIVOS_EXCLUIDOS=$TMP 71 | TMP="" # Resetea la variable temporal 72 | 73 | # Bucle para añadir cada directorio excluido de cada usuario 74 | # Rellenar lista de exclusiones para directorios 75 | for i in ${DIR_EXCLUIDOS[*]} 76 | do 77 | TMP="$TMP --exclude=/$i" 78 | done 79 | 80 | # Añade los valores de TMP de nuevo a DIR_EXCLUIDOS en forma de cadena bien formada 81 | DIR_EXCLUIDOS=$TMP 82 | echo "Los directorios excluidos son: $DIR_EXCLUIDOS" 83 | echo "Los archivos excluidos son: $ARCHIVOS_EXCLUIDOS" 84 | echo "" 85 | echo "El comando a ejecutar es el siguiente:" 86 | echo "tar -cvpjf $RUTA_DESTINO/$NOMBRE_BACKUP $DIR_EXCLUIDOS $ARCHIVOS_EXCLUIDOS /" 87 | echo "" 88 | read -p "Pulsa Intro para Iniciar" 89 | 90 | # Empaquetar en tar.bz2 91 | tar -cvpjf $RUTA_DESTINO/$NOMBRE_BACKUP $DIR_EXCLUIDOS $ARCHIVOS_EXCLUIDOS / 92 | 93 | exit 0 94 | -------------------------------------------------------------------------------- /Sistema/BackupHome.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # -*- ENCODING: UTF-8 -*- 3 | ## 4 | ## @author Raúl Caro Pastorino 5 | ## @copyright Copyright © 2018 Raúl Caro Pastorino 6 | ## @license https://wwww.gnu.org/licenses/gpl.txt 7 | ## @email dev@fryntiz.es 8 | ## @web https://fryntiz.es 9 | ## @github https://github.com/fryntiz 10 | ## @gitlab https://gitlab.com/fryntiz 11 | ## @twitter https://twitter.com/fryntiz 12 | ## 13 | ## Guía de estilos aplicada: 14 | ## @style https://github.com/fryntiz/Bash_Style_Guide 15 | 16 | ############################ 17 | ## INSTRUCCIONES ## 18 | ############################ 19 | ## Este script permite realizar una copia de seguridad de nuestro directorio home 20 | ## 21 | ## Este Backup resultará en un archivo cifrado para cada usuario 22 | ## 23 | ## Al tener una copia de seguirdad para cada usuario es más cómodo recuperar 24 | ## un dato 25 | ## para ese usuario sin que tenga que ver los datos del resto de usuarios 26 | ## 27 | ## Al empaquetar primero en TAR se mantienen permisos y privilegios de 28 | ## usuario:grupo 29 | ## 30 | ## Al cifrar en 7z se logra impedir que se vea que contiene y por su puesto 31 | ## el acceso no autorizado 32 | 33 | # El funcionamiento del script comienza por introducir donde guardar el backup 34 | # se recomienda guardar el backup en almacenamiento externo a los directorios de usuario (HDD-USB por ejemplo) 35 | # Después se pedirá introducir 2 veces la contraseña de cifrado 36 | 37 | ############################ 38 | ## CONSTANTES ## 39 | ############################ 40 | AM="\033[1;33m" ## Color Amarillo 41 | RO="\033[1;31m" ## Color Rojo 42 | VE="\033[1;32m" ## Color Verde 43 | CL="\e[0m" ## Limpiar colores 44 | 45 | ########################### 46 | ## VARIABLES ## 47 | ########################### 48 | USERNAME="$(whoami)" 49 | USUARIOS=`ls /home` 50 | NOMBRE_BACKUP="Backup_HOME-$(date +%Y%m%d).tar" 51 | 52 | # Nombres de directorios excluidos dentro del home, ruta relativa dentro del home de usuario 53 | DIR_EXCLUIDOS=("0-MOUNT" "1_GIT" "1-MOUNT" "2_Bases_de_Datos" "3_Librerías" "4_Programas" "5_Entornos_de_Trabajo" "6_Máquinas_Virtuales" "7_Mis_Proyectos" "8_Backups" "9_Dropbox" "10_GoogleDrive" "11_CloudStation" "12_Pentesting" "13_Compartido_Smartphone" "14_CloudStation_Compartido" "Descargas" "NHCK" "PlayOnLinux's\ virtual\ drives" "RastroArtesanal" "repositorio" "TEMPORAL" "temporal" "tmp" "Vídeos" ".cache" ".local/share/Trash" ".PlayOnLinux" ".thumbnails") 54 | 55 | # Archivos o directorios excluidos mientras coincida el nombre, estando en cualquier ruta del usuario 56 | ARCHIVOS_EXCLUIDOS=("Backup_HOME-*" ".cache" "cache" "lost+found" "Trash" "Cache" ".trash" "trash" ".Trash-1000") 57 | 58 | PASSWORD="" 59 | TMP="" 60 | RUTA_DESTINO="" 61 | ########################### 62 | ## FUNCIONES ## 63 | ########################### 64 | clear 65 | 66 | read -p "Introduce donde guardar el Backup --> " RUTA_DESTINO 67 | 68 | # Pedir contraseña de cifrado 69 | echo "Introduce la contraseña de cifrado con números y letras" 70 | read -p "Contraseña para cifrar --> " PASSWORD 71 | read -p "Repite la Contraseña --> " TMP 72 | 73 | # Comprobar que PASSWORD y TMP son iguales 74 | if [ $PASSWORD != $TMP ]; then 75 | echo "Las contraseñas introducidas no coinciden" 76 | exit 1 77 | fi 78 | 79 | clear 80 | 81 | TMP="" # Resetea la variable temporal 82 | 83 | # Rellenar lista de exclusiones para archivos 84 | for i in ${ARCHIVOS_EXCLUIDOS[*]} 85 | do 86 | TMP="$TMP --exclude=\"$i\"" 87 | done 88 | 89 | # Añadir valores a una cadena 90 | ARCHIVOS_EXCLUIDOS=$TMP 91 | TMP="" # Resetea la variable temporal 92 | 93 | # Bucle para añadir cada directorio excluido de cada usuario 94 | for SOY_EL_USUARIO in ${USUARIOS[*]}; do 95 | # Rellenar lista de exclusiones para directorios 96 | for i in ${DIR_EXCLUIDOS[*]} 97 | do 98 | TMP="$TMP --exclude=\"./$i\"" 99 | done 100 | 101 | # Añade los valores de TMP de nuevo a DIR_EXCLUIDOS en forma de cadena bien formada 102 | DIR_EXCLUIDOS=$TMP 103 | TMP="" # Resetea la variable temporal 104 | 105 | echo $DIR_EXCLUIDOS 106 | read 107 | 108 | cd "/home/$SOY_EL_USUARIO" 109 | 110 | # Empaquetar en tar 111 | tar -cvf $RUTA_DESTINO/$SOY_EL_USUARIO$NOMBRE_BACKUP -C /home/$SOY_EL_USUARIO . $DIR_EXCLUIDOS $ARCHIVOS_EXCLUIDOS 112 | 113 | # Comprimir y cifrar en 7z (-mhe=on activa cifrado de encabezado, más seguridad) 114 | 7z a $RUTA_DESTINO/$SOY_EL_USUARIO$NOMBRE_BACKUP.7z -mhe=on -p$PASSWORD $RUTA_DESTINO/$SOY_EL_USUARIO$NOMBRE_BACKUP 115 | 116 | # Borrar empaquetado TAR 117 | rm $RUTA_DESTINO/$SOY_EL_USUARIO$NOMBRE_BACKUP 118 | done 119 | 120 | exit 0 121 | -------------------------------------------------------------------------------- /Sistema/BackupRaíz.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # -*- ENCODING: UTF-8 -*- 3 | ## 4 | ## @author Raúl Caro Pastorino 5 | ## @copyright Copyright © 2018 Raúl Caro Pastorino 6 | ## @license https://wwww.gnu.org/licenses/gpl.txt 7 | ## @email dev@fryntiz.es 8 | ## @web https://fryntiz.es 9 | ## @github https://github.com/fryntiz 10 | ## @gitlab https://gitlab.com/fryntiz 11 | ## @twitter https://twitter.com/fryntiz 12 | ## 13 | ## Guía de estilos aplicada: 14 | ## @style https://github.com/fryntiz/Bash_Style_Guide 15 | 16 | ############################ 17 | ## INSTRUCCIONES ## 18 | ############################ 19 | ## El objetivo de este script es crear una copia de seguridad de todo el sistema 20 | ## menos del directorio home que contiene a los usuarios ya que es común que se 21 | ## realice más a menudo el backup de usuarios (o al revés) además este script 22 | ## empaqueta primero en formato "tar" y luego comprime y cifra en formato "7z" 23 | ## garantizando privilegios, permisos de usuario y grupo además de garantizar 24 | ## una enorme seguridad en el archivo final resultante cifrado. 25 | ## 26 | ## Para recuperar un backup previo --> 7z x Backup-*.tar.7z && tar xf 27 | ## Backup-*.tar 28 | ## Es necesario crear directorios omitidos: 29 | ## sudo mkdir /home /media /mnt /proc /run/log /run/media /sys /tmp /usr/src 30 | ## /var/log /var/tmp 31 | ## sudo chmod 755 /tmp && sudo chmod 777 -R /tmp/* 32 | 33 | ############################ 34 | ## CONSTANTES ## 35 | ############################ 36 | AM="\033[1;33m" ## Color Amarillo 37 | RO="\033[1;31m" ## Color Rojo 38 | VE="\033[1;32m" ## Color Verde 39 | CL="\e[0m" ## Limpiar colores 40 | 41 | ########################### 42 | ## VARIABLES ## 43 | ########################### 44 | USERNAME="$(whoami)" 45 | NOMBRE_BACKUP="Backup_RAIZ-$(date +%Y%m%d).tar" 46 | DIR_EXCLUIDOS=("/Backup" "/home" "/media" "/mnt" "/proc" "/run/log" "/run/media" "/sys" "/tmp" "/usr/src" "/var/log" "/var/tmp" "/var/cache/apt-build") 47 | ARCHIVOS_EXCLUIDOS=("Backup*" ".cache" "cache" "lost+found" "Trash" "Cache" ".trash" "trash") 48 | PASSWORD="none" 49 | TMP="" 50 | RUTA_DESTINO="" 51 | 52 | ########################### 53 | ## FUNCIONES ## 54 | ########################### 55 | clear 56 | 57 | read -p "Introduce donde guardar el Backup --> " RUTA_DESTINO 58 | 59 | # Comprobar que está ejecutándose como root 60 | if [ $USERNAME != "root" ]; then 61 | echo "Un backup para la raíz del sistema requiere ser usuario \"root\"" 62 | exit 1 63 | fi 2> /dev/null 64 | 65 | # Pedir contraseña de cifrado 66 | echo "Introduce la contraseña de cifrado con números y letras" 67 | read -p "Contraseña para cifrar --> " PASSWORD 68 | read -p "Repite la Contraseña --> " TMP 69 | 70 | # Comprobar que PASSWORD y TMP son iguales 71 | if [ $PASSWORD != $TMP ]; then 72 | echo "Las contraseñas introducidas no coinciden" 73 | exit 1 74 | fi 75 | 76 | TMP="" # Resetea la variable temporal 77 | 78 | # Rellenar lista de exclusiones para directorios 79 | for i in ${DIR_EXCLUIDOS[*]} 80 | do 81 | TMP="$TMP --exclude=$i" 82 | done 83 | 84 | # Añade los valores de TMP de nuevo a DIR_EXCLUIDOS en forma de cadena bien formada 85 | DIR_EXCLUIDOS=$TMP 86 | TMP="" # Resetea la variable temporal 87 | 88 | # Rellenar lista de exclusiones para archivos 89 | for i in ${ARCHIVOS_EXCLUIDOS[*]} 90 | do 91 | TMP="$TMP --exclude=\"$i\"" 92 | done 93 | 94 | # Añadir valores a una cadena 95 | ARCHIVOS_EXCLUIDOS=$TMP 96 | TMP="" # Resetea la variable temporal 97 | 98 | echo 99 | echo "Archivos --> $ARCHIVOS_EXCLUIDOS" 100 | echo 101 | echo "Directorios --> $DIR_EXCLUIDOS" 102 | echo 103 | 104 | echo "Comenzará en cuanto pulses intro" 105 | read TMP 106 | 107 | # Empaquetar en tar guardándolo dentro de /tmp 108 | tar -cpf $RUTA_DESTINO/$NOMBRE_BACKUP -C /* $DIR_EXCLUIDOS $ARCHIVOS_EXCLUIDOS 109 | 110 | # Comprimir y cifrar en 7z (-mhe=on activa cifrado de encabezado, más seguridad) 111 | 7z a $RUTA_DESTINO/$NOMBRE_BACKUP.7z -mhe=on -p$PASSWORD $RUTA_DESTINO/$NOMBRE_BACKUP 112 | 113 | # Borrar empaquetado TAR de /tmp 114 | rm $RUTA_DESTINO/$NOMBRE_BACKUP 115 | 116 | exit 0 117 | -------------------------------------------------------------------------------- /Sistema/ProgramarApagado.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # -*- ENCODING: UTF-8 -*- 3 | ## 4 | ## @author Raúl Caro Pastorino 5 | ## @copyright Copyright © 2018 Raúl Caro Pastorino 6 | ## @license https://wwww.gnu.org/licenses/gpl.txt 7 | ## @email dev@fryntiz.es 8 | ## @web https://fryntiz.es 9 | ## @github https://github.com/fryntiz 10 | ## @gitlab https://gitlab.com/fryntiz 11 | ## @twitter https://twitter.com/fryntiz 12 | ## 13 | ## Guía de estilos aplicada: 14 | ## @style https://github.com/fryntiz/Bash_Style_Guide 15 | 16 | ############################ 17 | ## INSTRUCCIONES ## 18 | ############################ 19 | ## 20 | 21 | ############################ 22 | ## CONSTANTES ## 23 | ############################ 24 | AM="\033[1;33m" ## Color Amarillo 25 | RO="\033[1;31m" ## Color Rojo 26 | VE="\033[1;32m" ## Color Verde 27 | CL="\e[0m" ## Limpiar colores 28 | 29 | ########################### 30 | ## VARIABLES ## 31 | ########################### 32 | 33 | ########################### 34 | ## FUNCIONES ## 35 | ########################### 36 | # Menu 37 | while : 38 | do 39 | clear 40 | 41 | echo "" 42 | echo -e " $amarillo Programar Apagado o Reinicio $rojo $version" 43 | echo "" 44 | echo -e " $rojo 1) $verde Apagar el equipo a una hora concreta" 45 | echo -e " $rojo 2) $verde Reiniciar el equipo a una hora concreta" 46 | echo -e " $rojo 3) $verde Apagar el equipo en XX minutos" 47 | echo -e " $rojo 4) $verde Reiniciar el equipo en XX minutos" 48 | echo -e " $rojo 5) $verde Cancelar cualquier apagado/reinicio que esté programado" 49 | echo -e " $rojo 0) $verde Volver atrás$gris" 50 | echo "" 51 | 52 | read -p " → " OPCION 53 | case $OPCION in 54 | 55 | 1) # Apagar el equipo a una hora concreta 56 | clear 57 | read -p "Introduce la hora de apagado (HH:MM) → " $hora 58 | sudo shutdown -h $hora 59 | read -p "Pulsa una tecla para continuar" foo 60 | continue;; 61 | 62 | 2) # Reiniciar el equipo a una hora concreta 63 | clear 64 | read -p "Introduce la hora de apagado (HH:MM) → " $hora 65 | sudo shutdown -r $hora 66 | read -p "Pulsa una tecla para continuar" foo 67 | continue;; 68 | 69 | 3) # Apagar el equipo en XX minutos 70 | clear 71 | read -p "Introduce la hora de apagado (HH:MM) → " $minutos 72 | sudo shutdown -h $minutos 73 | read -p "Pulsa una tecla para continuar" foo 74 | continue;; 75 | 76 | 4) # Reiniciar el equipo en XX minutos 77 | clear 78 | read -p "Introduce la hora de apagado (HH:MM) → " $minutos 79 | sudo shutdown -r $minutos 80 | read -p "Pulsa una tecla para continuar" foo 81 | continue;; 82 | 83 | 5) # Cancelar cualquier apagado/reinicio que esté programado 84 | clear 85 | sudo shutdown -c 86 | read -p "Pulsa una tecla para continuar" foo 87 | continue;; 88 | 89 | 0) # Volver Atrás 90 | clear 91 | break;; 92 | 93 | *) # Cualquier otra opción que no sea las anteriores 94 | clear 95 | echo "" 96 | echo -e "$rojo La opción elegida no es válida$amarillo introduce otra" 97 | read -p "Pulsa una tecla para continuar" foo;; 98 | esac 99 | done 100 | -------------------------------------------------------------------------------- /Sistema/chroot.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # -*- ENCODING: UTF-8 -*- 3 | ## 4 | ## @author Raúl Caro Pastorino 5 | ## @copyright Copyright © 2018 Raúl Caro Pastorino 6 | ## @license https://wwww.gnu.org/licenses/gpl.txt 7 | ## @email tecnico@fryntiz.es 8 | ## @web www.fryntiz.es 9 | ## @github https://github.com/fryntiz 10 | ## @gitlab https://gitlab.com/fryntiz 11 | ## @twitter https://twitter.com/fryntiz 12 | ## 13 | ## Guía de estilos aplicada: 14 | ## @style https://github.com/fryntiz/Bash_Style_Guide 15 | 16 | ############################ 17 | ## INSTRUCCIONES ## 18 | ############################ 19 | ## Preparar jaula y puntos de montajes, este script contempla que siempre 20 | ## será una partición de que se compone el sistema 21 | ## 22 | ## Si recibe "-d" o "--desmontar" se desmonta toda la jaula 23 | 24 | ############################ 25 | ## CONSTANTES ## 26 | ############################ 27 | WORKSCRIPT=$PWD ## Directorio principal del script 28 | USER=$(whoami) ## Usuario que ejecuta el script 29 | VERSION='0.0.1' ## Primera versión del script 30 | LOGERROR='/tmp/chrooterrores.log' ## Archivo donde almacenar errores 31 | 32 | ########################### 33 | ## VARIABLES ## 34 | ########################### 35 | ## Punto de montaje, directorio en el que montar la jaula 36 | JAULA='/mnt' 37 | 38 | ## Partición con el sistema para / 39 | RAIZ='/dev/sda2' 40 | 41 | ## 42 | ## Construye la jaula con los datos dados 43 | ## 44 | montarJaula() { 45 | sudo umount $RAIZ 46 | 47 | ## Montar estructura de la jaula 48 | sudo mount $RAIZ $JAULA 49 | } 50 | 51 | ## Enjaular en la ruta indicada 52 | enjaular() { 53 | if [[ $JAULA = '' ]]; then 54 | return 55 | fi 56 | 57 | sudo mount -t proc proc ${JAULA}/proc/ 58 | sudo mount -t sysfs sys ${JAULA}/sys/ 59 | sudo mount -o bind /dev/ ${JAULA}/dev 60 | sudo mount -t devpts pts ${JAULA}/dev/pts 61 | 62 | sudo chroot $JAULA /bin/bash 63 | #export PS1="Enjaulado → (chroot) $PS1" 64 | } 65 | 66 | ## 67 | ## Desmonta la jaula 68 | ## 69 | desmontar() { 70 | sudo umount ${JAULA}/proc/ 71 | sudo umount ${JAULA}/sys/ 72 | sudo umount ${JAULA}/dev/pts 73 | sudo umount ${JAULA}/dev 74 | sudo umount ${JAULA} 75 | } 76 | 77 | if [[ "$1" = '-d' ]] || [[ "$1" = '--desmontar' ]]; then 78 | desmontar 79 | exit 0 80 | else 81 | montarJaula 82 | enjaular 83 | exit 0 84 | fi 85 | 86 | exit 1 87 | -------------------------------------------------------------------------------- /Sistema/chrootCifrado.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # -*- ENCODING: UTF-8 -*- 3 | ## 4 | ## @author Raúl Caro Pastorino 5 | ## @copyright Copyright © 2018 Raúl Caro Pastorino 6 | ## @license https://wwww.gnu.org/licenses/gpl.txt 7 | ## @email tecnico@fryntiz.es 8 | ## @web www.fryntiz.es 9 | ## @github https://github.com/fryntiz 10 | ## @gitlab https://gitlab.com/fryntiz 11 | ## @twitter https://twitter.com/fryntiz 12 | ## 13 | ## Guía de estilos aplicada: 14 | ## @style https://github.com/fryntiz/Bash_Style_Guide 15 | 16 | ############################ 17 | ## INSTRUCCIONES ## 18 | ############################ 19 | ## Preparar jaula y puntos de montajes, este script contempla que siempre 20 | ## está cifrada la partición de raíz y siempre hay 2 particiones: 21 | ## boot y raíz 22 | ## 23 | ## Si recibe "-d" o "--desmontar" se desmonta toda la jaula 24 | 25 | ############################ 26 | ## CONSTANTES ## 27 | ############################ 28 | WORKSCRIPT=$PWD ## Directorio principal del script 29 | USER=$(whoami) ## Usuario que ejecuta el script 30 | VERSION='0.0.1' ## Primera versión del script 31 | LOGERROR='/tmp/chrooterrores.log' ## Archivo donde almacenar errores 32 | 33 | ########################### 34 | ## VARIABLES ## 35 | ########################### 36 | ## Punto de montaje, directorio dentro de /mnt 37 | JAULA='/mnt/Fedora' 38 | 39 | ## Partición con el arranque para /boot 40 | BOOT='/dev/sda1' 41 | 42 | ## Partición con el sistema para / 43 | RAIZ='/dev/sda2' 44 | 45 | ## Nombre de la partición cifrada 46 | LUKSNAME='FEDORA' 47 | 48 | ## Nombre que da luks por defecto al automontar partición cifrada 49 | LUKS='luks-xxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx' 50 | 51 | ## 52 | ## Construye la jaula con los datos dados 53 | ## 54 | montarJaula() { 55 | ## Desmonta posibles montajes 56 | sudo umount /dev/mapper/$LUKS 57 | sudo umount $BOOT 58 | 59 | ## Cierra Cifrado 60 | sudo cryptsetup luksClose /dev/mapper/$LUKS 61 | 62 | ## Abre Cifrado 63 | sudo cryptsetup open --type luks $RAIZ $LUKSNAME 64 | 65 | ## Montar estructura de la jaula 66 | sudo mount /dev/mapper/${LUKSNAME} $JAULA 67 | sudo mount $BOOT ${JAULA}/boot 68 | } 69 | 70 | ## Enjaular en la ruta indicada 71 | enjaular() { 72 | if [[ $JAULA = '' ]]; then 73 | return 74 | fi 75 | 76 | sudo mount -t proc proc ${JAULA}/proc/ 77 | sudo mount -t sysfs sys ${JAULA}/sys/ 78 | sudo mount -o bind /dev/ ${JAULA}/dev 79 | sudo mount -t devpts pts ${JAULA}/dev/pts 80 | 81 | sudo chroot $JAULA /bin/bash 82 | #export PS1="Enjaulado → (chroot) $PS1" 83 | } 84 | 85 | ## 86 | ## Desmonta la jaula 87 | ## 88 | desmontar() { 89 | sudo umount ${JAULA}/proc/ 90 | sudo umount ${JAULA}/sys/ 91 | sudo umount ${JAULA}/dev/pts 92 | sudo umount ${JAULA}/dev 93 | sudo umount ${JAULA}/boot 94 | sudo umount ${JAULA} 95 | } 96 | 97 | if [[ "$1" = '-d' ]] || [[ "$1" = '--desmontar' ]]; then 98 | desmontar 99 | exit 0 100 | else 101 | montarJaula 102 | enjaular 103 | exit 0 104 | fi 105 | 106 | exit 1 107 | -------------------------------------------------------------------------------- /Ubiquiti/README.md: -------------------------------------------------------------------------------- 1 | #Configuración 2 | Para que responda correctamente se ha de cambiar el archivo ip.config añadiendo la IP correspondiente a tu dispositivo ubiquiti -------------------------------------------------------------------------------- /Ubiquiti/apagar.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # -*- ENCODING: UTF-8 -*- 3 | ## 4 | ## @author Raúl Caro Pastorino 5 | ## @copyright Copyright © 2018 Raúl Caro Pastorino 6 | ## @license https://wwww.gnu.org/licenses/gpl.txt 7 | ## @email dev@fryntiz.es 8 | ## @web https://fryntiz.es 9 | ## @github https://github.com/fryntiz 10 | ## @gitlab https://gitlab.com/fryntiz 11 | ## @twitter https://twitter.com/fryntiz 12 | ## 13 | ## Guía de estilos aplicada: 14 | ## @style https://github.com/fryntiz/Bash_Style_Guide 15 | 16 | ############################ 17 | ## INSTRUCCIONES ## 18 | ############################ 19 | ## 20 | 21 | ############################ 22 | ## CONSTANTES ## 23 | ############################ 24 | AM="\033[1;33m" ## Color Amarillo 25 | RO="\033[1;31m" ## Color Rojo 26 | VE="\033[1;32m" ## Color Verde 27 | CL="\e[0m" ## Limpiar colores 28 | 29 | ########################### 30 | ## VARIABLES ## 31 | ########################### 32 | IP=$(cat ./ip.config) 33 | ubiquiti="root@$IP" 34 | 35 | ########################### 36 | ## FUNCIONES ## 37 | ########################### 38 | clear 39 | 40 | 41 | echo -e "$RO Conectando para apagar el dispositivo$AM UBIQUITI" 42 | echo -e "$RO Apagando:$CL" 43 | sleep 1 44 | echo -e "$(ssh $ubiquiti halt) $CL" 45 | echo "" 46 | clear 47 | echo -e "$RO Conectando para apagar el dispositivo$AM UBIQUITI" 48 | echo -e "$AM APAGANDO" 49 | sleep 1 50 | clear 51 | echo -e "$RO Conectando para apagar el dispositivo$AM UBIQUITI" 52 | echo -e "$AM APAGANDO." 53 | sleep 1 54 | clear 55 | echo -e "$RO Conectando para apagar el dispositivo$AM UBIQUITI" 56 | echo -e "$AM APAGANDO..$CL" 57 | sleep 1 58 | clear 59 | echo -e "$RO Conectando para apagar el dispositivo$AM UBIQUITI" 60 | echo -e "$AM APAGANDO...$CL" 61 | sleep 1 62 | -------------------------------------------------------------------------------- /Ubiquiti/encender.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # -*- ENCODING: UTF-8 -*- 3 | ## 4 | ## @author Raúl Caro Pastorino 5 | ## @copyright Copyright © 2018 Raúl Caro Pastorino 6 | ## @license https://wwww.gnu.org/licenses/gpl.txt 7 | ## @email dev@fryntiz.es 8 | ## @web https://fryntiz.es 9 | ## @github https://github.com/fryntiz 10 | ## @gitlab https://gitlab.com/fryntiz 11 | ## @twitter https://twitter.com/fryntiz 12 | ## 13 | ## Guía de estilos aplicada: 14 | ## @style https://github.com/fryntiz/Bash_Style_Guide 15 | 16 | ############################ 17 | ## INSTRUCCIONES ## 18 | ############################ 19 | ## 20 | 21 | ############################ 22 | ## CONSTANTES ## 23 | ############################ 24 | AM="\033[1;33m" ## Color Amarillo 25 | RO="\033[1;31m" ## Color Rojo 26 | VE="\033[1;32m" ## Color Verde 27 | CL="\e[0m" ## Limpiar colores 28 | 29 | ########################### 30 | ## VARIABLES ## 31 | ########################### 32 | 33 | ########################### 34 | ## FUNCIONES ## 35 | ########################### 36 | 37 | #COMPROBAR COMANDO PARA EL WOL 38 | #wakeonlan -p7 -i 192.168.0.252 68:72:51:27:36:F1 39 | #wakeonlan -p9 -i 192.168.0.252 68:72:51:27:36:F1 40 | -------------------------------------------------------------------------------- /Ubiquiti/ip.config: -------------------------------------------------------------------------------- 1 | 192.168.1.252 2 | -------------------------------------------------------------------------------- /Ubiquiti/menu.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # -*- ENCODING: UTF-8 -*- 3 | ## 4 | ## @author Raúl Caro Pastorino 5 | ## @copyright Copyright © 2018 Raúl Caro Pastorino 6 | ## @license https://wwww.gnu.org/licenses/gpl.txt 7 | ## @email dev@fryntiz.es 8 | ## @web https://fryntiz.es 9 | ## @github https://github.com/fryntiz 10 | ## @gitlab https://gitlab.com/fryntiz 11 | ## @twitter https://twitter.com/fryntiz 12 | ## 13 | ## Guía de estilos aplicada: 14 | ## @style https://github.com/fryntiz/Bash_Style_Guide 15 | 16 | ############################ 17 | ## INSTRUCCIONES ## 18 | ############################ 19 | ## 20 | 21 | ############################ 22 | ## CONSTANTES ## 23 | ############################ 24 | AM="\033[1;33m" ## Color Amarillo 25 | RO="\033[1;31m" ## Color Rojo 26 | VE="\033[1;32m" ## Color Verde 27 | CL="\e[0m" ## Limpiar colores 28 | 29 | WORKSCRIPT=$PWD ## Directorio principal del script 30 | USER=$(whoami) ## Usuario que ejecuta el script 31 | VERSION='0.8.2' ## Versión en desarrollo 32 | LOGERROR="$WORKSCRIPT/errores.log" ## Archivo donde almacenar errores 33 | DEBUG=false ## Establece si está el script en modo depuración 34 | ########################### 35 | ## VARIABLES ## 36 | ########################### 37 | 38 | ########################### 39 | ## FUNCIONES ## 40 | ########################### 41 | function Ubiquiti_menu() { 42 | echo -e "$RO Menú principal de Ubiquiti$CL" 43 | sleep 1s 44 | #cd $WORKSCRIPT/Ubiquiti || exit 1 45 | 46 | while true : 47 | do 48 | echo "" 49 | echo -e "$RO <1>$VE Establecer IP sobre la cual actuar$CL" 50 | echo -e "$RO <2>$VE Apagar$CL" 51 | echo -e "$RO <3>$VE Encender$CL" 52 | echo -e "$RO <4>$VE Ping$CL" 53 | echo -e "$RO <5>$VE Redes Disponibles$CL" 54 | echo -e "$RO <6>$VE Reiniciar$CL" 55 | echo -e "$RO <0>$VE Volver$CL" 56 | echo "" 57 | 58 | 59 | read -p "Opción elegida + [ENTER]: " ubiquiti_opcion 60 | case $ubiquiti_opcion in 61 | 1) echo -e "$AM Inserta la IP de la antena Ubiquiti:$CL" 62 | read ip_ubiquiti 63 | echo $ip_ubiquiti > $WORKSCRIPT/Ubiquiti/ip.config;; 64 | 2) sh apagar.sh&;; 65 | 3) sh $WORKSCRIPT/Ubiquiti/encender.sh&;; 66 | 4) sh ping.sh;; 67 | 5) sh $WORKSCRIPT/Ubiquiti/redesDisponibles.sh&;; 68 | 6) sh $WORKSCRIPT/Ubiquiti/reiniciar.sh&;; 69 | 0) break;; 70 | *) echo -e "$AM Opción inválida elegida";; 71 | esac 72 | done 73 | } 74 | -------------------------------------------------------------------------------- /Ubiquiti/ping.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # -*- ENCODING: UTF-8 -*- 3 | ## 4 | ## @author Raúl Caro Pastorino 5 | ## @copyright Copyright © 2018 Raúl Caro Pastorino 6 | ## @license https://wwww.gnu.org/licenses/gpl.txt 7 | ## @email dev@fryntiz.es 8 | ## @web https://fryntiz.es 9 | ## @github https://github.com/fryntiz 10 | ## @gitlab https://gitlab.com/fryntiz 11 | ## @twitter https://twitter.com/fryntiz 12 | ## 13 | ## Guía de estilos aplicada: 14 | ## @style https://github.com/fryntiz/Bash_Style_Guide 15 | 16 | ############################ 17 | ## INSTRUCCIONES ## 18 | ############################ 19 | ## 20 | 21 | ############################ 22 | ## CONSTANTES ## 23 | ############################ 24 | AM="\033[1;33m" ## Color Amarillo 25 | RO="\033[1;31m" ## Color Rojo 26 | VE="\033[1;32m" ## Color Verde 27 | CL="\e[0m" ## Limpiar colores 28 | 29 | ########################### 30 | ## VARIABLES ## 31 | ########################### 32 | IP=$(cat ./ip.config) 33 | PING="ping -q -c12 $IP" 34 | FILTRO="grep packets" 35 | 36 | ########################### 37 | ## FUNCIONES ## 38 | ########################### 39 | clear 40 | 41 | echo -e "$RO La duración de esta prueba es aproximadamente$AM 10$RO segundos" 42 | echo -e "$RO Comenzando prueba:$CL" 43 | sleep 1 44 | echo -e "$AM $($PING | $FILTRO) $CL" 45 | echo "" 46 | -------------------------------------------------------------------------------- /Ubiquiti/redesDisponibles.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # -*- ENCODING: UTF-8 -*- 3 | ## 4 | ## @author Raúl Caro Pastorino 5 | ## @copyright Copyright © 2018 Raúl Caro Pastorino 6 | ## @license https://wwww.gnu.org/licenses/gpl.txt 7 | ## @email dev@fryntiz.es 8 | ## @web https://fryntiz.es 9 | ## @github https://github.com/fryntiz 10 | ## @gitlab https://gitlab.com/fryntiz 11 | ## @twitter https://twitter.com/fryntiz 12 | ## 13 | ## Guía de estilos aplicada: 14 | ## @style https://github.com/fryntiz/Bash_Style_Guide 15 | 16 | ############################ 17 | ## INSTRUCCIONES ## 18 | ############################ 19 | ## 20 | 21 | ############################ 22 | ## CONSTANTES ## 23 | ############################ 24 | AM="\033[1;33m" ## Color Amarillo 25 | RO="\033[1;31m" ## Color Rojo 26 | VE="\033[1;32m" ## Color Verde 27 | CL="\e[0m" ## Limpiar colores 28 | 29 | ########################### 30 | ## VARIABLES ## 31 | ########################### 32 | IP=$(cat ./ip.config) 33 | ubiquiti="root@$IP" 34 | contarRedes="ssh $ubiquiti iwlist ath0 scanning | grep -c ESSID" 35 | listarRedes="ssh $ubiquiti iwlist ath0 scanning | grep -oE '\".*'" 36 | 37 | ########################### 38 | ## FUNCIONES ## 39 | ########################### 40 | clear 41 | 42 | echo -e "$RO Conectando a la IP:$AM $IP" 43 | echo -e "$RO Comenzando escaneo de redes$CL" 44 | sleep 1 45 | echo -e "$RO Se han encontrado:$AM $($contarRedes)$RO redes$CL" 46 | sleep 2 47 | echo -e "$RO Redes listadas a continuación:$CL" 48 | echo -e "$AM $($listarRedes)$CL" 49 | -------------------------------------------------------------------------------- /Ubiquiti/reiniciar.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # -*- ENCODING: UTF-8 -*- 3 | ## 4 | ## @author Raúl Caro Pastorino 5 | ## @copyright Copyright © 2018 Raúl Caro Pastorino 6 | ## @license https://wwww.gnu.org/licenses/gpl.txt 7 | ## @email dev@fryntiz.es 8 | ## @web https://fryntiz.es 9 | ## @github https://github.com/fryntiz 10 | ## @gitlab https://gitlab.com/fryntiz 11 | ## @twitter https://twitter.com/fryntiz 12 | ## 13 | ## Guía de estilos aplicada: 14 | ## @style https://github.com/fryntiz/Bash_Style_Guide 15 | 16 | ############################ 17 | ## INSTRUCCIONES ## 18 | ############################ 19 | ## 20 | 21 | ############################ 22 | ## CONSTANTES ## 23 | ############################ 24 | AM="\033[1;33m" ## Color Amarillo 25 | RO="\033[1;31m" ## Color Rojo 26 | VE="\033[1;32m" ## Color Verde 27 | CL="\e[0m" ## Limpiar colores 28 | 29 | ########################### 30 | ## VARIABLES ## 31 | ########################### 32 | IP=$(cat ./ip.config) 33 | ubiquiti="root@$IP" 34 | 35 | ########################### 36 | ## FUNCIONES ## 37 | ########################### 38 | clear 39 | 40 | echo -e "$RO Conectando a la IP:$AM $IP" 41 | echo -e "$VE Espere un momento mientras conecta." 42 | sleep 1 43 | clear 44 | echo -e "$RO Conectando a la IP:$AM $IP" 45 | echo -e "$VE Espere un momento mientras conecta.." 46 | sleep 1 47 | clear 48 | echo -e "$RO Conectando a la IP:$AM $IP" 49 | echo -e "$VE Espere un momento mientras conecta..." 50 | sleep 1 51 | clear 52 | echo -e "$RO Conectando a la IP:$AM $IP" 53 | echo -e "$VE Espere un momento mientras conecta...." 54 | clear 55 | echo -e "$RO Conectando a la IP:$AM $IP" 56 | ssh $ubiquiti reboot 57 | echo -e "$VE Se ha enviado la petición de reinicio" 58 | echo -e "$VE Comando ejecutado: ssh $AM $ubiquiti reboot $CL" 59 | --------------------------------------------------------------------------------