本帖最后由 qsdelol12 于 2023-8-2 15:01 编辑
1、配置内核信道监管域WiFi信道根据国家地区的不同,有着严格的频道划分,某些5G信道可以作为雷达探测使用,这意味着 如果有路由器工作在雷达探测保留信道,那么意味着你很可能不能在上边注入,解除认证,以及创建虚假克隆 AP。因此我们需要根据WiFi信道顺从表,修改内核监管域国家代码,以影响无线网卡工作频段,使其 能正常注入、解除认证、创建AP等
编辑开机启动配置文件 # 编辑配置,使得每次开机将无线网卡工作频率# 国家代码设置为CN(中国),特别推荐PA(巴拿马)可以避开雷达信道,解除认证5G杠杠的
╰─ vim /etc/rc.local
#!/bin/bash
# THIS FILE IS ADDED FOR COMPATIBILITY PURPOSES#
# It is highly advisable to create own systemd services or udev rules
# to run scripts during boot instead of using this file.#
# In contrast to previous versions due to parallel execution during boot
# this script will NOT be run after all other services.#
# Please note that you must run 'chmod +x /etc/rc.d/rc.local' to ensure
# that this script will be executed during boot.
# set wlan frequency country code to PA/CN
iw reg set PA
exit 0
# 添加执行权限
╰─ chmod +x /etc/rc.local
使配置生效 # 重启服务
╰─ systemctl restart rc-local.service
╰─ systemctl status rc-local.service
# 或者重启机器
╰─ reboot复制
之后你会发现8812au将能够成功deauth解除认证所有5G信号 #配置完成后验证信道#你应该能看到如下输出
#信道后边应该没有任何特殊标记
#说明我们可以在上边执行deauth与创建AP
╰─ iw list
2、配置fluxion以修复5Ghz创建AP配置fluxion以支持创建5G频段的AP #编辑ap脚本文件
╰─ cat 桌面/fluxion-fix-for-5Ghz/lib/ap/hostapd.sh
添加如下代码
之后,你会发现fluxion将会正常创建5G频段的AP,不会卡住 干货交流群:869200986
|