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
|
|
|
|
|
|
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
2018-04-23 13:30:52 -06:00
|
|
|
CaptivePortalJammerInterfaceQuery="Select an interface for jamming."
|
|
|
|
CaptivePortalAccessPointInterfaceQuery="Select an interface for the access point."
|
2017-09-09 04:19:52 -06:00
|
|
|
CaptivePortalCannotStartInterfaceError="${CRed}Impossibile avviare il portale interface$CClr, ritorno!"
|
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
|
|
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
2018-04-23 13:30:52 -06:00
|
|
|
CaptivePortalAPServiceQuery="Select an access point service"
|
|
|
|
CaptivePortalAPServiceHostapdOption="Rogue AP - hostapd (${CGrn}recommended$CClr)"
|
|
|
|
CaptivePortalAPServiceAirbaseOption="Rogue AP - airbase-ng (${CYel}slow$CClr)"
|
|
|
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
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)"
|
2018-01-01 13:02:17 -07:00
|
|
|
CaptivePortalCertificateSourceDisabledOption="Nessuno (${CYel}disabilita 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
|
|
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
2018-01-01 13:02:17 -07:00
|
|
|
CaptivePortalConnectivityQuery="Seleziona una conettività internet per il punto di accesso cattivo."
|
|
|
|
CaptivePortalConnectivityDisconnectedOption="disconnesso (${CGrn}raccomandato$CClr)"
|
|
|
|
CaptivePortalConnectivityEmulatedOption="emulato"
|
2017-08-26 13:55:10 -06:00
|
|
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
|
|
|
|
|
|
|
# FLUXSCRIPT END
|