DEV Community

Safia Abdalla
Safia Abdalla

Posted on

What I learned when I tried to hack my smart vibrator

I’ve owned a smart vibrator for a little over a year now. For those of you who might not be familiar, smart vibrators are vibrators that can be controlled by an app via a Bluetooth connection. Often times, the app is connected to the Internet so a remote user can control the vibrator via the app. In that case, the remote user sends a message to the app and the app relays that message to the vibrator via Bluetooth.

I don’t do a lot of interesting projects with hardware or Internet connected devices, so I figured it would be fun to hack into my vibrator to learn a bit more about IoT devices. In this specific case, by "hack" I mean "reverse engineer the communication protocols that the vibrator and app used to communicate with each other.“ The particular vibrator I’ll be reverse engineering is the Vibease. Note to those of you who might be in an office, public library, or next to a nosy person on the train: that link will take you to an e-commerce page that sells sex toys. Hopefully, I saved you some unwanted awkwardness!

I started by doing a bit of research into Internet of Things devices that use Bluetooth in general. I figured, or I should say hoped, that there would be some sort of standardization or protocols around how Internet of Things devices utilize Bluetooth.

The first thing I figured out was the distinction between Bluetooth and Bluetooth Low Energy. Bluetooth Low Energy (sometimes referred to as Bluetooth 4.0) is a version of Bluetooth that uses less energy that prior versions. This is particularly advantageous for Internet of Things devices because it means they can run off battery for long periods of time. I can confirm this. I was pretty surprised by the number of uses that I could get out of my vibrator after a single full charge. This "low energy" distinction is a result of BLE modules remaining in "sleep mode" when not in use and thus using less energy. You can read a bit more about the differences at this link.

I decided to look around and see if there were any other articles written about reverse engineering Internet of Things devices and chanced upon this post. In the post, the author reverse engineers a smart light bulb. At this point, I don’t have the knowledge to brag, but I get the sense that what I’m trying to do might be a bit more difficult. For one, while an app that controls the color of light bulb only need to modify the color presented by the LED, a vibrator consists of several motors that sometimes need to be activated in tandem. Despite this, the post gave me some pretty good insights into BLE devices in general.

In particular, the article outlined how a peripheral device (like a vibrator) uses BLE to connect to services that represent different aspects of the device (like the battery or the motors of a vibrator) to read and write certain characteristics (like the battery level of the device or the rotations per minute on a motor). The article mentioned using an app called NRF Connect to interface with the Bluetooth device. I headed over to the App Store on my iPhone, downloaded the app, turned on my vibrator, and connected to it using the app.

Once I connected to the vibrator, the app detected three different services. The first was the Battery Service and the second was the Device Information service. It was pretty obvious to deduce what each of these services were for from their names. I figured that they were both read-only services that allowed the app (and snoopy critters like me) to read information about the battery level and details about the vibrator. The third service was labeled as "Unknown" by the NRF Connect tool. I figured this is the service that is responsible for reading and writing the state of the motors on the vibrator.

A screen capture of the services detected by the NRF Connect app on the Vibease vibrator.

I decided to navigate over the "Battery Service" to see what information I could find there. As I suspected, the "Battery Service" contains a single "Battery Level" characteristic that is "Read Notify" and contains a value of ‘0x64’. This is a hex (base 16) number that translates to 100 in decimal. It’s fully charged and ready to go!

A screencapture of the Battery Level characteristic on a Vibease.

I navigated to the "Device Information" service and noticed that it had several "Read" characteristics that pertained to the Serial Number, Model Number, and other details of the device. Here’s a screenshot of what that screen looked like with certain details obfuscated.

A screencapture of the Device Information service on a Vibease.

All this was fairly easy, but I still needed to figure out how the app interfaced with the motors. I navigated to the ominously named "Unknown Service" to see if I could figure anything out.

A screencapture of the motor services on a Vibease.

