-
Notifications
You must be signed in to change notification settings - Fork 75
/
core_injection.js
184 lines (157 loc) · 4.92 KB
/
core_injection.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
injectScript('core/ws_hook.js'); // important to inject as early as possible
injectOtherScripts();
async function injectOtherScripts()
{
injectScript('core/parsing/binary_reader.js');
injectScript('core/parsing/binary_writer.js');
injectScript('core/parsing/node_reader_writer.js');
injectScript('core/parsing/protobuf/WhisperTextProtocol.js');
injectScript('core/parsing/protobuf/WAProto.js');
injectScript('lib/pbf.3.0.5.min.js');
injectScript('lib/libsignal-protocol-ee5b8ba.min.js');
injectScript('lib/pako.js');
injectScript('core/utils.js');
injectScript('core/ui_class_names.js');
injectScript('core/injected_ui.js');
await injectScript('core/multi_device.js');
await injectScript('core/node_handler.js');
injectScript('core/interception.js');
setTimeout(
function() {injectScript('lib/moduleraid.js');},
10);
}
function injectScript(scriptName)
{
return new Promise(function(resolve, reject) {
var s = document.createElement('script');
s.src = chrome.runtime.getURL(scriptName);
s.onload = function() {
this.parentNode.removeChild(this);
resolve(true);
};
(document.head||document.documentElement).appendChild(s);
});
}
// Inline script injection might not work due to Content-Security-Policy
function injectFunctionInstantly(injectedFunction)
{
// Reading from disk seems to slow down the injection
/* var response = await fetch(chrome.runtime.getURL(scriptName));
var text = new TextDecoder("utf-8").decode(await response.body.getReader().read().value); */
var s = document.createElement('script');
var functionText = injectedFunction.toString();
s.textContent = functionText.substring(functionText.indexOf('{') + 1, functionText.length - 1);
(document.head||document.documentElement).appendChild(s);
}
async function injectFromDisk(scriptNames)
{
// Reading from disk seems to slow down the injection
var text;
for (var i = 0; i < scriptNames.length; i++)
{
var scriptName = scriptNames[i];
console.log("looking at " + scriptName);
var response = await fetch(chrome.runtime.getURL(scriptName));
var scriptText = new TextDecoder("utf-8").decode(await response.body.getReader().read().value);
text += "\r\n\r\n" + scriptText;
}
var s = document.createElement('script');
s.textContent = text;
(document.head||document.documentElement).appendChild(s);
}
function webScoketInterception()
{
// wsHook - WebSocket Interception
// based on https://github.com/skepticfx/wshook
var wsHook = {};
(function()
{
var before = wsHook.before = function(data, url)
{
return data;
};
var after = wsHook.after = function(e, url)
{
return e;
};
wsHook.resetHooks = function()
{
wsHook.before = before;
wsHook.after = after;
}
var _WS = WebSocket;
WebSocket = function(url, protocols)
{
var WSObject;
this.url = url;
this.protocols = protocols;
if (!this.protocols)
WSObject = new _WS(url);
else
WSObject = new _WS(url, protocols);
var _send = WSObject.send;
var _wsobject = this;
wsHook._send = WSObject.send = function(data)
{
//data = wsHook.before(data, WSObject.url) || data;
new wsHook.before(data, WSObject.url).then(function (newData)
{
if (newData != null)
_send.apply(WSObject, [newData]);
}).catch(function(e)
{
console.error(e);
_send.apply(WSObject, [data]);
});
}
// Events needs to be proxied and bubbled down.
var onmessageFunction;
WSObject.__defineSetter__('onmessage', function(func)
{
onmessageFunction = wsHook.onMessage = func;
});
WSObject.addEventListener('message', function(event)
{
if (!onmessageFunction)
{
console.log("warning: no onmessageFunction");
return;
}
wsHook.after(new MutableMessageEvent(event), this.url).then(function(modifiedEvent)
{
if (modifiedEvent != null)
onmessageFunction.apply(this, [modifiedEvent]);
}).catch(function(e)
{
console.error(e);
onmessageFunction.apply(this, [event]);
});
//e = new MessageEvent(e.type, e);
});
return WSObject;
}
})();
// Mutable MessageEvent.
// Subclasses MessageEvent and makes data, origin and other MessageEvent properites mutatble.
function MutableMessageEvent(o)
{
this.bubbles = o.bubbles || false;
this.cancelBubble = o.cancelBubble || false;
this.cancelable = o.cancelable || false;
this.currentTarget = o.currentTarget || null;
this.data = o.data || null;
this.defaultPrevented = o.defaultPrevented || false;
this.eventPhase = o.eventPhase || 0;
this.lastEventId = o.lastEventId || "";
this.origin = o.origin || "";
this.path = o.path || new Array(0);
this.ports = o.parts || new Array(0);
this.returnValue = o.returnValue || true;
this.source = o.source || null;
this.srcElement = o.srcElement || null;
this.target = o.target || null;
this.timeStamp = o.timeStamp || null;
this.type = o.type || "message";
this.__proto__ = o.__proto__ || MessageEvent.__proto__;
}
}