
Datajack Proxy allows you to intercept TLS traffic in native x86 applications across platforms
Datajack Proxy a tool to intercept non-HTTP traffic between a native application and a server. This would allow for communications interception and modification, even if encryption and certificate pinning were in use. This is done by hooking the application and intercepting calls to common socket and TLS libraries, and reading the data prior to encryption (for outbound) and after decryption (for inbound).
This is accomplished by injecting JavaScript into the native process using the Frida API.
Note: Currently only Linux and Windows are supported. Linux supports the OpenSSL calls SSL_Write and SSL_Read.
Help
python DatajackProxy.py -h
Attach
Attach to existing process <pid>
python DatajackProxy.py -p <pid>
Attach to existing process with name <processName>
python DatajackProxy.py -n <processName>
Attach to Windows process with name OUTLOOK.EXE
python DatajackProxy.py -n OUTLOOK.EXE -o windows
pip3 install fridagit clone [email protected]:cwatt/DatajackProxy.git