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
ZeroPair — Proof-of-concept tool demonstrating zero-authentication Bluetooth RFCOMM access bypass in vulnerable thermal printers | Kitploit
Tools/GitHubGitHub/cbkb-deadlydata/zeropair
Bluetooth SecurityVulnerability AnalysisExploitationWireless SecurityPenetration TestingHardware & IoT Security
GitHubcbkb-deadlydata/zeropair

ZeroPair

Proof-of-concept tool demonstrating zero-authentication Bluetooth RFCOMM access bypass in vulnerable thermal printers

View Repository
16 months 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 →
Share

ZeroPair

Zero Authentication Bluetooth Exploit

"Steal The Print, Own The System"

root@kitploit:~
███████╗███████╗██████╗  ██████╗
╚══███╔╝██╔════╝██╔══██╗██╔═══██╗
  ███╔╝ █████╗  ██████╔╝██║   ██║
 ███╔╝  ██╔══╝  ██╔══██╗██║   ██║
███████╗███████╗██║  ██║╚██████╔╝
╚══════╝╚══════╝╚═╝  ╚═╝ ╚═════╝
    ██████╗  █████╗ ██╗██████╗
    ██╔══██╗██╔══██╗██║██╔══██╗
    ██████╔╝███████║██║██████╔╝
    ██╔═══╝ ██╔══██║██║██╔══██╗
    ██║     ██║  ██║██║██║  ██║
    ╚═╝     ╚═╝  ╚═╝╚═╝╚═╝  ╚═╝

Author: [CBKB] DeadlyData | 2026

ZeroPair is a proof-of-concept tool that demonstrates a zero-authentication vulnerability in Bluetooth-enabled thermal printers using Jieli and Barrot chipsets. The affected devices accept unauthenticated RFCOMM connections without requiring pairing or user interaction, allowing an attacker within Bluetooth range to access the printer command interface.

CVE: Submitted to MITRE (pending assignment)


Proof of Concept

ZeroPair Proof of Concept

Vulnerability Summary

Bluetooth-enabled thermal printers using Jieli and Barrot Bluetooth chipsets contain an authentication bypass vulnerability in their RFCOMM (SPP) service. Due to improper access control implemented in firmware, the affected devices accept unauthenticated RFCOMM connections without requiring pairing or user interaction. The vulnerability exists in a hidden firmware trust state that cannot be inspected or removed using standard Bluetooth management tools.

Impact

  • Information Disclosure - Read printer buffer/status without authorization
  • Arbitrary Command Execution - Inject ESC/POS or TSPL commands to print arbitrary content
  • Denial of Service - Consume paper, lock the command interface, or disrupt normal operation
  • Persistent Backdoor - Device remains exploitable across reboots; pairing cache cannot be cleared through standard tools

Vulnerability Classifications Detected

ClassificationSeverity
Zero AuthenticationCritical
Persistent Pairing TrustHigh
Hidden Pairing StateHigh
Unknown Authentication BypassHigh

Affected Devices

Other Bluetooth thermal printers using these chipsets may also be affected.


Requirements

Platform

  • Linux (requires BlueZ stack)

System Dependencies

  • bluez - Bluetooth protocol stack (hcitool, bluetoothctl, rfcomm, sdptool)

Install on Debian/Ubuntu:

root@kitploit:~
sudo apt install bluez

Python Dependencies

  • Python 3
  • colorama
root@kitploit:~
pip install colorama

Hardware

  • Bluetooth adapter (built-in or USB dongle)
  • Must be within Bluetooth range (~10m) of the target device

Usage

ZeroPair requires root privileges for RFCOMM operations.

Single Target (with validation)

Performs a full 4-step vulnerability validation before exploitation:

root@kitploit:~
sudo python3 ZeroPair.py <MAC_ADDRESS>
root@kitploit:~
sudo python3 ZeroPair.py 66:32:9E:2E:FD:94

Single Target (skip validation)

Skips validation and attempts direct exploitation:

root@kitploit:~
sudo python3 ZeroPair.py <MAC_ADDRESS> --skip

Auto-Scan Mode (with validation)

Scans for all Bluetooth devices, identifies printers, validates, and exploits:

root@kitploit:~
sudo python3 ZeroPair.py --scan

Auto-Scan Mode (skip validation)

Fastest mode - scans and exploits without validation:

root@kitploit:~
sudo python3 ZeroPair.py --scan --skip

Arguments


How It Works

Exploitation Chain

  1. Discovery - Bluetooth scan identifies thermal printers by device name
  2. Validation (optional) - 4-stage vulnerability check:
    • User-space pairing visibility via bluetoothctl
    • Local Bluetooth adapter identification
    • Filesystem pairing cache inspection (/var/lib/bluetooth/)
    • RFCOMM unauthenticated access test (critical)
  3. Channel Discovery - SDP browse to find the RFCOMM SPP channel
  4. Connection - RFCOMM bind to the target without pairing or PIN
  5. Command Injection - ESC/POS or TSPL payload sent to the printer
  6. Physical Output - Printer produces a receipt/label as proof of exploitation

Why This Works

The affected printers implement a permissive RFCOMM accept policy at the firmware level. The Bluetooth controller does not enforce authentication or encryption for incoming SPP connections. Because the trust state is managed in firmware rather than by the host Bluetooth stack (BlueZ), standard tools like bluetoothctl cannot detect, inspect, or revoke the implicit trust. The device silently accepts connections from any Bluetooth host without user interaction.


Example Output

root@kitploit:~
[*] single target mode (validation enabled)

[*] ==========================================================
[*] target: 66:32:9E:2E:FD:94 (X6h-A725)
[*] model: X6h-A725
[*] ==========================================================

[*] starting vulnerability validation...
[*] testing user-space pairing visibility [DONE]
[*] identifying local bluetooth adapter [DONE]
[*] checking filesystem pairing cache [DONE]
[*] testing RFCOMM unauthenticated access [DONE]

[!] VULNERABILITY CONFIRMED
    Type: ZERO AUTHENTICATION
    Severity: CRITICAL

[*] vulnerability details:
    [+] RFCOMM accessible: YES
    [+] BlueZ visible: NO
    [+] BlueZ paired: NO
    [+] Cache exists: NO

[+] target is exploitable - proceeding with attack

[*] discovering RFCOMM channels [channel 1]
[*] establishing RFCOMM connection [CONNECTED]
[*] injecting ESC/POS payload [SUCCESS]

[*] exploitation successful - check printer output!

[+] exploitation completed successfully

Disclaimer

This tool is for authorized security testing and educational purposes only. Unauthorized access to computer systems is illegal. The author assumes no liability and is not responsible for any misuse or damage caused by this tool. Use responsibly and only on systems you own or have explicit permission to test.


License

MIT

Download Tool
ModelManufacturerChipsetDefault PINCommand Set
X6h-A725Zhuhai JieliJieli1234ESC/POS
M58-LZhuhai JieliJieli1234ESC/POS
D450OmezizyBarrot0000TSPL
ArgumentShortDescription
targetTarget MAC address (e.g., 66:32:9E:2E:FD:94)
--scan-aAuto-scan mode: find and exploit all printers
--skip-sSkip vulnerability validation (faster)