2018-05-02 12:50:31 -06:00
|
|
|
#!/usr/bin/env bash
|
2017-08-26 13:55:10 -06:00
|
|
|
# identifier: Portal Cautivo
|
2017-08-26 16:14:11 -06:00
|
|
|
# description: Crea un punto de acceso "gemelo malvado".
|
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-02 14:17:45 -06:00
|
|
|
CaptivePortalCannotStartInterfaceError="${CRed}Unable to start captive portal interface$CClr, returning!"
|
2017-08-26 13:55:10 -06:00
|
|
|
CaptivePortalStaringAPServiceNotice="Starting Captive Portal access point service..."
|
|
|
|
CaptivePortalStaringAPRoutesNotice="Starting Captive Portal access point routes..."
|
|
|
|
CaptivePortalStartingDHCPServiceNotice="Starting access point DHCP service as daemon..."
|
|
|
|
CaptivePortalStartingDNSServiceNotice="Starting access point DNS service as daemon..."
|
|
|
|
CaptivePortalStartingWebServiceNotice="Starting access point captive portal as daemon..."
|
|
|
|
CaptivePortalStartingJammerServiceNotice="Starting access point jammer as daemon..."
|
|
|
|
CaptivePortalStartingAuthenticatorServiceNotice="Starting authenticator script..."
|
|
|
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
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="MÉTODO PARA VERIFICAR CONTRASEÑA"
|
|
|
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
2017-12-06 21:20:22 -07:00
|
|
|
CaptivePortalCertificateSourceQuery="Select SSL certificate source for captive portal."
|
2017-08-26 13:55:10 -06:00
|
|
|
CaptivePortalCertificateSourceGenerateOption="Create an SSL certificate"
|
|
|
|
CaptivePortalCertificateSourceRescanOption="Detect SSL certificate (${CClr}search again$CGry)"
|
2017-12-05 20:22:06 -07:00
|
|
|
CaptivePortalCertificateSourceDisabledOption="None (${CYel}disable SSL$CGry)"
|
2017-12-06 21:20:22 -07:00
|
|
|
CaptivePortalUIQuery="Select a captive portal interface for the rogue network."
|
2017-08-26 13:55:10 -06:00
|
|
|
CaptivePortalGenericInterfaceOption="Generic Portal"
|
|
|
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
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
|