Skip to content
Snippets Groups Projects
Commit f16a81c2 authored by Thomas Rientjes's avatar Thomas Rientjes
Browse files

Update undetectable tainted domains

parent 4396c1c9
No related branches found
Tags v1.3.5
No related merge requests found
......@@ -60,7 +60,6 @@ var storage = simpleStorage.storage;
*/
var undetectableTaintedDomains = {
'api-maps.yandex.ru': true,
'direct.yandex.com': true,
'direct.yandex.ru': true,
'disk.yandex.com': true,
......@@ -71,6 +70,8 @@ var undetectableTaintedDomains = {
'news.yandex.ru': true,
'news.yandex.ua': true,
'passport.twitch.tv': true,
'taxi.yandex.com': true,
'taxi.yandex.ru': true,
'ya.ru': true,
'yandex.com': true,
'yandex.ru': true
......@@ -80,7 +81,20 @@ var undetectableTaintedDomains = {
* Initializations
*/
storage.taintedDomains = storage.taintedDomains || undetectableTaintedDomains;
Object.extend = function (destination, source) {
for (var property in source) {
if (source.hasOwnProperty(property)) {
destination[property] = source[property];
}
}
return destination;
};
storage.taintedDomains = storage.taintedDomains || {};
storage.taintedDomains = Object.extend(storage.taintedDomains, undetectableTaintedDomains);
/**
* Load Watcher Class
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment