Skip to content
KitploitKITPLOIT
工具博客
提交
工具博客
提交

黑客、渗透测试和网络安全工具,武装您的安全武器库!

Kitploit 是一个黑客、网络安全和渗透测试工具的目录。发现最新的项目更新,查找漏洞、分析系统、自动化测试并加强你的安全。

··订阅源·联系·隐私·© 2026 Kitploit

工具目录

分类

查看所有分类
Loading categories
create_ap — [不再维护] 此脚本用于创建 NAT 模式或桥接模式的 WiFi 访问点。 | Kitploit
工具/GitHubGitHub/oblique/create_ap
Wi-Fi审计网络安全无线安全渗透测试实用工具与框架红队Archived
GitHuboblique/create_ap

create_ap

[不再维护] 此脚本用于创建 NAT 模式或桥接模式的 WiFi 访问点。

查看仓库
4.5k1.0k2年前Kitploit 审核通过

最受欢迎

查看全部 →

发现我们社区最常用的工具。

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

不再维护

该项目已不再维护。

本项目的分支与延续

  • linux-wifi-hotspot - 分支,专注于提供图形界面和改进。
  • linux-router - 分支,专注于提供不限于WiFi的新功能和改进。一些有趣的功能包括:通过有线接口共享互联网、通过使用redsocks的透明代理共享互联网。

功能

  • 在任何信道创建接入点(AP)。
  • 选择以下加密方式之一:WPA、WPA2、WPA/WPA2、开放(无加密)。
  • 隐藏你的SSID。
  • 禁用客户端间通信(客户端隔离)。
  • 支持 IEEE 802.11n 和 802.11ac
  • 互联网共享方式:NAT、桥接或无(无互联网共享)。
  • 选择AP网关IP(仅适用于"NAT"和"无"互联网共享方式)。
  • 你可以使用获取互联网连接的同一接口创建AP。
  • 你可以通过管道或参数传递SSID和密码(参见示例)。

依赖项

通用

  • bash(运行此脚本)
  • util-linux(用于getopt)
  • procps 或 procps-ng
  • hostapd
  • iproute2
  • iw
  • iwconfig(仅当'iw'无法识别你的适配器时需要)
  • haveged(可选)

适用于"NAT"或"无"互联网共享方式

  • dnsmasq
  • iptables

安装

通用

root@kitploit:~
git clone https://github.com/oblique/create_ap
cd create_ap
make install

ArchLinux

root@kitploit:~
pacman -S create_ap

Gentoo

root@kitploit:~
emerge layman
layman -f -a jorgicio
emerge net-wireless/create_ap

示例

无密码(开放网络):

root@kitploit:~
create_ap wlan0 eth0 MyAccessPoint

WPA + WPA2 密码:

root@kitploit:~
create_ap wlan0 eth0 MyAccessPoint MyPassPhrase

无互联网共享的AP:

root@kitploit:~
create_ap -n wlan0 MyAccessPoint MyPassPhrase

桥接互联网共享:

root@kitploit:~
create_ap -m bridge wlan0 eth0 MyAccessPoint MyPassPhrase

桥接互联网共享(预配置的桥接接口):

root@kitploit:~
create_ap -m bridge wlan0 br0 MyAccessPoint MyPassPhrase

使用同一WiFi接口共享互联网:

root@kitploit:~
create_ap wlan0 wlan0 MyAccessPoint MyPassPhrase

选择不同的WiFi适配器驱动

root@kitploit:~
create_ap --driver rtl871xdrv wlan0 eth0 MyAccessPoint MyPassPhrase

使用管道无密码(开放网络):

root@kitploit:~
echo -e "MyAccessPoint" | create_ap wlan0 eth0

使用管道的WPA + WPA2密码:

root@kitploit:~
echo -e "MyAccessPoint\nMyPassPhrase" | create_ap wlan0 eth0

启用IEEE 802.11n

root@kitploit:~
create_ap --ieee80211n --ht_capab '[HT40+]' wlan0 eth0 MyAccessPoint MyPassPhrase

客户端隔离:

root@kitploit:~
create_ap --isolate-clients wlan0 eth0 MyAccessPoint MyPassPhrase

Systemd 服务

使用持久化的 systemd 服务

立即启动服务:

root@kitploit:~
systemctl start create_ap

开机自启:

root@kitploit:~
systemctl enable create_ap

许可协议

FreeBSD

下载工具