What to do with a QR code from web.whatsapp.com?

qr-code

I'm trying to run whatsapp web from the PC web browser.

web.whatsapp.com

enter image description here

I have no camera to read and process the QR-code generated.

Then I used this website to read the image and it gives me the following string:

1@wQ6XTiEmEYSbopFLeZhyeYpTBuXNkUgS6t21o4BfCpMamxgjpSjnJ1KN,5HnBeFEQlOLz1eUij+0svtffHpSvOvexDJX+nts0TDA=,Gd2eq2kDLGpWQp5rrzRHqw==

I know that some QR-codes are actually urls, but not this one. Now, how to proceed with this QRCode?

Best Answer

The output of the QR reader is a Base 64 string,1 which can be decoded here. however, decoding it gives garbage text

:]8FnE-a)L6E Kv֎|*Ljl`J7DBSW?_|zR2W{l0ݞi,jVBk4G

which means it's probably bit of binary data, in some format that WhatsApp would recognize. This makes sense, because Base64 is often used to encode binary data in a format (such as a QR code) that only allows plain text.

Figuring out more would require you to know about the internal workings of WhatsApp. Actually using it would require feeding this base64 string into WhatsApp in such a way that the app thought this was coming from the QR Reader/Camera. Easier said than done!

1 Not every base64 string ends with ==, but having that at the end is a dead giveaway.

Related Question