all files / src/checks/server/ check_cross_domain.js

100% Statements 25/25
100% Branches 10/10
100% Functions 4/4
100% Lines 25/25
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                                                                                                                                                                                                                                      261× 261× 261× 174×                                    
/**
 * @license Apache-2.0
 * Copyright (C) 2016 The Sitecheck Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
"use strict";
 
var Check = require('../../check');
var request = require('../../requestwrapper');
const CONSTANTS = require("../../constants.js");
var cheerio = require('cheerio');
 
const SECURED_DOMAINS = [
    ".akamai.net",
    ".akamaiedge.net",
    ".akamaihd.net",
    ".edgesuite.net",
    ".edgekey.net",
    ".srip.ne",
    ".akamaitechnologies.com",
    ".akamaitechnologies.fr",
    ".llnwd.net",
    "edgecastcdn.net",
    ".systemcdn.net",
    ".transactcdn.net",
    ".v1cdn.net",
    ".v2cdn.net",
    ".v3cdn.net",
    ".v4cdn.net",
    ".v5cdn.net",
    "hwcdn.net",
    ".simplecdn.net",
    ".instacontent.net",
    ".footprint.net",
    ".ay1.b.yahoo.com",
    ".yimg.",
    ".yahooapis.com",
    ".google.",
    "googlesyndication.",
    "youtube.",
    ".googleusercontent.com",
    "googlehosted.com",
    ".gstatic.com",
    ".insnw.net",
    ".inscname.net",
    ".internapcdn.net",
    ".cloudfront.net",
    ".netdna-cdn.com",
    ".netdna-ssl.com",
    ".netdna.com",
    ".cotcdn.net",
    ".cachefly.net",
    "bo.lt",
    ".cloudflare.com",
    ".afxcdn.net",
    ".lxdns.com",
    ".att-dsa.net",
    ".vo.msecnd.net",
    ".voxcdn.net",
    ".bluehatnetwork.com",
    ".swiftcdn1.com",
    ".cdngc.net",
    ".gccdn.net",
    ".panthercdn.com",
    ".fastly.net",
    ".nocookie.net",
    ".gslb.taobao.com",
    ".gslb.tbcache.com",
    ".mirror-image.net",
    ".yottaa.net",
    ".cubecdn.net",
    ".r.cdn77.net",
    ".incapdns.net",
    ".bitgravity.com",
    ".r.worldcdn.net",
    ".r.worldssl.net",
    "tbcdn.cn",
    ".taobaocdn.com",
    ".ngenix.net",
    ".pagerain.net",
    ".ccgslb.com",
    "cdn.sfr.net",
    ".azioncdn.net",
    ".azioncdn.com",
    ".azion.net",
    ".cdncloud.net.au",
    ".rncdn1.com",
    ".cdnsun.net",
    ".mncdn.com",
    ".mncdn.net",
    ".mncdn.org",
    "cdn.jsdelivr.net",
    ".nyiftw.net",
    ".nyiftw.com",
    ".resrc.it",
    ".zenedge.net",
    ".lswcdn.net",
    ".revcn.net",
    ".revdn.net",
    ".caspowa.com",
];
 
module.exports = class CheckCrossDomain extends Check {
 
    constructor(target) {
        super(CONSTANTS.TARGETTYPE.SERVER, CONSTANTS.CHECKFAMILY.SECURITY, false, true, target);
    }
 
    _check(cancellationToken, done) {
        let self = this;
        let timeout = 3000;
        let found = false;
        request.get({ url: self.target.uri, timeout: timeout, cancellationToken: cancellationToken }, function (err, res, body) {
            if (self._handleError(err)) {
                done();
                return;
            }
 
            let $ = cheerio.load(body);
            $('script').each(function () {
                for (let reg of SECURED_DOMAINS) {
                    let currentDomain = self.target.uri.hostname;
                    let matched = $(this).attr('src');
                    if (matched !== undefined) {
                        if (matched.indexOf(currentDomain) === -1 && matched.indexOf(reg) !== -1) {
                            found = true;
                        }
                    }
                }
            });
            if (!found) {
                self._raiseIssue("warning_cross_domain.xml", null, "There is a script tag which contains potentially insecured Javascript source at url'" + res.request.uri.href + "' this is not recommanded to delegate security to a third party website.", true);
            }
            done();
        });
    }
 
    /*extractDomain(url) {
        var domain;
        //find & remove protocol (http, ftp, etc.) and get domain
        domain = url.split('/')[2];
        //find & remove port number
        domain = domain.split(':')[0];
 
        return domain;
    }*/
};