Interesting! This service contains a mix of "Read Notify" and "Write Without Response" characteristics. There are two "Read Notify" characteristics and two "Write Without Response" characteristics. I presume that each of those characteristics lines up with a motor on the vibrator. That is to say, the vibrator has two motors, each of which you can read data from and write data too. This was in line with the physical characteristics of the vibrator. It has a motor on each end, and they both operate independently of one another.

I noticed something a little strange with the two "Read Notify" characteristics that were associated with the motors. One characteristic read a value of '0x0000’ (The screen-capture above shows a value of '0x0100’ because I took it a while after I gathered the initial reading. I’m not sure why the value changed in the hour between me seeing it for the first time and me remembering to take the screenshot. More mysteries. Wow, this parenthetical is getting a little long…) which corresponded to a motor that was off (or, so I guess) and the other read a value of 'N/A’. At that point in time, the vibrator was on but not vibrating, so I found it strange that one motor would send a zero value and the other would send a null value. I decided to do a quick Google to see if this was a common issue with characteristic on BLE devices but couldn’t come up with anything useful.

Side note: Effective Googling is very difficult when you are learning something new, so I might not be formulating my queries in a way that brings up good responses. If you know something about BLE and why this might be happening, do let me know!

Anyways, I noticed that the NRF Connect app provided an option to write to characteristics that were writable. At this point, I did what any good engineer would do, I tested out random values. I tried sending '0x64’ which corresponded with the decimal value 100 to see if the characteristic was setting the power level on the motor. No dice!

A screencapture of writing 0x64 to a motor on a Vibease.

I noticed that the zero value being read by one of the characteristics was a hex number with 4 places, so I tried sending '0xffff’ but that didn’t work either. Bother!

A screencapture of sending 0xffff to a Vibease.

So at this point, I figured I would try something else. Instead of guessing values, I would open up the Vibease app on my phone, set the vibration on the app, and see what values the "Read Notify" characteristic emitted. The tricky thing was that I couldn’t use the NRF Connect and the Vibease app on my phone at the same time, so I had to figure out some way to connect to the vibrator from my laptop. I found an app called LightBlue on the Mac App Store and figured I could try to use that to read the values on each of the characteristics while I was controlled the vibrator from the app. For some strange reason, I couldn’t connect to the vibrator from my laptop while I was connected to it via the app on my phone. This actually isn’t strange, it makes total sense. If I were building a smart vibrator, I wouldn’t want multiple devices connected to it at the same time.

I decided to see if there were any Bluetooth sniffers for iOS. I wanted something that could run in the background and log all the messages sent over BLE from my phone. Knowing Apple’s focus on security, I figured that an app like this might not be available on an un-jailbroken iPhone but I tried my luck on it anyways. Some Googling led me to this StackOverflow post that provided some details about running Bluetooth in "Diagnostics Mode" on iOS. I wasn’t sure what kind of information I would be able to get out of the logs provided by Apple but I figured it was worth a shot. I ended up following the official instructions for Bluetooth logging on iOS linked to in the StackOverflow post to generate my log.

Side-note: What is it with Apple and all the outrageous key/button combinations they make you press to access diagnostic features on their products? I mean, I understand why they make it difficult for users to get to those features but geez I’m going to get arthritis by the end of all this!

The result of this diagnostic logging was a .tar.gz file located at the directory specified in the instructions referenced above. I unzipped the directory and discovered that it consisted of several diagnostics files.

Too many files to look through.

Oh boy, what did I get myself into now? At this point, I decided to utilize one of the most time-tested and expert-recommended problem solving techniques. It is called "click a bunch, read a bunch" and consists of opening and reading lots of files until you find one that makes sense.

I found a few files that seemed to be related to Bluetooth logging but opening them in Wireshark rendered some truly nonsensical data.

A Bluetooth log opened in Wireshark

I also found some files that referenced the Vibease app that I was using to control my vibrator. They ended up just being crash report files. It turns out that whenever I would try to connect to the vibrator from another device while the app was connected to it, the Vibease app would crash. Fun!

At this point, I’ve tried enough options to go back to the drawing board one more time. From doing some research, I discovered that sniffing BLE signals and getting a log that is fairly easy to parse in Wireshark was pretty trivial in Android. It felt like the Apple ecosystem was really limiting me here, then again I am new to this and might just be unaware of the right tools to use. I did some more Googling to see if there were any other Bluetooth sniffers available for iOS or Mac but didn’t run into anything. Most solutions recommended purchasing a device like the Ubertooth One, which is designed to help with Bluetooth experimentation. But this device has quite a hefty price tag. It retails for anywhere from 120 USD to 200 USD, a little out of my college student budget. I couldn’t find a way to sniff BLE signals on iOS from the phone the way it was done in Android.

I figure I would pause this little experiment here and post this blog post as is. If you consider yourself an expert in the Internet of Things and have some advice on how I should move forward, do let me know.

Although I didn’t reach my ultimate goal of reverse engineering the communication protocols used between my vibrator and its app, I learned quite a bit in this little adventure.

  • There is a lot going on under the hood when we use devices with BLE connectivity. It reminds me a little bit of those pictures showing what the world would look like if we could see WiFi signals. There is so much information constantly being transmitted that we are figuratively and literally blind too.
  • Running diagnostics on iOS apps yields a plethora of information. This is the first time I’ve profiled and logged my iPhone and it was interesting to see all the information available. I might end up doing something similar to diagnose issues with apps that I use that crash frequently. I might draft a blog post for it on here if I have the time.
  • Reverse engineering is fun (and sometimes frustrating).

Until next time!

Top comments (365)

Collapse
 
thomas_muller_7cbc14bce08 profile image
Thomas Muller

YOU CAN REACH OUT TO GREAT WHIP RECOVERY CYBER SERVICES FOR HELP TO RECOVER YOUR STOLEN BTC OR ETH BACK CALL:+1(406)2729101
I once fell victim to online investment scheme that cost me a devastating €254,000. I’m Thomas Muller from Berlin, Germany. The person I trusted turned out to be a fraud, and the moment I realized I’d been deceived, my entire world stopped. I immediately began searching for legitimate ways to recover my funds and hold the scammer accountable. During my search, I came across several testimonies of how Great Whip Recovery Cyber Services helped some people recover money they lost to cyber fraud, I contacted Great Whip Recovery Cyber Service team and provided all the evidence I had. Within about 36 hours, the experts traced the digital trail left by the fraudster, the individual was eventually tracked down and I recovered all my money back. You can contact them with, 

greatwhiprecoverycyberservices@ proton me

Collapse
 
patrick_lucas_c4d64c5f7f7 profile image
Patrick Lucas

Best Crypto Recovery Services consult OPTIMISTIC HACKER GAIUS

I am beyond grateful to Optimistic Hacker Gaius for recovering my scammed crypto. After losing a significant amount to a sophisticated scam, I thought all hope was lost. But Gaius stepped in, explained the process, and worked tirelessly to track and recover my funds. His professionalism and expertise were evident throughout. Thanks to him, I got everything back. If you're in a similar situation, I highly recommend reaching out to Gaius. Truly a lifesaver!"

CONTACT INF.......

MAIL BOX:   support @optimistichackargaius.co.m

WEBSITE:   https //optimistichackargaius.co.m

WHATSapp:   +44 737 674 0569

Collapse
 
murphy_aguero_01b36448a55 profile image
Murphy Aguero

Top Crypto Recovery Company: Go To ZEUS CRYPTO RECOVERY SERVICES

ZEUS Crypto Recovery Saved Me from Losing My Funds!, I was scammed out of 123,880.05 by a fake investment platform, but ZEUS Crypto Recovery Services helped me get it all back. Their team was professional, knowledgeable, and kept me informed throughout the process. They took quick action, traced the scam, and worked tirelessly to recover my funds. I’m beyond grateful for their expertise and support. If you’ve been scammed, I highly recommend ZEUS Crypto Recovery they truly deliver results

WhatsApp: +447841900082

Webpage: zeusrecoveryservices .co m

Mail-Box: support @ zeusrecoveryservices .c om

Collapse
 
hannah_chan_cbd78e4901127 profile image
Hannah Chan

There are lots of hackers online, but not all of them are as professional as this genius Vadim Albert who helped me hack into an iPhone16 within 6 hours without the owner knowing. I could see all messages, Texts, WhatsApp, Snapchat and Facebook. I honestly was amazed at the things I found out, but I am glad I was able to see the kind of person I was dating. I could see all these from my own phone without physical access to the target's phone. Take this opportunity if you need help, reach Vadim on EMA1L: VADIMWEBHACK@GMA1L C0M
He also helped a friend of mine fix his credit and got his score from low 500s to over 750 within 2 weeks. I hope you don't miss out on this opportunity.

Collapse
 
melissa_pearson_a48c3a8f9 profile image
Melissa Pearson

I am excited to share my experience about jbeespyhack @gmail.com , they're truly a top-notch supreme hacker who truly cloned my spouse's phone without any stress. As a result, I was able to access my spouse's activities including bank Apps, Text messages, Call logs, and various social media platforms such as WhatsApp, Instagram, Facebook, TikTok, WeChat, Snapchat, Twitter. They even restored all the phone-deleted text messages and other chats that were deleted from her social media accounts. Moreover, I also had full access to the phone gallery without touching the phone. With their help, I was able to see my spouse's whole secret. jbeespyhack @gmail.com also offers other services such as credit score repair, credit card limit upgrades, Clearing criminal records, improving school grades, etc.
They are very fast, and their rates are affordable. You can contact them via email, or visit their website to learn more about their services.
jbeespyhack @gmail.com

Collapse
 
brandi_jbennett_2794f48 profile image
Brandi J. Bennett

My recommendation goes to CIPHERTRACES [DOT] COM

This team was able to execute and investigate the loss of over $85,000.00 Usdt of I and my friend we have started getting our refunds and we are grateful

Collapse
 
mikes_miller_581d4e9970a6 profile image
Mikes Miller

I just have to introduce this hacker that I have been working with him on getting my credit score been boosted across the Equifax, TransUnion and Experian report. He made a lot of good changes on my credit report by erasing all the past eviction, bad collections and DUI off my credit report history and also increased my FICO score above 876 across my three credit bureaus report he also helped me with my recover my cryptocurrency that i invested in a scam cryptocurrency company you can contact him for all kind of hacks . Email him here via EMAIL ETHICALHACKERS009 @ gmail.com orwhatsapp +14106350697

Collapse
 
jessamyn_mclyntyre_f0a36f profile image
Jessamyn Mclyntyre

It’s very important you know, i used the service of hackerspytech{AT}g'mailcom to hack my husband’s phone. And it went well. I am currently in his phone without him knowing. I promised I will recommend him if it works, he was able to get into my cheating spouse iPhone

Collapse
 
elizabeth_parker_3399a64b profile image
Elizabeth Parker

