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

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

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

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

工具目录

分类

查看所有分类
Loading categories
CVE-2023-33105-Transient-DOS-in-WLAN-Host-and-Firmware — This repository contains the exploit code for CVE-2023-33105, a vulnerability identified in Qualcomm devices. The exploit leverages authentication frames to perform a denial of service (DoS) attack on a target access point (AP) by sending a large number of open authentication frames with an invalid transaction sequence number. | Kitploit
工具/GitHubGitHub/d3adp3nguin/cve-2023-33105-transient-dos-in-wlan-host-and-firmware
Vulnerability AnalysisExploitationWireless SecurityPenetration TestingRed Teaming
GitHubd3adp3nguin/cve-2023-33105-transient-dos-in-wlan-host-and-firmware

CVE-2023-33105-Transient-DOS-in-WLAN-Host-and-Firmware

查看仓库

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →

关于

This repository contains the exploit code for CVE-2023-33105, a vulnerability identified in Qualcomm devices. The exploit leverages authentication frames to perform a denial of service (DoS) attack on a target access point (AP) by sending a large number of open authentication frames with an invalid transaction sequence number.

分享
312年前尚未审核

CVE-2023-33105:WLAN 主机和固件中的暂时性拒绝服务

概述

本仓库包含 CVE-2023-33105 的利用代码,该漏洞存在于高通设备中。此利用通过发送大量具有无效事务序列号的开放认证帧,对目标接入点(AP)执行拒绝服务(DoS)攻击。

  • CVE ID:CVE-2023-33105
  • 高通安全公告:2024 年 3 月公告

需求

  • Python 3.x
  • Scapy
  • Termcolor
  • Airodump-ng
  • 支持数据包注入的无线网卡

安装

安装所需的 Python 库,运行:

root@kitploit:~
pip install -r requirements.txt

文件

  • config.py:用于设置目标 MAC 地址和参数的配置文件。
  • exploit_v2.py:主利用脚本。

配置

在运行利用之前,请更新 config.py 文件中的目标 MAC 地址和其他参数。

root@kitploit:~
# config.py

# MAC address of the station (client)
sta_target = 'XX:XX:XX:XX:XX:XX'  # change this

# MAC address of the access point (AP)
ap_target = 'YY:YY:YY:YY:YY:YY'  # change this

# Number of frames to send
spray = 500

# Interval for checking if the BSSID is still up (in seconds)
check_interval = 60

使用

运行利用的步骤如下:

  1. 确保无线网卡处于监控模式。可以使用以下命令启用监控模式:
root@kitploit:~
sudo ip link set wlan0 down
sudo iw dev wlan0 set type monitor
sudo ip link set wlan0 up
  1. 执行利用脚本:
root@kitploit:~
python exploit_v2.py

该脚本会向目标 AP 发送大量具有无效事务序列号的开放认证帧,导致暂时性 DoS。

常见问题

什么是 CVE-2023-33105?

CVE-2023-33105 是高通设备中的一个漏洞,当发送大量具有无效事务序列号的开放认证帧时,会导致 WLAN 主机和固件出现暂时性拒绝服务。

运行此利用需要哪些条件?

您需要 Python 3.x、Scapy、Airodump-ng 以及支持数据包注入的无线网卡。

使用此利用是否合法?

未经许可在网络上使用此脚本是违法的。本代码仅用于教育目的。

参考资料

  • CVE-2023-33105
  • 高通安全公告
下载工具