312-50V12 · Question #275
Clark, a professional hacker, attempted to perform a Btlejacking attack using an automated tool, Btlejack, and hardware tool, micro:bit. This attack allowed Clark to hijack, read, and export sensitive
The correct answer is A. btlejack -f 0x9c68fd30 -t -m 0x1fffffffff. Btlejacking is a Bluetooth Low Energy (BLE) attack using Btlejack to sniff, jam, and hijack existing BLE connections. Different Btlejack commands serve distinct purposes such as sniffing, scanning, or hijacking.
Question
Options
- Abtlejack -f 0x9c68fd30 -t -m 0x1fffffffff
- Bbtlejack -c any
- Cbtlejack -d /dev/ttyACM0 -d /dev/ttyACM2 -s
- Dbtlejack -f 0x129f3244 -j
How the community answered
(22 responses)- A86% (19)
- B9% (2)
- D5% (1)
Why each option
Btlejacking is a Bluetooth Low Energy (BLE) attack using Btlejack to sniff, jam, and hijack existing BLE connections. Different Btlejack commands serve distinct purposes such as sniffing, scanning, or hijacking.
The command 'btlejack -f 0x9c68fd30 -t -m 0x1fffffffff' is used to hijack an existing BLE connection, where '-f' specifies the Access Address of the target connection, '-t' instructs Btlejack to hijack (takeover) the connection, and '-m' specifies the channel map mask. This combination of flags is specifically designed to perform the connection hijacking phase of a Btlejacking attack.
The command 'btlejack -c any' is used to sniff and capture new BLE connections rather than hijack an existing one, as '-c' initiates passive connection sniffing.
The command 'btlejack -d /dev/ttyACM0 -d /dev/ttyACM2 -s' is used to scan for existing BLE connections using multiple micro:bit devices specified by '-d', with '-s' initiating the scanning/sniffing process, not hijacking.
The command 'btlejack -f 0x129f3244 -j' is used to jam a specific BLE connection identified by its Access Address using the '-j' (jam) flag, which disrupts the connection rather than hijacking and taking control of it.
Concept tested: Btlejack BLE connection hijacking command syntax
Source: https://github.com/virtualabs/btlejack
Topics
Community Discussion
No community discussion yet for this question.