I am incredibly thankful to the Professional Recovery Team, SILVERCRACKX R E C O V E R Y F I R M, for their outstanding efforts in helping me recover my lost cryptocurrency after falling victim to a fraudulent investment scheme. Their expertise, dedication, and unwavering commitment to resolving such complex issues left me in awe. The team went above and beyond, meticulously navigating the intricacies of the blockchain and outsmarting the scammers who had deceived me. Every step of the process was handled with precision and professionalism, leaving no stone unturned in their quest to restore my hard-earned money. A few months ago, I encountered a broker on Instagram who seemed highly convincing. This individual painted an enticing picture of the financial benefits I could enjoy by investing with their so-called cryptocurrency firm. As someone eager to explore opportunities in crypto investment, I thought this was the perfect chance to dive in. We exchanged messages for a while, and their persuasive tactics eventually led me to trust them enough to make several investments. At first, everything seemed legitimate, and I was even shown "profits" accumulating in my account. However, when the time came to withdraw my earnings, my excitement quickly turned to despair. The company refused to release my funds, including my initial capital and the supposed profits. Instead, they demanded additional fees under various pretenses, claiming these payments were necessary to process my withdrawal. I complied, paying the fees in good faith, only to discover it was all a ruse. They continued to create excuses, but my funds remained inaccessible. It was a devastating experience, and I felt helpless and betrayed. Determined to recover my losses, I began searching for a solution. That’s when I came across SILVERCRACKX R E C O V E R Y F I R M. From the moment I contacted them, I knew I was in capable hands. Their team demonstrated a deep understanding of blockchain technology and the tactics used by scammers. They approached my case with a methodical strategy, maintaining constant communication and updating me on their progress. In a remarkably short time, they successfully retrieved my lost funds, something I had feared was impossible. The professionalism and expertise of SILVERCRACKX R E C O V E R Y F I R M have left a lasting impression on me. Their service truly exceeded my expectations, and I cannot recommend them enough to anyone facing similar challenges. If you have been scammed or lost cryptocurrency, I urge you to reach out to this exceptional team. They specialize in recovering lost digital assets and have proven themselves to be reliable and trustworthy.

Collapse
 
mary_howard_e9feb8f167952 profile image
Mary Howard

A few months ago, I found myself caught up in excitement of cryptocurrency mining pool and its high returns. Initially it was through an online platform, the company had an impressive website with good testimonies from other customers, I was convinced to invest without knowing it was a fake crypto mining platform set up by scammers to defraud customers which I unknowingly fall for, the loss I took after getting involved with this platform almost ruined my life but Thanks to silvercrackx RECOVERY COMPANY for their intervention, help and professional service to ensure the swift recovery process of my investment with the platform. I was devastated after losing $425,000 worth of ethereum to the platform just within a few months of growing my investment, they suddenly denied me the withdrawal of my funds just when I was due to withdraw procedures and compliance for withdrawals, I tried reaching out to the customer service team but they became hard to reach. The story kept changing: first, it was a server issue, then it was additional security checks. Eventually, all communication stopped and that was when it hit me that I had been scammed. I tried using the police but they were unable to help in such a situation, I started researching online to find out if there was any way to recover my funds and that was how I came about silvercrackx RECOVERY COMPANY through a crypto blogs where people mentioned recovery firms that specializes in retrieving lost crypto from fraudulent platforms. silvercrackx RECOVERY COMPANY being the highly recommended Firm I quickly reach out to them through their contact details, they responded and requested for details and proofs of my investment with the crypto mining platform which I provided before they move on with the recovery processes. After about almost a week of their operations and professional services, they managed to recover back my investment of $425k worth of ethereum back to my wallet. it was such a huge relief for me and I’m so grateful to the team for such lifesaving help rendered.

Below is the teams contact info
E M A I L HANDLE silvercrackx @ G M A I L D O T C O M or T E L E G R A M CHANNEL @ silvercrackx.

Collapse
 
bob_dudley_e9209ac896a339 profile image
Bob Dudley

