4

Someone found a Clearnet IP in the source code that appears to belong to a hosting company in Sweden. Proof.

function updateBuddyList() { var debugUrl = "http://**194.9.94.82**/ajax?t=chat&c=buddies"; var usedUrl = useDebug ? debugUrl : "./ajax?t=chat&c=buddies"; $.ajax({ url: usedUrl }) .done(function( data ) { var d = JSON.parse(data); if (d.length > 0) { var htm = ''; for (var i in d) { statX[d[i].userName] = d[i].status; htm += '<div class="buddy dontwrap" id="buddyAround_' + d[i].userName + '" onclick="talkTo(\'' + d[i].userName + '\')">' + d[i].status + d[i].userName + '<\/div>'; } $('#chatListBuddies').html(htm);

        $('#chatListContainer').css('display' , 'block');
    } else {
        $('#chatListContainer').css('display' , 'none');
    }
});

}

Apparently it has been there for nine months, so if the location of the servers wasn't already known, it definitely is now.

Someone found a [Clearnet IP](https://www.reddit.com/r/DarkNetMarkets/comments/6ojwht/dreammarket_important_opsec_issue_leave_market/) in the source code that appears to belong to a hosting company in Sweden. [Proof.](https://www.whois.com/whois/194.9.94.82) `function updateBuddyList() { var debugUrl = "http://**194.9.94.82**/ajax?t=chat&c=buddies"; var usedUrl = useDebug ? debugUrl : "./ajax?t=chat&c=buddies"; $.ajax({ url: usedUrl }) .done(function( data ) { var d = JSON.parse(data); if (d.length > 0) { var htm = ''; for (var i in d) { statX[d[i].userName] = d[i].status; htm += '<div class="buddy dontwrap" id="buddyAround_' + d[i].userName + '" onclick="talkTo(\'' + d[i].userName + '\')">' + d[i].status + d[i].userName + '<\/div>'; } $('#chatListBuddies').html(htm);` $('#chatListContainer').css('display' , 'block'); } else { $('#chatListContainer').css('display' , 'none'); } }); } Apparently it has been there for nine months, so if the location of the servers wasn't already known, it definitely is now.

No comments, yet...