Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
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
Tools/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

View Repository
3122 years agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →

About

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.

Share

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

Overview

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.

  • CVE ID: CVE-2023-33105
  • Qualcomm Security Bulletin: March 2024 Bulletin

Requirements

  • Python 3.x
  • Scapy
  • Termcolor
  • Airodump-ng
  • A wireless network adapter capable of injection

Installation

To install the necessary Python libraries, run:

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

Files

  • config.py: Configuration file for setting target MAC addresses and parameters.
  • exploit_v2.py: Main exploit script.
  • Configuration

    Before running the exploit, update the config.py file with the target MAC addresses and other parameters.

    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
    

    Usage

    To run the exploit, follow these steps:

    1. Ensure your wireless network adapter is in monitor mode. You can enable monitor mode using the following command:
    root@kitploit:~
    sudo ip link set wlan0 down
    sudo iw dev wlan0 set type monitor
    sudo ip link set wlan0 up
    
    1. Execute the exploit script:
    root@kitploit:~
    python exploit_v2.py
    

    The script will send a large number of open authentication frames with invalid transaction sequence numbers to the target AP, causing a transient DoS.

    FAQ

    What is CVE-2023-33105?

    CVE-2023-33105 is a vulnerability in Qualcomm devices that allows a transient DoS in WLAN Host and Firmware when a large number of open authentication frames are sent with an invalid transaction sequence number.

    What are the requirements to run this exploit?

    You need Python 3.x, Scapy, Airodump-ng, and a wireless network adapter capable of injection.

    Is it legal to use this exploit?

    Unauthorized use of this script against networks without permission is illegal. This code is provided for educational purposes only.

    References

    • CVE-2023-33105
    • Qualcomm Security Bulletin
    Download Tool