See VALOR HACK RECOVERY TEAM in action, get your questions answered live, and discover why VALOR HACK RECOVERY TEAM is recognized as a leading Investment Fraud risk & loss of Virtual Assets solution.Since the Recovery by VALOR HACK RECOVERY TEAM They literally became my real-life Marvel Hero who fights for small investors against Fraudulent Investment company who only wants to rip you off your hard earned money carelessly, and even worse, conduct fraud outright with your credentials .For years, we were always misled by Fraudulent Investment Company & False Recovery Artists who told us they would double whatever we put in not to talk of the fake recovery artist who all claimed that they’d be able to Successfully recover our invested assets but they all failed.Only after we started working with VALOR HACK RECOVERY TEAM,we realized how powerful and wonderful it is to have a top Recovery Expert by your side. VALOR HACK RECOVERY TEAM is immensely detail oriented, Knowledgeable, Professional and confident. We are more than happy with the outcome VALOR HACK RECOVERY TEAM achieved for us within just a few Days. Thank you, VALOR TEAM! .On top of that the final account error that we investors who have lost money to fraudulent investment company make is ignoring the help of Professionals & Recovery Company, especially in cases related to flagged investment accounts,or frozen accounts with little or no explanation whatsoever from the company’s customer care representative.It might interest you to know that working with a qualified recovery company like VALOR HACK RECOVERY TEAM can provide invaluable expertise, ensuring full asset recovery and accurately handling the complexities of any fraudulent investment situations.I’m seriously stressing on the importance of seeking VALOR HACK RECOVERY TEAM as their knowledge and experience can provide valuable insight not to mention detect and prevent even the most complex forms of fraud while protecting your identity from further involvement with fraud at every touchpoint. Uncover hidden insights uniquely relevant to your risk management challenges with AI-powered modeling of industry-leading data and vast networks of digital, physical, email and behavioral intelligence all just to promote & provide an ethic recovery experience. Contact VALOR TEAM today to get started !

  • EMAIL: Valorhaq at gmail dot
  • TELEGRAM: Valorhaq_HQ
Collapse
 
eulalia_inzaghi_13664e2c3 profile image
Eulalia Inzaghi

As a seasoned Chief Financial Officer, I have always prioritized caution and risk management in my decision-making process. Every financial transaction, no matter how seemingly insignificant, is meticulously scrutinized with stringent checks and balances in place to safeguard the company's assets. However, even the most vigilant professionals can fall prey to unforeseen mistakes. In my case, a single moment of inattention led to a devastating breach when I inadvertently clicked on a sophisticated phishing email. The email in question was persuasive, with impeccable branding and no discernible spelling errors or red flags. Amidst a hectic day, I clicked on the link, unwittingly granting hackers access to our corporate account. Before we could respond, they had swiftly transferred $195,000 worth of cryptocurrency, exploiting the speed and anonymity of digital transactions. The hackers then employed a common tactic, funneling the funds through multiple digital wallets to obscure the trail and render recovery virtually impossible. Our IT team worked tirelessly to track the transactions, but the complexity and anonymity of the cryptocurrency network ultimately hampered their efforts. After several days of intense investigation, they reached the disappointing conclusion that the funds were irretrievable. The loss was catastrophic, not only in financial terms but also in terms of the damage to our company's reputation.
I couldn't help but feel a deep sense of personal responsibility for the mistake, and the weight of that burden was overwhelming. In desperation, we began researching specialized firms that focused on cryptocurrency recovery, hoping against hope that they might be able to help us retrieve our lost assets. It was during this search that we discovered TECHY FORCE CYBER RETRIEVAL. This firm claimed to have the expertise and resources to tackle even the most complex cryptocurrency recovery cases. Their reputation and track record were impressive, and we decided to reach out to them in the hope that they might be able to help us recover our lost funds. As we navigated this daunting experience, we were reminded of the importance of vigilance and the need for robust security measures to protect against the ever-evolving threats in the digital landscape. Our encounter with TECHY FORCE CYBER RETRIEVAL marked the beginning of a long and challenging journey, one that would test our resolve and push us to re-examine our approach to risk management and cybersecurity.

WhatsApp. + 1.5.6.1.7.2.6.3.6.9.7

Website. w.w.w.techyforcecyberretrieval.com

Some comments may only be visible to logged-in visitors. Sign in to view all comments.