24 lines
1.4 KiB
Bash
Executable File
24 lines
1.4 KiB
Bash
Executable File
#!/bin/bash
|
|
# identifier: 专属门户
|
|
# description: Creates evil twin phishing access point.
|
|
|
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
|
CaptivePortalStaringAPServiceNotice="开始建立钓鱼热点AP..."
|
|
CaptivePortalStaringAPRoutesNotice="启动钓鱼热点AP路由服务..."
|
|
CaptivePortalStartingDHCPServiceNotice="启动接入点DHCP服务作为守护进程..."
|
|
CaptivePortalStartingDNSServiceNotice="启动接入点DNS服务作为守护进程..."
|
|
CaptivePortalStartingWebServiceNotice="启动钓鱼热点作为守护进程..."
|
|
CaptivePortalStartingJammerServiceNotice="启动接入点干扰器作为守护进程..."
|
|
CaptivePortalStartingAuthenticatorServiceNotice="启动验证器脚本..."
|
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
|
CaptivePortalVerificationMethodQuery="请选择验证密码方式"
|
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
|
CaptivePortalCertificateSourceQuery="选择钓鱼认证门户的SSL证书来源"
|
|
CaptivePortalCertificateSourceGenerateOption="创建SSL证书"
|
|
CaptivePortalCertificateSourceRescanOption="检测SSL证书 (${CClr}再次搜索$CGry)"
|
|
CaptivePortalInterfaceQuery="选择钓鱼热点的认证网页界面"
|
|
CaptivePortalGenericInterfaceOption="通用认证网页"
|
|
# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
|
|
|
# FLUXSCRIPT END
|