#!/bin/bash # identifier: Captive Portal # description: Crea un punto di accesso "gemello cattivo". # >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 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!" 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..." # >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> CaptivePortalVerificationMethodQuery="MODALITA' DI VERIFICA DELLA PASSWORD" # >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> CaptivePortalCertificateSourceQuery="Select SSL certificate source for captive portal." CaptivePortalCertificateSourceGenerateOption="Create an SSL certificate" CaptivePortalCertificateSourceRescanOption="Detect SSL certificate (${CClr}search again$CGry)" CaptivePortalCertificateSourceDisabledOption="None (${CYel}disable SSL$CGry)" CaptivePortalUIQuery="Select a captive portal interface for the rogue network." CaptivePortalGenericInterfaceOption="Generic Portal" # >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> CaptivePortalConnectivityQuery="Select an internet connectivity type for the rogue network." CaptivePortalConnectivityDisconnectedOption="disconnected (${CGrn}recommended$CClr)" CaptivePortalConnectivityEmulatedOption="emulated" # >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> # FLUXSCRIPT END