Siunam's Website

My personal website

Home About Blog Writeups Projects E-Portfolio

keyboardwarrior

Overview

I found a PCAP of some Bluetooth packets being sent on this guy’s computer. He’s sending some pretty weird stuff, you should take a look.

Author: v0rtex

Difficulty: Medium

Find the flag

In this challenge, we can download a file:

┌──(root🌸siunam)-[~/ctf/BuckeyeCTF-2022/Misc/keyboardwarrior]
└─# file keyboardwarrior.pcap 
keyboardwarrior.pcap: pcap capture file, microsecond ts (little-endian) - version 2.4 (Bluetooth HCI H4 with pseudo-header, capture length 262144)

It’s a pcap file, let’s open it in WireShark!

In WireShark, we can see that there are lots of BlueTooth packets, and the Human Interface Device is interesting to me, as the challenge’s description is talking about sending some pretty weird stuff.

Let’s filter that!

After fumbling around, I found that the Human Interface Device packets are something weird, as it only has 1 hex value is different.

Now, we can use tshark (Command line version of WireShark) to find all the weird hex value:

┌──(root🌸siunam)-[~/ctf/BuckeyeCTF-2022/Misc/keyboardwarrior]
└─# tshark -r keyboardwarrior.pcap -Y "btatt.value" -T fields -e btatt.value > weird_value.txt

Let’s clean that up!

Then, I also found that in rgbCTF2020, there is a writeup caught my attention:

Keyboard are using certain hexes to send keyboard signal to the host, but it’s not in ASCII.

In the writeup, it also include a keycode dictionary:

Armed with the above information, we can basically find the flag!

After some find and replace, you’ll get this:

We found the flag!

Note: The - should be an underscore (_). Complete flag: buckeyectf{4v3r4g3_b13_3nj0y3r}

Conclusion

What we’ve learned:

  1. Inspecting BlueTooth Packets