https://www.facebook.com/share/v/1CYSuoMaNy/ Caiu na Rede - Quarta 15/04/2026 ---------------------------------- Caiu na Rede- Com Enio Alexandre, Flavinho Silveira e Gean Souza. ------------------------------- Sua semana jamais será a mesma... Tudo sobre Brasil e o mundo aqui no Caiu na Rede. De segunda a sexta, das 08:00 as 09:00. ---------------------------------- Participe através de nossos canais YouTube e Facebook do Portal Via Direta e Caiu na Rede Brasil Spotify do Caiu na Rede https://www.facebook.com/portalviadiretanoticias
This tool was created during our research at Checkpoint Software Technologies on Whatsapp Protocol (This repository will be updated after BlackHat 2019)
Copy stdint.h to C:\Users\Administrator\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\include
Execute the command pip install -r requirements.txt
On Linux/Mac use python2 -m pip install -r requirements.txt
About the extension
This extension allow you to view and manipulate the actual data that sent via whatsapp.
Open chrome developer tool and break on keyPair: t, (line 3311) and wait until the keys will appear (5 minutes or so).
Run the decoder server which is parser.py (in helper dir).
Install burpWhatsapp.py to your burp suite extensions.
Break get the keys from step 1.
get the secret parameter from the websocket in burp websocket history.
Functionality
Decrypt incoming data, you have to paste the data as base64 to the extension ctrl+b
Encrypt incoming data, after you decrypt the data you can encrypt and put it back to burp by copy pase the base64 and ctrl+shift+b
Decrypt outgoing data, to decrypt outgoing data you have to take it from AesCbcEncrypt function in list format.
Encrypt outgoing data, after the extension encrypt the data back you have to put it back via the console.
you can use the following helper function to do that:
functionstr2unit8(str) {
var buf =newArrayBuffer(str.length);
var bufView =newUint8Array(buf);
for (var i=0, strLen=str.length; i < strLen; i++) {
bufView[i] = str[i];
}
return buf;
}
TO-DO
The extension currently can decrypt and encrypt only the message related functionality, in order to add more function you have to map the protobuf and add it to our protobuf file.
Comentários
Postar um comentário