2017-08-26 13:55:10 -06:00
|
|
|
#!/bin/bash
|
|
|
|
# identifier: Captive Portal
|
2017-08-26 16:14:11 -06:00
|
|
|
# description: Creates an "evil twin" access point.
|
2017-08-26 13:55:10 -06:00
|
|
|
|
|
|
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
2017-09-02 14:17:45 -06:00
|
|
|
CaptivePortalInterfaceQuery="Select an interface for the captive portal."
|
|
|
|
CaptivePortalStartingInterfaceNotice="Starting captive portal interface..."
|
|
|
|
CaptivePortalCannotStartInterfaceError="${CRed}Unable to start captive portal interface$CClr, returning!"
|
|
|
|
CaptivePortalStartedInterfaceNotice="${CGrn}Success${CClr}, captive portal interface ready!"
|
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..."
|
|
|
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
|
|
|
CaptivePortalVerificationMethodQuery="Select a password verification method"
|
|
|
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
|
|
|
CaptivePortalCertificateSourceQuery="Select SSL certificate source for captive portal"
|
|
|
|
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-09-02 14:17:45 -06:00
|
|
|
CaptivePortalUIQuery="Select a captive portal interface for the rogue network"
|
2017-08-26 13:55:10 -06:00
|
|
|
CaptivePortalGenericInterfaceOption="Generic Portal"
|
|
|
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
|
|
|
|
|
|
|
# FLUXSCRIPT END
|