You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
session-desktop/libtextsecure
Lilia 50c470e53d
Certificate pinning via node XMLHttpRequest implementation (#1394)
* Add certificate pinning on https service requests

Make https requests to the server using node apis instead of browser apis, so we
can specify our own CA list, which contains only our own CA.

This protects us from MITM by a rogue CA.

As a bonus, this let's us drop the use of non-standard ports and just use good
ol' default 443 all the time, at least for http requests.

// FREEBIE

* Make certificateAuthorities an option on requests

Modify node-based xhr implementation based on driverdan/node-XMLHttpRequest,
adding support for setting certificate authorities on each request.

This allows us to pin our master CA for requests to the server and cdn but not
to the s3 attachment server, for instance. Also fix an exception when sending
binary data in a request: it is submitted as an array buffer, and must be
converted to a node Buffer since we are now using a node based request api.

// FREEBIE

* Import node-based xhr implementation

Add a copy of https://github.com/driverdan/node-XMLHttpRequest@86ff70e, and
expose it to the renderer in the preload script.

In later commits this module will be extended to support custom certificate
authorities.

// FREEBIE

* Support "arraybuffer" responseType on requests

When fetching attachments, we want the result as binary data rather than a utf8
string. This lets our node-based XMLHttpRequest honor the responseType property
if it is set on the xhr.

Note that naively using the raw `.buffer` from a node Buffer won't work, since
it is a reuseable backing buffer that is often much larger than the actual
content defined by the Buffer's offset and length.

Instead, we'll prepare a return buffer based on the response's content length
header, and incrementally write chunks of data into it as they arrive.

// FREEBIE

* Switch to self-signed server endpoint

* Log more error info on failed requests

With the node-based xhr, relevant error info are stored in statusText and
responseText when a request fails.

// FREEBIE

* Add node-based websocket w/ support for custom CA

// FREEBIE

* Support handling array buffers instead of blobs

Our node-based websocket calls onmessage with an arraybuffer instead of a blob.
For robustness (on the off chance we switch or update the socket implementation
agian) I've kept the machinery for converting blobs to array buffers.

// FREEBIE

* Destroy all wacky server ports

// FREEBIE
8 years ago
..
storage Cache messages on receipt, remove from cache when processed 8 years ago
test createTaskWithTimeout: Don't log expiration if task threw (#1412) 8 years ago
ProvisioningCipher.js Set theme based on master device userAgent 9 years ago
account_manager.js Certificate pinning via node XMLHttpRequest implementation (#1394) 8 years ago
api.js Certificate pinning via node XMLHttpRequest implementation (#1394) 8 years ago
components.js Move jquery from libtextsecure components 10 years ago
contacts_parser.js Support for group sync 10 years ago
crypto.js Cleanup attachment attributes 8 years ago
errors.js Decrypt any IncomingIdentityKeyError still sticking around 8 years ago
event_target.js Animated loading screens on startup and first conversation load 8 years ago
helpers.js Move, rename, and simplify toArrayBuffer helper 9 years ago
key_worker.js Remove erroneous license file and headers 10 years ago
libsignal-protocol.js Set messageKeysLimit to unlimited if communicating with our devices (#1348) 8 years ago
message_receiver.js Certificate pinning via node XMLHttpRequest implementation (#1394) 8 years ago
outgoing_message.js Fix for "Can't find record for undefined.1" 8 years ago
protobufs.js Protobufs: More logging on failure to load protobufs, fix tests 8 years ago
protocol_wrapper.js Update libsignal-protocol v0.9.0 9 years ago
sendmessage.js Certificate pinning via node XMLHttpRequest implementation (#1394) 8 years ago
storage.js Remove erroneous license file and headers 10 years ago
stringview.js Remove erroneous license file and headers 10 years ago
sync_request.js Add logging to help track down problems with Sync 8 years ago
task_with_timeout.js createTaskWithTimeout: Don't log expiration if task threw (#1412) 8 years ago
websocket-resources.js Certificate pinning via node XMLHttpRequest implementation (#1394) 8 years ago