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/js
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
..
models Remove dead code 8 years ago
views Import: Wait until db writes resolve before saying we're done (#1401) 8 years ago
Mp3LameEncoder.min.js Add voice notes 9 years ago
WebAudioRecorderMp3.js Add voice notes 9 years ago
XMLHttpRequest.js Certificate pinning via node XMLHttpRequest implementation (#1394) 8 years ago
background.js Certificate pinning via node XMLHttpRequest implementation (#1394) 8 years ago
backup.js Separate dir selection from import, better import button text 8 years ago
chromium.js Remove extension.notification 8 years ago
components.js Introduce new filesize dependency 8 years ago
conversation_controller.js Remove dead code 8 years ago
database.js Flatten database migrations 8 years ago
debugLog.js Note how many debug logs we have after we load them from DB 8 years ago
delivery_receipts.js Additional logging when we get delivery receipt for unknown msg 8 years ago
emoji_util.js Use relative paths 8 years ago
expire.js Build expiration date 8 years ago
expiring_messages.js Fetch all conversations on startup of app, not on inbox load (#1437) 8 years ago
focus_listener.js Move focus listeners to their own file 8 years ago
i18n.js Use correct locale, fall back to en if we don't have translations 8 years ago
keychange_listener.js Fetch conversations once, clean up ConversationController API (#1420) 8 years ago
libphonenumber-util.js Refactor number parsing and validation 9 years ago
libsignal-protocol-worker.js Update libsignal-protocol v1.0.0 9 years ago
libtextsecure.js Certificate pinning via node XMLHttpRequest implementation (#1394) 8 years ago
notifications.js Remove remaining call to extension.notification.update 8 years ago
read_receipts.js Read/Delivery Receipts: Wait for resolution in main queue 8 years ago
registration.js Refactor registration event 9 years ago
reliable_trigger.js Apply reliable trigger to Backbone.Collection as well 8 years ago
rotate_signed_prekey_listener.js Reschedule all timers on time travel, set interval back to 1000ms 8 years ago
signal_protocol_store.js isUntrusted: Return false if firstUse is true 8 years ago
spell_check.js Merge locale-provided strings into english for failover support 8 years ago
storage.js Import: Wait until db writes resolve before saying we're done (#1401) 8 years ago
wall_clock_listener.js Reschedule all timers on time travel, set interval back to 1000ms 8 years ago