2018-08-03 12:48:31 -06:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
# identifier: Portal Cautivo
|
|
|
|
# description: Crea un punto de acceso "gemelo malvado".
|
|
|
|
|
|
|
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
2021-02-12 15:30:48 -07:00
|
|
|
CaptivePortalJammerInterfaceQuery="Seleccione una interaz para realizar jamming."
|
|
|
|
CaptivePortalAccessPointInterfaceQuery="Selecccione una interfaz para el punto de acceso."
|
|
|
|
CaptivePortalCannotStartInterfaceError="${CRed}Imposible iniciar un portal de captura para la interfaz $CClr, cancelando!"
|
2021-02-12 15:27:46 -07:00
|
|
|
CaptivePortalStaringAPServiceNotice="Iniciando un servicio de Portal de Captura..."
|
2021-02-12 15:30:48 -07:00
|
|
|
CaptivePortalStaringAPRoutesNotice="Iniciando un Portal de Captura como punto de acceso..."
|
|
|
|
CaptivePortalStartingDHCPServiceNotice="Iniciando un portal de acceso servicio DHCP como proceso..."
|
2021-02-12 15:27:46 -07:00
|
|
|
CaptivePortalStartingDNSServiceNotice="Iniciando un portal de acceso DNS como proceso..."
|
|
|
|
CaptivePortalStartingWebServiceNotice="Iniciando un portal de acceso como ..."
|
|
|
|
CaptivePortalStartingJammerServiceNotice="Iniciando un porta de acceso jammer como servicio..."
|
|
|
|
CaptivePortalStartingAuthenticatorServiceNotice="Iniciando script de autencticación..."
|
2018-08-03 12:48:31 -06:00
|
|
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
2021-02-12 15:27:46 -07:00
|
|
|
CaptivePortalAPServiceQuery="Seleccione un punto de acceso como proceso"
|
2018-08-03 12:48:31 -06:00
|
|
|
CaptivePortalAPServiceHostapdOption="Rogue AP - hostapd (${CGrn}recommended$CClr)"
|
|
|
|
CaptivePortalAPServiceAirbaseOption="Rogue AP - airbase-ng (${CYel}slow$CClr)"
|
|
|
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
|
|
|
CaptivePortalVerificationMethodQuery="MÉTODO PARA VERIFICAR CONTRASEÑA"
|
|
|
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
2021-02-12 15:27:46 -07:00
|
|
|
CaptivePortalCertificateSourceQuery="Seleccione ruta del certificado SSL para el portal de acceso"
|
|
|
|
CaptivePortalCertificateSourceGenerateOption="Crear un certificado SSL"
|
|
|
|
CaptivePortalCertificateSourceRescanOption="Detectar un certifacdo SSL (${CClr}buscando $CGry)"
|
|
|
|
CaptivePortalCertificateSourceDisabledOption="Ningún (${CYel} SSL Certifcado$CGry)"
|
2021-02-12 15:30:48 -07:00
|
|
|
CaptivePortalUIQuery="Seleccione una interfaz para el portal de captura"
|
2021-02-12 15:27:46 -07:00
|
|
|
CaptivePortalGenericInterfaceOption="Portal genérica"
|
2018-08-03 12:48:31 -06:00
|
|
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
2021-02-12 15:27:46 -07:00
|
|
|
CaptivePortalConnectivityQuery="Selecciona una conexión a internet para la suplantación de red."
|
|
|
|
CaptivePortalConnectivityDisconnectedOption="Desconexión (${CGrn}recomendado$CClr)"
|
|
|
|
CaptivePortalConnectivityEmulatedOption="Emulado"
|
2018-08-03 12:48:31 -06:00
|
|
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
|
|
|
|
|
|
|
# FLUXSCRIPT END
|