forked from HackeRStrategy/Irparpaya-a
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.real-host.sh
128 lines (126 loc) · 3.22 KB
/
.real-host.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
#!bin/bash
#Created: 13/11/2018
#Actualizacion 11/01/2019
#by: real strategy
#Actualizacion exitosa
#MENSAJE: Nunca dejes de aprender, Si estas aqui es por curiosidad e intenta aprender shell o bash con la ayuda del buscador de google entre otros y asi tendras mas facilidad claro tomara tiempo pero lograras aprender aunque sea editando
clear
while :
do
#menu
clear
echo -e "\e[1;33m(98/8)\e[1;32m"
echo " __ __ __ ______ __ __ "
echo " / / / /___ _____/ /_ / ____/ __/ /__________ _____/ /_____ _____ "
echo " / /_/ / __ \/ ___/ __/ / __/ | |/_/ __/ ___/ __ \/ ___/ __/ __ \/ ___/ "
echo " / __ / /_/ (__ ) /_ / /____> </ /_/ / / /_/ / /__/ /_/ /_/ / / "
echo "/_/ /_/\____/____/\__/ /_____/_/|_|\__/_/ \__,_/\___/\__/\____/_/ "
echo -e "\e[1;33mV= 2.0 (99) Español (98) Ingles "
echo ""
echo -e "\e[1;31m[1]\e[1;32m EXTRACTOR HOST & SSL"
echo -e "\e[1;31m[2]\e[1;32m MOSTRAR STATUS DE WEB"
echo -e "\e[1;31m[3]\e[1;32m GUARDAR HOSTS EXTRAIDOS"
echo -e "\e[1;31m[4]\e[1;32m GERAR PAYLOAD FUNCIONALES"
echo -e "\e[1;31m[5]\e[1;32m VER PUERTOS WEB & HOST"
echo -e "\e[1;31m[6]\e[1;32m VER PROXY HOST & WEB"
echo -e "\e[1;31m[7]\e[1;32m MANUAL DE USO HOST E."
echo -e "\e[1;31m[8]\e[1;32m MENSAJE DEL CREADOR "
echo -e "\e[1;31m[0]\e[1;32m SALIR DEL MENU H.E"
echo ""
echo -e "\e[1;36m"
echo -n "Escoger opcion: "
read opcion
#lista de menu
echo -e "\e[0m"
case $opcion in
1)echo ""
echo -n "HOST: ";
read HOST;
bash .scan.sh $HOST
echo ""
echo -e "\e[0m";
echo -e "\e[1;31mPresiona una tecla para continuar con el script...!\e[0m";
read foo
;;
2)echo ""
echo "Mostrando status de hosts";
echo ""
bash .status.sh
echo ""
echo -e "\e[1;31mPresiona una tecla para continuar..\e[0m"
read foo
;;
3)echo ""
echo -e "\e[1;33mPegar los hosts para poder sacarle los estatus\e[0m";
echo -e "\e[1;31mRecuerde CTRL + C para salir\e[0m";
echo -e "\e[1;36mHOST: \e[0m";
cat>lista-host.txt
;;
4)clear
bash .payloads
read foo;
;;
5)echo ""
echo -ne "\e[1;31m DOMINIO(IP/WEB): ";
read NIO
echo -ne "\e[1;31m PUERTOS(53,80): ";
read TOS
sleep 2
echo -e "\e[1;32m";
nmap -p $TOS $NIO
read foo
;;
6)echo -ne "\e[1;31mSITIO WEB/IP: ";
read WEB
echo ""
echo -e "\e[1;32m"
curl https://api.hackertarget.com/geoip/?q=$WEB
read foo
;;
7)clear
echo "Leer todo para el buen uso de la herramienta...";
sleep 2.5
cat manualES.txt
read foo
;;
12.25)clear
echo -e "\e[1;32mIngresando al menu secreto...";
sleep 2
bash ._
read foo
;;
8)echo ""
echo -e "\e[1;33mCREDITOS AL DESARROLLADOR\e[0m"
echo ""
echo -e "\e[1;31mCoder: @RealStrategy y el grupo vip RS"
echo -e "\e[1;32m"
echo "YOUTUBE : https://youtube.com/RealHackRWAM "
echo "TELEGRAM: https://t.me/RealHackRWAM "
echo "TELEGRAM: https://t.me/RealStrategyRS "
echo "FACEBOOK: https://www.facebook.com/groups/405947939959628 "
echo "FACEBOOK: https://m.facebook.com/RealHackRWAM "
echo ""
echo -e "\e[1;31mMENSAJE DE RS\e[0m"
echo ""
echo -e "\e[1;36mNunca dejes de aprender... :)\e[0m"
echo ""
read foo;
;;
98)clear
echo "Traduciendo al idioma ingles...";
sleep 4
;;
99)clear
echo "Traduciendo al idioma español...";
sleep 4
;;
#Fin del menu/in the end
0)clear
exit 0;;
#error
*)clear
echo "Comando invalido...";
sleep 1.5
;;
esac
done