2017-08-26 13:55:10 -06:00
|
|
|
#!/bin/bash
|
|
|
|
# identifier: Captive Portal
|
2017-08-26 16:14:11 -06:00
|
|
|
# description: Crea un punto di accesso "gemello cattivo".
|
2017-08-26 13:55:10 -06:00
|
|
|
|
|
|
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
2017-09-09 04:19:52 -06:00
|
|
|
CaptivePortalInterfaceQuery="Seleziona l'interfaccia per il punto di accesso Cattivo."
|
|
|
|
CaptivePortalStartingInterfaceNotice="Avvio dell'interfaccia del Portale di Cattura..."
|
|
|
|
CaptivePortalCannotStartInterfaceError="${CRed}Impossibile avviare il portale interface$CClr, ritorno!"
|
|
|
|
CaptivePortalStartedInterfaceNotice="${CGrn}Perfetto${CClr}, portale di cattura avviato con successo!"
|
2017-08-27 03:06:35 -06:00
|
|
|
CaptivePortalStaringAPServiceNotice="Avvio del servizio del Portale di Cattura..."
|
|
|
|
CaptivePortalStaringAPRoutesNotice="Avvio access point del Portale di Cattura..."
|
|
|
|
CaptivePortalStartingDHCPServiceNotice="Avvio del servizio DHCP..."
|
|
|
|
CaptivePortalStartingDNSServiceNotice="Avvio del servizio DNS..."
|
|
|
|
CaptivePortalStartingWebServiceNotice="Avvio del servizio del Portale WEB..."
|
|
|
|
CaptivePortalStartingJammerServiceNotice="Avvio del servizio di JAMMING..."
|
|
|
|
CaptivePortalStartingAuthenticatorServiceNotice="Avvio Script di Autenticazione..."
|
2017-08-26 13:55:10 -06:00
|
|
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
|
|
|
CaptivePortalVerificationMethodQuery="MODALITA' DI VERIFICA DELLA PASSWORD"
|
|
|
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
2017-12-06 22:13:00 -07:00
|
|
|
CaptivePortalCertificateSourceQuery="Seleziona il certificato SSL."
|
|
|
|
CaptivePortalCertificateSourceGenerateOption="Crea il certificato SSL"
|
|
|
|
CaptivePortalCertificateSourceRescanOption="Identifica il certificato SSL (${CClr}cerca ancora$CGry)"
|
2017-12-05 20:22:06 -07:00
|
|
|
CaptivePortalCertificateSourceDisabledOption="None (${CYel}disable SSL$CGry)"
|
2017-12-06 22:13:00 -07:00
|
|
|
CaptivePortalUIQuery="Seleziona l'intefaccia del Portale di Cattura."
|
|
|
|
CaptivePortalGenericInterfaceOption="Portale Generico"
|
2017-12-06 21:20:22 -07:00
|
|
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
|
|
|
CaptivePortalConnectivityQuery="Select an internet connectivity type for the rogue network."
|
|
|
|
CaptivePortalConnectivityDisconnectedOption="disconnected (${CGrn}recommended$CClr)"
|
|
|
|
CaptivePortalConnectivityEmulatedOption="emulated"
|
2017-08-26 13:55:10 -06:00
|
|
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
|
|
|
|
|
|
|
# FLUXSCRIPT END
|