This demo shows the power of using KeyLines combos with the time bar.
The data1 contains details of the top three ransomware families from January to April 2016. The chart starts with a high-level view of the data, with connections between:
- combos containing malware hosts for each family
- combos containing IP addresses registered in countries from which the attacks originated
Reducing clutter with combos
This is a large, complex dataset, yet the combos feature means the chart remains clean, uncluttered and easy to interact with. The detail is there when you want it, giving immediate insight by revealing malware host details. To compare how much harder it’d be to understand the data without combos, try selecting and then uncombining items.
Filtering time-based data
The histogram shows at a glance the level of ransomware activity at certain points in time. The time bar selection line compares the activity of an item selected in the chart against total activity. You can also zoom in to the time bar to filter the hosts, ransomware families and countries that were active at a particular time.
About ransomware
Ransomware is a type of malware that holds a victim's computer "hostage", typically by encrypting data and then demanding payment to receive a decryption key. The number of attacks continues to grow significantly year on year, with increasingly sophisticated attack vectors and distribution methods.
1 Ransomware Tracker hosted on abuse.ch.
Key functions used:
- chart.filter
- chart.selection
- chart.combo().combine
- chart.combo().isCombo
- chart.combo().uncombine
- chart.graph().neighbours
- timebar.inRange
- Chart Events
- Time bar Events
import KeyLines from "keylines";
import { data, comboData, ransomwareColours } from "./data.js";
let chart;
let timebar;
// Scale the closed combo sizes at slightly less than the square root of their
// node count so that the larger combos (e.g. USA) don't dominate too much
// and the smaller combos aren't too tiny
const scalePower = 0.4;
function isCombo(ids) {
return chart.combo().isCombo(ids, { type: "node" });
}
function showRansomware(item) {
const checked = [...document.querySelectorAll('input[name="ransomware"]:checked')];
return checked.some((c) => item.d.ransomware === c.id);
}
function enableButton(type, enable) {
document.getElementById(`${type}Run`).disabled = !enable;
}
function layout(mode = "full") {
const layoutType = document.getElementById("layoutType").value;
const opts = layoutType === "organic" ? { mode } : {};
chart.layout(layoutType, opts);
}
function timebarFilterCriteria(item) {
// If the ransomware is not checked
if (item.d.ransomware && !showRansomware(item)) {
return false;
}
if (item.d.type === "ip") {
const hosts = item.d.host;
return hosts.some((host) => timebar.inRange(host));
}
if (item.d.type === "host") {
return timebar.inRange(item.id);
}
return false; // Other cases should return false
}
async function timebarChange() {
// filter the chart to show only items in the new range
const changes = await chart.filter(timebarFilterCriteria, {
type: "node",
animate: false,
hideSingletons: true,
});
// update the size of the combo based on the changes object returned by the filter
const visualProperties = changes.combos.nodes.map((comboInfo) => ({
id: comboInfo.id,
e: comboInfo.nodes.length ** scalePower,
}));
// When playing the timebar sometimes it can be helpful to overwrite previous animations
// => queue: false
await chart.animateProperties(visualProperties, { time: 300, queue: false });
}
function isOnlyCombos(items) {
return items.length && items.every((item) => isCombo(item.id));
}
function isOnlyTypeSelected(type, items) {
return items.every((item) => item.d.type === type);
}
function groupByRansomware(items) {
const result = {};
items.forEach((item) => {
const group = item.d.ransomware;
if (result[group]) {
result[group].push(item);
} else {
result[group] = [item];
}
});
return result;
}
function ransomwareSelection(nodes, countrySelected, subsetHost) {
return Object.entries(groupByRansomware(nodes)).map(([name, group], index) => {
let ids;
const firstItem = group[0];
if (isCombo(firstItem.id)) {
if (countrySelected) {
ids = firstItem.d.lookup[countrySelected].filter((id) =>
subsetHost ? subsetHost.includes(id) : true
);
} else {
// Selected a ransomware
ids = [];
Object.values(firstItem.d.lookup).forEach((i) => {
ids = ids.concat(i);
});
}
} else {
ids = group.map((item) => item.id);
}
return { id: ids, index, c: ransomwareColours[name] };
});
}
function chartSelectionChange() {
// Reset the previous timebar selection
timebar.selection([]);
// Get only the nodes within the selection
const selection = chart.getItem(chart.selection());
// Enable or disable the uncombine button
enableButton("uncombine", isOnlyCombos(selection));
let tbSelection = []; // The new selection of the timebar
// show the trend of the ransomwares for the country combo and ip nodes
if (isOnlyTypeSelected("ip", selection)) {
const neighbours = {};
const hosts = {};
// For each country
selection.forEach((ip) => {
neighbours[ip.d.country] = neighbours[ip.d.country] || [];
neighbours[ip.d.country] = neighbours[ip.d.country].concat(
chart.graph().neighbours(ip.id).nodes
);
if (ip.d.host) {
hosts[ip.d.country] = hosts[ip.d.country] || [];
hosts[ip.d.country] = hosts[ip.d.country].concat(ip.d.host);
}
});
// For every neighbour to selected countries
Object.entries(neighbours).forEach(([country, nodes]) => {
// Get the timebar selection
const newSelection = ransomwareSelection(chart.getItem(nodes), country, hosts[country]);
tbSelection = tbSelection.concat(newSelection);
});
}
// Show the trend for the ransomware combos and host nodes
if (isOnlyTypeSelected("host", selection)) {
tbSelection = ransomwareSelection(selection);
}
timebar.selection(tbSelection); // Set the new selection to the timebar
}
function selectionChangeAndLayout() {
chartSelectionChange();
layout("adaptive");
}
async function filterRansomware() {
await timebarChange();
selectionChangeAndLayout();
}
function uncombineAction() {
chart.combo().uncombine(chart.selection(), { animate: false, select: false });
// run the filter of ransomware
filterRansomware();
// Enable the combine button
enableButton("combine", true);
}
async function combineAction() {
// Find combos that have been uncombined
// Filter out ones that are still combos as otherwise, Keylines raises an error
const toBeCombined = comboData.filter(({ ids }) => chart.combo().find(ids[0]) === null);
await chart
.combo()
.combine(toBeCombined, { select: false, animate: false, arrange: "concentric" });
// run the filter of ransomware
filterRansomware();
// Disable the combine button
enableButton("combine", false);
}
function initialiseEvents() {
chart.on("selection-change", chartSelectionChange); // Align the chart selection to the timebar
timebar.on("change", timebarChange); // Filter the nodes to match the timebar range
document.getElementById("layoutRun").addEventListener("click", () => layout()); // Run the layout
document.getElementById("layoutType").addEventListener("change", () => layout()); // Run the layout when choosing a layout
document.getElementById("combineRun").addEventListener("click", combineAction); // Combine all the nodes
document.getElementById("uncombineRun").addEventListener("click", uncombineAction); // Uncombine selected nodes
document.querySelectorAll('input[name="ransomware"]').forEach((btn) => {
// Filter the ransomwares
btn.addEventListener("change", filterRansomware);
btn.addEventListener("keyup", filterRansomware);
});
}
async function startKeyLines() {
const chartOptions = {
logo: "/images/Logo.png",
hover: 100,
marqueeLinkSelection: "off",
imageAlignment: {
"/images/icons/virus.svg": { e: 0.9 },
},
selectedNode: {
fb: true,
ha0: {
c: "#555",
r: "31",
w: "3",
},
oc: { bw: 20 },
},
iconFontFamily: "Font Awesome 5 Free",
handMode: true,
};
[chart, timebar] = await KeyLines.create([
{
container: "klchart",
type: "chart",
options: chartOptions,
},
{
container: "kltimebar",
type: "timebar",
options: { showExtend: true },
},
]);
chart.load(data);
timebar.load(data);
// Fit the initial view to the loaded data
chart.zoom("fit", { animate: false });
timebar.zoom("fit", { animate: false });
combineAction();
initialiseEvents();
}
function loadKeyLines() {
document.fonts.load('24px "Font Awesome 5 Free"').then(startKeyLines);
}
window.addEventListener("DOMContentLoaded", loadKeyLines); import KeyLines from "keylines";
export const data = {
type: "LinkChart",
items: [
{
id: "host-cwprfpjtmjb.biz",
type: "node",
t: "Host\ncwprfpjtmjb.biz",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "USA",
},
e: 1,
dt: [1461956160000],
},
{
id: "69.195.129.70",
type: "node",
t: "69.195.129.70",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: [
"host-cwprfpjtmjb.biz",
"host-blxbymhjva.info",
"host-sqrgvbgfyya.org",
"host-dwytqrgblrynsgtew.org",
"host-hmndhdbscgru.pw",
"host-uxvvm.us",
"host-luvenxj.uk",
],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-83.217.8.155",
type: "node",
t: "Host\n83.217.8.155",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Russia",
},
e: 1,
dt: [1461946860000],
},
{
id: "83.217.8.155",
type: "node",
t: "83.217.8.155",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Russia",
host: ["host-83.217.8.155"],
},
e: 1,
g: [
{
u: "/images/flags/russia.svg",
p: "ne",
},
],
},
{
id: "host-89.108.84.155",
type: "node",
t: "Host\n89.108.84.155",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Russia",
},
e: 1,
dt: [1461929940000],
},
{
id: "89.108.84.155",
type: "node",
t: "89.108.84.155",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Russia",
host: ["host-89.108.84.155"],
},
e: 1,
g: [
{
u: "/images/flags/russia.svg",
p: "ne",
},
],
},
{
id: "host-gmtuae.com",
type: "node",
t: "Host\ngmtuae.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "Brunei",
},
e: 1,
dt: [1461900480000],
},
{
id: "182.50.158.108",
type: "node",
t: "182.50.158.108",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Brunei",
host: ["host-gmtuae.com"],
},
e: 1,
g: [
{
u: "/images/flags/brunei.svg",
p: "ne",
},
],
},
{
id: "host-91.234.32.19",
type: "node",
t: "Host\n91.234.32.19",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Ukraine",
},
e: 1,
dt: [1461876240000],
},
{
id: "91.234.32.19",
type: "node",
t: "91.234.32.19",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Ukraine",
host: ["host-91.234.32.19"],
},
e: 1,
g: [
{
u: "/images/flags/ukraine.svg",
p: "ne",
},
],
},
{
id: "host-faenzabike.makkie.com",
type: "node",
t: "Host\nfaenzabike.makkie.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "Italy",
},
e: 1,
dt: [1461873060000],
},
{
id: "213.26.174.81",
type: "node",
t: "213.26.174.81",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Italy",
host: ["host-faenzabike.makkie.com"],
},
e: 1,
g: [
{
u: "/images/flags/italy.svg",
p: "ne",
},
],
},
{
id: "host-51.254.240.60",
type: "node",
t: "Host\n51.254.240.60",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "France",
},
e: 1,
dt: [1461862800000],
},
{
id: "51.254.240.60",
type: "node",
t: "51.254.240.60",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "France",
host: ["host-51.254.240.60"],
},
e: 1,
g: [
{
u: "/images/flags/france.svg",
p: "ne",
},
],
},
{
id: "host-axnemuevqnstqyflb.work",
type: "node",
t: "Host\naxnemuevqnstqyflb.work",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Rep Czech",
},
e: 1,
dt: [1461858660000],
},
{
id: "31.148.99.188",
type: "node",
t: "31.148.99.188",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Rep Czech",
host: ["host-axnemuevqnstqyflb.work"],
},
e: 1,
g: [
{
u: "/images/flags/czech-republic.svg",
p: "ne",
},
],
},
{
id: "host-83.217.26.168",
type: "node",
t: "Host\n83.217.26.168",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Russia",
},
e: 1,
dt: [1461852600000],
},
{
id: "83.217.26.168",
type: "node",
t: "83.217.26.168",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Russia",
host: ["host-83.217.26.168"],
},
e: 1,
g: [
{
u: "/images/flags/russia.svg",
p: "ne",
},
],
},
{
id: "host-bestinghana.com",
type: "node",
t: "Host\nbestinghana.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1461843480000],
},
{
id: "184.168.51.1",
type: "node",
t: "184.168.51.1",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-bestinghana.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-coolcases.info",
type: "node",
t: "Host\ncoolcases.info",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1461820200000],
},
{
id: "72.167.232.144",
type: "node",
t: "72.167.232.144",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-coolcases.info"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-htankds.info",
type: "node",
t: "Host\nhtankds.info",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Ukraine",
},
e: 1,
dt: [1461816000000],
},
{
id: "91.219.31.18",
type: "node",
t: "91.219.31.18",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Ukraine",
host: ["host-htankds.info"],
},
e: 1,
g: [
{
u: "/images/flags/ukraine.svg",
p: "ne",
},
],
},
{
id: "host-107.170.20.33",
type: "node",
t: "Host\n107.170.20.33",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "USA",
},
e: 1,
dt: [1461784740000],
},
{
id: "107.170.20.33",
type: "node",
t: "107.170.20.33",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-107.170.20.33"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-runescape-autominer.info",
type: "node",
t: "Host\nrunescape-autominer.info",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1461772260000],
},
{
id: "192.185.46.61",
type: "node",
t: "192.185.46.61",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-runescape-autominer.info"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-www.teacherassist.info",
type: "node",
t: "Host\nwww.teacherassist.info",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "Belgium",
},
e: 1,
dt: [1461768120000],
},
{
id: "94.124.120.61",
type: "node",
t: "94.124.120.61",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Belgium",
host: ["host-www.teacherassist.info"],
},
e: 1,
g: [
{
u: "/images/flags/belgium.svg",
p: "ne",
},
],
},
{
id: "host-kortingcodes.be",
type: "node",
t: "Host\nkortingcodes.be",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1461690360000],
},
{
id: "108.167.181.253",
type: "node",
t: "108.167.181.253",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-kortingcodes.be"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-custommerchandisingservices.com",
type: "node",
t: "Host\ncustommerchandisingservices.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1461647280000],
},
{
id: "45.79.161.27",
type: "node",
t: "45.79.161.27",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-custommerchandisingservices.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-bonjourtablier.com",
type: "node",
t: "Host\nbonjourtablier.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "Germany",
},
e: 1,
dt: [1461442680000],
},
{
id: "212.227.247.229",
type: "node",
t: "212.227.247.229",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Germany",
host: ["host-bonjourtablier.com"],
},
e: 1,
g: [
{
u: "/images/flags/germany.svg",
p: "ne",
},
],
},
{
id: "host-blackroom.club",
type: "node",
t: "Host\nblackroom.club",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "Russia",
},
e: 1,
dt: [1461370680000],
},
{
id: "81.177.135.232",
type: "node",
t: "81.177.135.232",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Russia",
host: ["host-blackroom.club"],
},
e: 1,
g: [
{
u: "/images/flags/russia.svg",
p: "ne",
},
],
},
{
id: "host-artsabc.com",
type: "node",
t: "Host\nartsabc.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1461274500000],
},
{
id: "204.12.208.74",
type: "node",
t: "204.12.208.74",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-artsabc.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-blessingshealthuk.com",
type: "node",
t: "Host\nblessingshealthuk.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1461274500000],
},
{
id: "107.180.50.165",
type: "node",
t: "107.180.50.165",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-blessingshealthuk.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-anybug.net",
type: "node",
t: "Host\nanybug.net",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "France",
},
e: 1,
dt: [1461180240000],
},
{
id: "78.217.205.113",
type: "node",
t: "78.217.205.113",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "France",
host: ["host-anybug.net"],
},
e: 1,
g: [
{
u: "/images/flags/france.svg",
p: "ne",
},
],
},
{
id: "host-alushtadom.com",
type: "node",
t: "Host\nalushtadom.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "Russia",
},
e: 1,
dt: [1461130920000],
},
{
id: "81.177.140.186",
type: "node",
t: "81.177.140.186",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Russia",
host: ["host-alushtadom.com"],
},
e: 1,
g: [
{
u: "/images/flags/russia.svg",
p: "ne",
},
],
},
{
id: "host-blxbymhjva.info",
type: "node",
t: "Host\nblxbymhjva.info",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "USA",
},
e: 1,
dt: [1461076140000],
},
{
id: "host-ahsqbeospcdrngfv.info",
type: "node",
t: "Host\nahsqbeospcdrngfv.info",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Canada",
},
e: 1,
dt: [1461036300000],
},
{
id: "195.22.28.198",
type: "node",
t: "195.22.28.198",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Canada",
host: [
"host-ahsqbeospcdrngfv.info",
"host-jghbktqepe.pw",
"host-gsebqsi.ru",
"host-ywjgjvpuyitnbiw.info",
"host-kypsuw.pw",
"host-kqlxtqptsmys.in",
],
},
e: 1,
g: [
{
u: "/images/flags/canada.svg",
p: "ne",
},
],
},
{
id: "host-cxlgwofgrjfoaa.info",
type: "node",
t: "Host\ncxlgwofgrjfoaa.info",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Canada",
},
e: 1,
dt: [1461036240000],
},
{
id: "195.22.28.197",
type: "node",
t: "195.22.28.197",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Canada",
host: [
"host-cxlgwofgrjfoaa.info",
"host-barjhxoye.info",
"host-glhxgchhfemcjgr.pw",
"host-fitga.ru",
"host-wdvxeval.ru",
"host-bnjhx.eu",
],
},
e: 1,
g: [
{
u: "/images/flags/canada.svg",
p: "ne",
},
],
},
{
id: "host-91.234.35.243",
type: "node",
t: "Host\n91.234.35.243",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Ukraine",
},
e: 1,
dt: [1460970000000],
},
{
id: "91.234.35.243",
type: "node",
t: "91.234.35.243",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Ukraine",
host: ["host-91.234.35.243"],
},
e: 1,
g: [
{
u: "/images/flags/ukraine.svg",
p: "ne",
},
],
},
{
id: "host-4turka.com",
type: "node",
t: "Host\n4turka.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "Turkey",
},
e: 1,
dt: [1460953560000],
},
{
id: "185.12.108.138",
type: "node",
t: "185.12.108.138",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Turkey",
host: ["host-4turka.com"],
},
e: 1,
g: [
{
u: "/images/flags/turkey.svg",
p: "ne",
},
],
},
{
id: "host-185.14.28.30",
type: "node",
t: "Host\n185.14.28.30",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Belgium",
},
e: 1,
dt: [1460901960000],
},
{
id: "185.14.28.30",
type: "node",
t: "185.14.28.30",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Belgium",
host: ["host-185.14.28.30"],
},
e: 1,
g: [
{
u: "/images/flags/belgium.svg",
p: "ne",
},
],
},
{
id: "host-31.184.196.74",
type: "node",
t: "Host\n31.184.196.74",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Russia",
},
e: 1,
dt: [1460872140000],
},
{
id: "31.184.196.74",
type: "node",
t: "31.184.196.74",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Russia",
host: ["host-31.184.196.74"],
},
e: 1,
g: [
{
u: "/images/flags/russia.svg",
p: "ne",
},
],
},
{
id: "host-91.230.211.103",
type: "node",
t: "Host\n91.230.211.103",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Russia",
},
e: 1,
dt: [1460872140000],
},
{
id: "91.230.211.103",
type: "node",
t: "91.230.211.103",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Russia",
host: ["host-91.230.211.103"],
},
e: 1,
g: [
{
u: "/images/flags/russia.svg",
p: "ne",
},
],
},
{
id: "host-91.219.29.81",
type: "node",
t: "Host\n91.219.29.81",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Ukraine",
},
e: 1,
dt: [1460866020000],
},
{
id: "91.219.29.81",
type: "node",
t: "91.219.29.81",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Ukraine",
host: ["host-91.219.29.81"],
},
e: 1,
g: [
{
u: "/images/flags/ukraine.svg",
p: "ne",
},
],
},
{
id: "host-jghbktqepe.pw",
type: "node",
t: "Host\njghbktqepe.pw",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Canada",
},
e: 1,
dt: [1460821320000],
},
{
id: "host-lorangeriedelareine.fr",
type: "node",
t: "Host\nlorangeriedelareine.fr",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "France",
},
e: 1,
dt: [1460742780000],
},
{
id: "62.210.116.247",
type: "node",
t: "62.210.116.247",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "France",
host: ["host-lorangeriedelareine.fr"],
},
e: 1,
g: [
{
u: "/images/flags/france.svg",
p: "ne",
},
],
},
{
id: "host-gfcuxnaek.ru",
type: "node",
t: "Host\ngfcuxnaek.ru",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Canada",
},
e: 1,
dt: [1460713140000],
},
{
id: "195.22.28.199",
type: "node",
t: "195.22.28.199",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Canada",
host: [
"host-gfcuxnaek.ru",
"host-ampjsppmftmfdblpt.info",
"host-kcdfajaxngiff.info",
"host-bqbbsfdw.be",
"host-jxqdry.ru",
"host-svkjhguk.ru",
],
},
e: 1,
g: [
{
u: "/images/flags/canada.svg",
p: "ne",
},
],
},
{
id: "host-uhhvhjqowpgopq.xyz",
type: "node",
t: "Host\nuhhvhjqowpgopq.xyz",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "USA",
},
e: 1,
dt: [1460713140000],
},
{
id: "208.100.26.234",
type: "node",
t: "208.100.26.234",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: [
"host-uhhvhjqowpgopq.xyz",
"host-omeaswslhgdw.xyz",
"host-swfqg.in",
"host-plfbvdrpvsm.pw",
],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-ampjsppmftmfdblpt.info",
type: "node",
t: "Host\nampjsppmftmfdblpt.info",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Canada",
},
e: 1,
dt: [1460627760000],
},
{
id: "host-207.244.97.230",
type: "node",
t: "Host\n207.244.97.230",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "USA",
},
e: 1,
dt: [1460596920000],
},
{
id: "207.244.97.230",
type: "node",
t: "207.244.97.230",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-207.244.97.230"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-46.165.253.93",
type: "node",
t: "Host\n46.165.253.93",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Germany",
},
e: 1,
dt: [1460573160000],
},
{
id: "46.165.253.93",
type: "node",
t: "46.165.253.93",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Germany",
host: ["host-46.165.253.93"],
},
e: 1,
g: [
{
u: "/images/flags/germany.svg",
p: "ne",
},
],
},
{
id: "host-thinktrimbebeautiful.com.au",
type: "node",
t: "Host\nthinktrimbebeautiful.com.au",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "Brunei",
},
e: 1,
dt: [1460563500000],
},
{
id: "182.50.149.1",
type: "node",
t: "182.50.149.1",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Brunei",
host: ["host-thinktrimbebeautiful.com.au"],
},
e: 1,
g: [
{
u: "/images/flags/brunei.svg",
p: "ne",
},
],
},
{
id: "host-baby.teasso.com",
type: "node",
t: "Host\nbaby.teasso.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1460559900000],
},
{
id: "162.210.102.32",
type: "node",
t: "162.210.102.32",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-baby.teasso.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-helcel.com",
type: "node",
t: "Host\nhelcel.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1460474220000],
},
{
id: "72.41.18.2",
type: "node",
t: "72.41.18.2",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-helcel.com", "host-onguso.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-loseweightwithmysite.com",
type: "node",
t: "Host\nloseweightwithmysite.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1460435040000],
},
{
id: "74.220.207.112",
type: "node",
t: "74.220.207.112",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-loseweightwithmysite.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-nhhyxorxbxarxe.org",
type: "node",
t: "Host\nnhhyxorxbxarxe.org",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Canada",
},
e: 1,
dt: [1460434620000],
},
{
id: "195.22.28.196",
type: "node",
t: "195.22.28.196",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Canada",
host: [
"host-nhhyxorxbxarxe.org",
"host-xyhhuxa.be",
"host-cudcfybkk.pw",
"host-gvludcvhcrjwmgq.in",
],
},
e: 1,
g: [
{
u: "/images/flags/canada.svg",
p: "ne",
},
],
},
{
id: "host-gsebqsi.ru",
type: "node",
t: "Host\ngsebqsi.ru",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Canada",
},
e: 1,
dt: [1460405280000],
},
{
id: "host-onguso.com",
type: "node",
t: "Host\nonguso.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1460388780000],
},
{
id: "host-ywjgjvpuyitnbiw.info",
type: "node",
t: "Host\nywjgjvpuyitnbiw.info",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Canada",
},
e: 1,
dt: [1460374560000],
},
{
id: "host-kcdfajaxngiff.info",
type: "node",
t: "Host\nkcdfajaxngiff.info",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Canada",
},
e: 1,
dt: [1460368020000],
},
{
id: "host-omeaswslhgdw.xyz",
type: "node",
t: "Host\nomeaswslhgdw.xyz",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "USA",
},
e: 1,
dt: [1460368020000],
},
{
id: "host-91.219.31.15",
type: "node",
t: "Host\n91.219.31.15",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Ukraine",
},
e: 1,
dt: [1460352840000],
},
{
id: "91.219.31.15",
type: "node",
t: "91.219.31.15",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Ukraine",
host: ["host-91.219.31.15"],
},
e: 1,
g: [
{
u: "/images/flags/ukraine.svg",
p: "ne",
},
],
},
{
id: "host-silocot.com",
type: "node",
t: "Host\nsilocot.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "France",
},
e: 1,
dt: [1460348460000],
},
{
id: "62.210.88.33",
type: "node",
t: "62.210.88.33",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "France",
host: ["host-silocot.com"],
},
e: 1,
g: [
{
u: "/images/flags/france.svg",
p: "ne",
},
],
},
{
id: "host-gooseart.com",
type: "node",
t: "Host\ngooseart.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "Denmark",
},
e: 1,
dt: [1460266080000],
},
{
id: "195.128.174.143",
type: "node",
t: "195.128.174.143",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Denmark",
host: ["host-gooseart.com"],
},
e: 1,
g: [
{
u: "/images/flags/denmark.svg",
p: "ne",
},
],
},
{
id: "host-88.214.237.57",
type: "node",
t: "Host\n88.214.237.57",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Russia",
},
e: 1,
dt: [1460219760000],
},
{
id: "88.214.237.57",
type: "node",
t: "88.214.237.57",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Russia",
host: ["host-88.214.237.57"],
},
e: 1,
g: [
{
u: "/images/flags/russia.svg",
p: "ne",
},
],
},
{
id: "host-91.219.28.44",
type: "node",
t: "Host\n91.219.28.44",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Belgium",
},
e: 1,
dt: [1460211960000],
},
{
id: "91.219.28.44",
type: "node",
t: "91.219.28.44",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Belgium",
host: ["host-91.219.28.44"],
},
e: 1,
g: [
{
u: "/images/flags/belgium.svg",
p: "ne",
},
],
},
{
id: "host-bluedreambd.com",
type: "node",
t: "Host\nbluedreambd.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1460132040000],
},
{
id: "192.185.174.198",
type: "node",
t: "192.185.174.198",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-bluedreambd.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-colinmccarthynfl.com",
type: "node",
t: "Host\ncolinmccarthynfl.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1460118660000],
},
{
id: "50.62.250.1",
type: "node",
t: "50.62.250.1",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-colinmccarthynfl.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-193.9.28.49",
type: "node",
t: "Host\n193.9.28.49",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "USA",
},
e: 1,
dt: [1460118420000],
},
{
id: "193.9.28.49",
type: "node",
t: "193.9.28.49",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-193.9.28.49"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-37.139.2.214",
type: "node",
t: "Host\n37.139.2.214",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Belgium",
},
e: 1,
dt: [1460058120000],
},
{
id: "37.139.2.214",
type: "node",
t: "37.139.2.214",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Belgium",
host: ["host-37.139.2.214"],
},
e: 1,
g: [
{
u: "/images/flags/belgium.svg",
p: "ne",
},
],
},
{
id: "host-43nutrientes.com",
type: "node",
t: "Host\n43nutrientes.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1460008140000],
},
{
id: "50.87.149.41",
type: "node",
t: "50.87.149.41",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-43nutrientes.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-getdiscounts.org",
type: "node",
t: "Host\ngetdiscounts.org",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1460008140000],
},
{
id: "205.144.171.76",
type: "node",
t: "205.144.171.76",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-getdiscounts.org"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-naomihawkins.com",
type: "node",
t: "Host\nnaomihawkins.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1460008140000],
},
{
id: "50.63.97.1",
type: "node",
t: "50.63.97.1",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-naomihawkins.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-traditions-and-custom.com",
type: "node",
t: "Host\ntraditions-and-custom.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1459958040000],
},
{
id: "72.41.18.212",
type: "node",
t: "72.41.18.212",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-traditions-and-custom.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-closerdaybyday.info",
type: "node",
t: "Host\ncloserdaybyday.info",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1459933260000],
},
{
id: "192.185.151.39",
type: "node",
t: "192.185.151.39",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-closerdaybyday.info"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-coldheartedny.com",
type: "node",
t: "Host\ncoldheartedny.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1459868400000],
},
{
id: "107.180.26.75",
type: "node",
t: "107.180.26.75",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-coldheartedny.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-31.148.99.241",
type: "node",
t: "Host\n31.148.99.241",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Rep Czech",
},
e: 1,
dt: [1459861320000],
},
{
id: "31.148.99.241",
type: "node",
t: "31.148.99.241",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Rep Czech",
host: ["host-31.148.99.241"],
},
e: 1,
g: [
{
u: "/images/flags/czech-republic.svg",
p: "ne",
},
],
},
{
id: "host-helpdesk.keldon.info",
type: "node",
t: "Host\nhelpdesk.keldon.info",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "Rep Czech",
},
e: 1,
dt: [1459860120000],
},
{
id: "194.228.3.204",
type: "node",
t: "194.228.3.204",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Rep Czech",
host: ["host-helpdesk.keldon.info", "host-opravnatramvaji.cz"],
},
e: 1,
g: [
{
u: "/images/flags/czech-republic.svg",
p: "ne",
},
],
},
{
id: "host-addagapublicschool.com",
type: "node",
t: "Host\naddagapublicschool.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1459844940000],
},
{
id: "23.229.239.227",
type: "node",
t: "23.229.239.227",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-addagapublicschool.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-thejonesact.com",
type: "node",
t: "Host\nthejonesact.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1459776120000],
},
{
id: "192.186.220.8",
type: "node",
t: "192.186.220.8",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-thejonesact.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-studiosundaytv.com",
type: "node",
t: "Host\nstudiosundaytv.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1459761600000],
},
{
id: "76.162.168.113",
type: "node",
t: "76.162.168.113",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-studiosundaytv.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-theoneflooring.com",
type: "node",
t: "Host\ntheoneflooring.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1459761600000],
},
{
id: "107.180.4.122",
type: "node",
t: "107.180.4.122",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-theoneflooring.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-goldberg-share.com",
type: "node",
t: "Host\ngoldberg-share.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1459592520000],
},
{
id: "107.180.43.132",
type: "node",
t: "107.180.43.132",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-goldberg-share.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-91.223.180.240",
type: "node",
t: "Host\n91.223.180.240",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Ukraine",
},
e: 1,
dt: [1459573800000],
},
{
id: "91.223.180.240",
type: "node",
t: "91.223.180.240",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Ukraine",
host: ["host-91.223.180.240"],
},
e: 1,
g: [
{
u: "/images/flags/ukraine.svg",
p: "ne",
},
],
},
{
id: "host-45.55.192.133",
type: "node",
t: "Host\n45.55.192.133",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "USA",
},
e: 1,
dt: [1459541640000],
},
{
id: "45.55.192.133",
type: "node",
t: "45.55.192.133",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-45.55.192.133"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-hotcasinogames.org",
type: "node",
t: "Host\nhotcasinogames.org",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "France",
},
e: 1,
dt: [1459536540000],
},
{
id: "217.70.180.150",
type: "node",
t: "217.70.180.150",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "France",
host: ["host-hotcasinogames.org"],
},
e: 1,
g: [
{
u: "/images/flags/france.svg",
p: "ne",
},
],
},
{
id: "host-91.209.77.86",
type: "node",
t: "Host\n91.209.77.86",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Rep Czech",
},
e: 1,
dt: [1459528740000],
},
{
id: "91.209.77.86",
type: "node",
t: "91.209.77.86",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Rep Czech",
host: ["host-91.209.77.86"],
},
e: 1,
g: [
{
u: "/images/flags/czech-republic.svg",
p: "ne",
},
],
},
{
id: "host-88.198.119.177",
type: "node",
t: "Host\n88.198.119.177",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Germany",
},
e: 1,
dt: [1459462860000],
},
{
id: "88.198.119.177",
type: "node",
t: "88.198.119.177",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Germany",
host: ["host-88.198.119.177"],
},
e: 1,
g: [
{
u: "/images/flags/germany.svg",
p: "ne",
},
],
},
{
id: "host-forms.net.in",
type: "node",
t: "Host\nforms.net.in",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1459453980000],
},
{
id: "160.153.51.192",
type: "node",
t: "160.153.51.192",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-forms.net.in", "host-csskol.org"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-kknk-shop.dev.onnetdigital.com",
type: "node",
t: "Host\nkknk-shop.dev.onnetdigital.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "Germany",
},
e: 1,
dt: [1459453980000],
},
{
id: "176.9.2.244",
type: "node",
t: "176.9.2.244",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Germany",
host: ["host-kknk-shop.dev.onnetdigital.com"],
},
e: 1,
g: [
{
u: "/images/flags/germany.svg",
p: "ne",
},
],
},
{
id: "host-mahmutersan.com.tr",
type: "node",
t: "Host\nmahmutersan.com.tr",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1459453980000],
},
{
id: "160.153.18.235",
type: "node",
t: "160.153.18.235",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-mahmutersan.com.tr"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-barjhxoye.info",
type: "node",
t: "Host\nbarjhxoye.info",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Canada",
},
e: 1,
dt: [1459452360000],
},
{
id: "host-sqrgvbgfyya.org",
type: "node",
t: "Host\nsqrgvbgfyya.org",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "USA",
},
e: 1,
dt: [1459452360000],
},
{
id: "host-81.177.181.164",
type: "node",
t: "Host\n81.177.181.164",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Russia",
},
e: 1,
dt: [1459451160000],
},
{
id: "81.177.181.164",
type: "node",
t: "81.177.181.164",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Russia",
host: ["host-81.177.181.164"],
},
e: 1,
g: [
{
u: "/images/flags/russia.svg",
p: "ne",
},
],
},
{
id: "host-casasembargada.com",
type: "node",
t: "Host\ncasasembargada.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1459437060000],
},
{
id: "23.229.166.194",
type: "node",
t: "23.229.166.194",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-casasembargada.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-dwytqrgblrynsgtew.org",
type: "node",
t: "Host\ndwytqrgblrynsgtew.org",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "USA",
},
e: 1,
dt: [1459429140000],
},
{
id: "host-csskol.org",
type: "node",
t: "Host\ncsskol.org",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1459427820000],
},
{
id: "host-31.41.44.130",
type: "node",
t: "Host\n31.41.44.130",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Russia",
},
e: 1,
dt: [1459398540000],
},
{
id: "31.41.44.130",
type: "node",
t: "31.41.44.130",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Russia",
host: ["host-31.41.44.130"],
},
e: 1,
g: [
{
u: "/images/flags/russia.svg",
p: "ne",
},
],
},
{
id: "host-51.254.240.45",
type: "node",
t: "Host\n51.254.240.45",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "France",
},
e: 1,
dt: [1459398480000],
},
{
id: "51.254.240.45",
type: "node",
t: "51.254.240.45",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "France",
host: ["host-51.254.240.45"],
},
e: 1,
g: [
{
u: "/images/flags/france.svg",
p: "ne",
},
],
},
{
id: "host-82.146.37.200",
type: "node",
t: "Host\n82.146.37.200",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Russia",
},
e: 1,
dt: [1459371960000],
},
{
id: "82.146.37.200",
type: "node",
t: "82.146.37.200",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Russia",
host: ["host-82.146.37.200"],
},
e: 1,
g: [
{
u: "/images/flags/russia.svg",
p: "ne",
},
],
},
{
id: "host-grosirkecantikan.com",
type: "node",
t: "Host\ngrosirkecantikan.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1459349640000],
},
{
id: "192.185.51.87",
type: "node",
t: "192.185.51.87",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-grosirkecantikan.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-93.170.131.108",
type: "node",
t: "Host\n93.170.131.108",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Russia",
},
e: 1,
dt: [1459342920000],
},
{
id: "93.170.131.108",
type: "node",
t: "93.170.131.108",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Russia",
host: ["host-93.170.131.108"],
},
e: 1,
g: [
{
u: "/images/flags/russia.svg",
p: "ne",
},
],
},
{
id: "host-naturstein-schubert.de",
type: "node",
t: "Host\nnaturstein-schubert.de",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "Germany",
},
e: 1,
dt: [1459338840000],
},
{
id: "91.250.80.97",
type: "node",
t: "91.250.80.97",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Germany",
host: ["host-naturstein-schubert.de"],
},
e: 1,
g: [
{
u: "/images/flags/germany.svg",
p: "ne",
},
],
},
{
id: "host-83.217.25.239",
type: "node",
t: "Host\n83.217.25.239",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Russia",
},
e: 1,
dt: [1459328400000],
},
{
id: "83.217.25.239",
type: "node",
t: "83.217.25.239",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Russia",
host: ["host-83.217.25.239"],
},
e: 1,
g: [
{
u: "/images/flags/russia.svg",
p: "ne",
},
],
},
{
id: "host-vtc360.com",
type: "node",
t: "Host\nvtc360.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1459291380000],
},
{
id: "107.180.34.199",
type: "node",
t: "107.180.34.199",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-vtc360.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-estudiobarco.com.ar",
type: "node",
t: "Host\nestudiobarco.com.ar",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "USA",
},
e: 1,
dt: [1459271940000],
},
{
id: "50.22.11.55",
type: "node",
t: "50.22.11.55",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-estudiobarco.com.ar"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-5.135.76.18",
type: "node",
t: "Host\n5.135.76.18",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "France",
},
e: 1,
dt: [1459265160000],
},
{
id: "5.135.76.18",
type: "node",
t: "5.135.76.18",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "France",
host: ["host-5.135.76.18"],
},
e: 1,
g: [
{
u: "/images/flags/france.svg",
p: "ne",
},
],
},
{
id: "host-109.234.35.128",
type: "node",
t: "Host\n109.234.35.128",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Russia",
},
e: 1,
dt: [1459254660000],
},
{
id: "109.234.35.128",
type: "node",
t: "109.234.35.128",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Russia",
host: ["host-109.234.35.128"],
},
e: 1,
g: [
{
u: "/images/flags/russia.svg",
p: "ne",
},
],
},
{
id: "host-starsoftheworld.org",
type: "node",
t: "Host\nstarsoftheworld.org",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1459252740000],
},
{
id: "166.62.28.102",
type: "node",
t: "166.62.28.102",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-starsoftheworld.org"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-185.75.46.4",
type: "node",
t: "Host\n185.75.46.4",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Russia",
},
e: 1,
dt: [1459249140000],
},
{
id: "185.75.46.4",
type: "node",
t: "185.75.46.4",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Russia",
host: ["host-185.75.46.4"],
},
e: 1,
g: [
{
u: "/images/flags/russia.svg",
p: "ne",
},
],
},
{
id: "host-83.217.8.127",
type: "node",
t: "Host\n83.217.8.127",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Russia",
},
e: 1,
dt: [1459248240000],
},
{
id: "83.217.8.127",
type: "node",
t: "83.217.8.127",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Russia",
host: ["host-83.217.8.127"],
},
e: 1,
g: [
{
u: "/images/flags/russia.svg",
p: "ne",
},
],
},
{
id: "host-78.46.170.79",
type: "node",
t: "Host\n78.46.170.79",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Germany",
},
e: 1,
dt: [1459234980000],
},
{
id: "78.46.170.79",
type: "node",
t: "78.46.170.79",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Germany",
host: ["host-78.46.170.79"],
},
e: 1,
g: [
{
u: "/images/flags/germany.svg",
p: "ne",
},
],
},
{
id: "host-185.141.25.150",
type: "node",
t: "Host\n185.141.25.150",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Belgium",
},
e: 1,
dt: [1459234020000],
},
{
id: "185.141.25.150",
type: "node",
t: "185.141.25.150",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Belgium",
host: ["host-185.141.25.150"],
},
e: 1,
g: [
{
u: "/images/flags/belgium.svg",
p: "ne",
},
],
},
{
id: "host-holishit.in",
type: "node",
t: "Host\nholishit.in",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1459185180000],
},
{
id: "160.153.63.4",
type: "node",
t: "160.153.63.4",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-holishit.in"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-91.200.14.73",
type: "node",
t: "Host\n91.200.14.73",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Ukraine",
},
e: 1,
dt: [1459174920000],
},
{
id: "91.200.14.73",
type: "node",
t: "91.200.14.73",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Ukraine",
host: ["host-91.200.14.73"],
},
e: 1,
g: [
{
u: "/images/flags/ukraine.svg",
p: "ne",
},
],
},
{
id: "host-92.63.87.134",
type: "node",
t: "Host\n92.63.87.134",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Latvia",
},
e: 1,
dt: [1459174920000],
},
{
id: "92.63.87.134",
type: "node",
t: "92.63.87.134",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Latvia",
host: ["host-92.63.87.134"],
},
e: 1,
g: [
{
u: "/images/flags/latvia.svg",
p: "ne",
},
],
},
{
id: "host-minteee.com",
type: "node",
t: "Host\nminteee.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "Germany",
},
e: 1,
dt: [1459156020000],
},
{
id: "178.254.0.121",
type: "node",
t: "178.254.0.121",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Germany",
host: ["host-minteee.com"],
},
e: 1,
g: [
{
u: "/images/flags/germany.svg",
p: "ne",
},
],
},
{
id: "host-84.19.170.249",
type: "node",
t: "Host\n84.19.170.249",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Germany",
},
e: 1,
dt: [1459130040000],
},
{
id: "84.19.170.249",
type: "node",
t: "84.19.170.249",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Germany",
host: ["host-84.19.170.249"],
},
e: 1,
g: [
{
u: "/images/flags/germany.svg",
p: "ne",
},
],
},
{
id: "host-176.31.47.100",
type: "node",
t: "Host\n176.31.47.100",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "France",
},
e: 1,
dt: [1459096620000],
},
{
id: "176.31.47.100",
type: "node",
t: "176.31.47.100",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "France",
host: ["host-176.31.47.100"],
},
e: 1,
g: [
{
u: "/images/flags/france.svg",
p: "ne",
},
],
},
{
id: "host-185.117.72.94",
type: "node",
t: "Host\n185.117.72.94",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Belgium",
},
e: 1,
dt: [1459096620000],
},
{
id: "185.117.72.94",
type: "node",
t: "185.117.72.94",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Belgium",
host: ["host-185.117.72.94"],
},
e: 1,
g: [
{
u: "/images/flags/belgium.svg",
p: "ne",
},
],
},
{
id: "host-asianbooty.net",
type: "node",
t: "Host\nasianbooty.net",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1459072500000],
},
{
id: "107.180.50.230",
type: "node",
t: "107.180.50.230",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-asianbooty.net"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-89.108.84.132",
type: "node",
t: "Host\n89.108.84.132",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Russia",
},
e: 1,
dt: [1458990960000],
},
{
id: "89.108.84.132",
type: "node",
t: "89.108.84.132",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Russia",
host: ["host-89.108.84.132"],
},
e: 1,
g: [
{
u: "/images/flags/russia.svg",
p: "ne",
},
],
},
{
id: "host-strategicdisaster.info",
type: "node",
t: "Host\nstrategicdisaster.info",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1458932520000],
},
{
id: "192.186.197.161",
type: "node",
t: "192.186.197.161",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-strategicdisaster.info"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-www.affiliateproductes.com",
type: "node",
t: "Host\nwww.affiliateproductes.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1458932520000],
},
{
id: "107.180.4.124",
type: "node",
t: "107.180.4.124",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-www.affiliateproductes.com", "host-affiliateproductes.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-affiliateproductes.com",
type: "node",
t: "Host\naffiliateproductes.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1458923340000],
},
{
id: "host-bwpegsfa.info",
type: "node",
t: "Host\nbwpegsfa.info",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "USA",
},
e: 1,
dt: [1458922260000],
},
{
id: "45.56.77.175",
type: "node",
t: "45.56.77.175",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-bwpegsfa.info", "host-fnarsipfqe.pw", "host-sdwempsovemtr.yt"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-swfqg.in",
type: "node",
t: "Host\nswfqg.in",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "USA",
},
e: 1,
dt: [1458906480000],
},
{
id: "host-xyhhuxa.be",
type: "node",
t: "Host\nxyhhuxa.be",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Canada",
},
e: 1,
dt: [1458906480000],
},
{
id: "host-hmndhdbscgru.pw",
type: "node",
t: "Host\nhmndhdbscgru.pw",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "USA",
},
e: 1,
dt: [1458903240000],
},
{
id: "host-uhgmnigjpf.biz",
type: "node",
t: "Host\nuhgmnigjpf.biz",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Belgium",
},
e: 1,
dt: [1458903240000],
},
{
id: "93.170.104.127",
type: "node",
t: "93.170.104.127",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Belgium",
host: ["host-uhgmnigjpf.biz"],
},
e: 1,
g: [
{
u: "/images/flags/belgium.svg",
p: "ne",
},
],
},
{
id: "host-videoaminproduktion.de",
type: "node",
t: "Host\nvideoaminproduktion.de",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "Germany",
},
e: 1,
dt: [1458853440000],
},
{
id: "87.238.192.67",
type: "node",
t: "87.238.192.67",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Germany",
host: ["host-videoaminproduktion.de"],
},
e: 1,
g: [
{
u: "/images/flags/germany.svg",
p: "ne",
},
],
},
{
id: "host-mcgroupuae.com",
type: "node",
t: "Host\nmcgroupuae.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1458829920000],
},
{
id: "166.62.28.147",
type: "node",
t: "166.62.28.147",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-mcgroupuae.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-46.8.44.39",
type: "node",
t: "Host\n46.8.44.39",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Russia",
},
e: 1,
dt: [1458828480000],
},
{
id: "46.8.44.39",
type: "node",
t: "46.8.44.39",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Russia",
host: ["host-46.8.44.39"],
},
e: 1,
g: [
{
u: "/images/flags/russia.svg",
p: "ne",
},
],
},
{
id: "host-pilfingr.com",
type: "node",
t: "Host\npilfingr.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1458817320000],
},
{
id: "192.186.208.225",
type: "node",
t: "192.186.208.225",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-pilfingr.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-setprosports.info",
type: "node",
t: "Host\nsetprosports.info",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1458809280000],
},
{
id: "198.12.157.163",
type: "node",
t: "198.12.157.163",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-setprosports.info"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-marvel-games.com",
type: "node",
t: "Host\nmarvel-games.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1458809100000],
},
{
id: "167.160.162.182",
type: "node",
t: "167.160.162.182",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-marvel-games.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-217.12.218.158",
type: "node",
t: "Host\n217.12.218.158",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Ukraine",
},
e: 1,
dt: [1458752460000],
},
{
id: "217.12.218.158",
type: "node",
t: "217.12.218.158",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Ukraine",
host: ["host-217.12.218.158"],
},
e: 1,
g: [
{
u: "/images/flags/ukraine.svg",
p: "ne",
},
],
},
{
id: "host-84.19.170.244",
type: "node",
t: "Host\n84.19.170.244",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Germany",
},
e: 1,
dt: [1458735600000],
},
{
id: "84.19.170.244",
type: "node",
t: "84.19.170.244",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Germany",
host: ["host-84.19.170.244"],
},
e: 1,
g: [
{
u: "/images/flags/germany.svg",
p: "ne",
},
],
},
{
id: "host-maxmpl.com",
type: "node",
t: "Host\nmaxmpl.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "India",
},
e: 1,
dt: [1458734400000],
},
{
id: "103.27.87.88",
type: "node",
t: "103.27.87.88",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "India",
host: ["host-maxmpl.com"],
},
e: 1,
g: [
{
u: "/images/flags/india.svg",
p: "ne",
},
],
},
{
id: "host-samuday.org",
type: "node",
t: "Host\nsamuday.org",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1458734400000],
},
{
id: "50.31.14.17",
type: "node",
t: "50.31.14.17",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-samuday.org"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-diwali2k15.in",
type: "node",
t: "Host\ndiwali2k15.in",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1458667020000],
},
{
id: "64.20.35.186",
type: "node",
t: "64.20.35.186",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-diwali2k15.in"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-195.64.154.126",
type: "node",
t: "Host\n195.64.154.126",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Ukraine",
},
e: 1,
dt: [1458649920000],
},
{
id: "195.64.154.126",
type: "node",
t: "195.64.154.126",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Ukraine",
host: ["host-195.64.154.126"],
},
e: 1,
g: [
{
u: "/images/flags/ukraine.svg",
p: "ne",
},
],
},
{
id: "host-masterlegue.com",
type: "node",
t: "Host\nmasterlegue.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "France",
},
e: 1,
dt: [1458649260000],
},
{
id: "62.210.83.56",
type: "node",
t: "62.210.83.56",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "France",
host: ["host-masterlegue.com"],
},
e: 1,
g: [
{
u: "/images/flags/france.svg",
p: "ne",
},
],
},
{
id: "host-toolaria.com",
type: "node",
t: "Host\ntoolaria.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1458645060000],
},
{
id: "160.153.49.102",
type: "node",
t: "160.153.49.102",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-toolaria.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-92.63.87.106",
type: "node",
t: "Host\n92.63.87.106",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Latvia",
},
e: 1,
dt: [1458635100000],
},
{
id: "92.63.87.106",
type: "node",
t: "92.63.87.106",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Latvia",
host: ["host-92.63.87.106"],
},
e: 1,
g: [
{
u: "/images/flags/latvia.svg",
p: "ne",
},
],
},
{
id: "host-tradinbow.com",
type: "node",
t: "Host\ntradinbow.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "France",
},
e: 1,
dt: [1458568200000],
},
{
id: "213.186.33.104",
type: "node",
t: "213.186.33.104",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "France",
host: ["host-tradinbow.com"],
},
e: 1,
g: [
{
u: "/images/flags/france.svg",
p: "ne",
},
],
},
{
id: "host-217.12.199.90",
type: "node",
t: "Host\n217.12.199.90",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Ukraine",
},
e: 1,
dt: [1458565380000],
},
{
id: "217.12.199.90",
type: "node",
t: "217.12.199.90",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Ukraine",
host: ["host-217.12.199.90"],
},
e: 1,
g: [
{
u: "/images/flags/ukraine.svg",
p: "ne",
},
],
},
{
id: "host-nwcpgymgh.work",
type: "node",
t: "Host\nnwcpgymgh.work",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Ukraine",
},
e: 1,
dt: [1458529680000],
},
{
id: "5.34.183.21",
type: "node",
t: "5.34.183.21",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Ukraine",
host: ["host-nwcpgymgh.work"],
},
e: 1,
g: [
{
u: "/images/flags/ukraine.svg",
p: "ne",
},
],
},
{
id: "host-mkis.org",
type: "node",
t: "Host\nmkis.org",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1458464880000],
},
{
id: "50.87.127.96",
type: "node",
t: "50.87.127.96",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-mkis.org"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-46.148.20.46",
type: "node",
t: "Host\n46.148.20.46",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Ukraine",
},
e: 1,
dt: [1458410040000],
},
{
id: "46.148.20.46",
type: "node",
t: "46.148.20.46",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Ukraine",
host: ["host-46.148.20.46"],
},
e: 1,
g: [
{
u: "/images/flags/ukraine.svg",
p: "ne",
},
],
},
{
id: "host-commonsenseprotection.com",
type: "node",
t: "Host\ncommonsenseprotection.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1458400200000],
},
{
id: "50.116.109.230",
type: "node",
t: "50.116.109.230",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-commonsenseprotection.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-classemgmt.testbada.com",
type: "node",
t: "Host\nclassemgmt.testbada.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "South Korea",
},
e: 1,
dt: [1458323460000],
},
{
id: "115.94.157.252",
type: "node",
t: "115.94.157.252",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "South Korea",
host: ["host-classemgmt.testbada.com"],
},
e: 1,
g: [
{
u: "/images/flags/south-korea.svg",
p: "ne",
},
],
},
{
id: "host-exaltation.info",
type: "node",
t: "Host\nexaltation.info",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "Belgium",
},
e: 1,
dt: [1458313140000],
},
{
id: "46.235.47.104",
type: "node",
t: "46.235.47.104",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Belgium",
host: ["host-exaltation.info"],
},
e: 1,
g: [
{
u: "/images/flags/belgium.svg",
p: "ne",
},
],
},
{
id: "host-resumosdenovela.net",
type: "node",
t: "Host\nresumosdenovela.net",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1458308040000],
},
{
id: "108.167.185.237",
type: "node",
t: "108.167.185.237",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-resumosdenovela.net"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-plfbvdrpvsm.pw",
type: "node",
t: "Host\nplfbvdrpvsm.pw",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "USA",
},
e: 1,
dt: [1458238920000],
},
{
id: "host-shampooherbal.com",
type: "node",
t: "Host\nshampooherbal.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1458198840000],
},
{
id: "104.128.239.91",
type: "node",
t: "104.128.239.91",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-shampooherbal.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-joshsawyerdesign.com",
type: "node",
t: "Host\njoshsawyerdesign.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1458172080000],
},
{
id: "107.180.4.11",
type: "node",
t: "107.180.4.11",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-joshsawyerdesign.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-51.254.181.122",
type: "node",
t: "Host\n51.254.181.122",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "France",
},
e: 1,
dt: [1458145860000],
},
{
id: "51.254.181.122",
type: "node",
t: "51.254.181.122",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "France",
host: ["host-51.254.181.122"],
},
e: 1,
g: [
{
u: "/images/flags/france.svg",
p: "ne",
},
],
},
{
id: "host-hmgame.net",
type: "node",
t: "Host\nhmgame.net",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1458137940000],
},
{
id: "66.147.244.86",
type: "node",
t: "66.147.244.86",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-hmgame.net"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-51.255.107.8",
type: "node",
t: "Host\n51.255.107.8",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "France",
},
e: 1,
dt: [1458135780000],
},
{
id: "51.255.107.8",
type: "node",
t: "51.255.107.8",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "France",
host: ["host-51.255.107.8"],
},
e: 1,
g: [
{
u: "/images/flags/france.svg",
p: "ne",
},
],
},
{
id: "host-marketathart.com",
type: "node",
t: "Host\nmarketathart.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1458134880000],
},
{
id: "192.185.35.88",
type: "node",
t: "192.185.35.88",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-marketathart.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-91.195.12.187",
type: "node",
t: "Host\n91.195.12.187",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Ukraine",
},
e: 1,
dt: [1458133980000],
},
{
id: "91.195.12.187",
type: "node",
t: "91.195.12.187",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Ukraine",
host: ["host-91.195.12.187"],
},
e: 1,
g: [
{
u: "/images/flags/ukraine.svg",
p: "ne",
},
],
},
{
id: "host-prodocument.co.uk",
type: "node",
t: "Host\nprodocument.co.uk",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1458113400000],
},
{
id: "67.23.226.169",
type: "node",
t: "67.23.226.169",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-prodocument.co.uk"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-188.127.231.116",
type: "node",
t: "Host\n188.127.231.116",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Russia",
},
e: 1,
dt: [1458072420000],
},
{
id: "188.127.231.116",
type: "node",
t: "188.127.231.116",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Russia",
host: ["host-188.127.231.116"],
},
e: 1,
g: [
{
u: "/images/flags/russia.svg",
p: "ne",
},
],
},
{
id: "host-37.139.27.52",
type: "node",
t: "Host\n37.139.27.52",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Belgium",
},
e: 1,
dt: [1458062040000],
},
{
id: "37.139.27.52",
type: "node",
t: "37.139.27.52",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Belgium",
host: ["host-37.139.27.52"],
},
e: 1,
g: [
{
u: "/images/flags/belgium.svg",
p: "ne",
},
],
},
{
id: "host-51.255.107.10",
type: "node",
t: "Host\n51.255.107.10",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "France",
},
e: 1,
dt: [1458045780000],
},
{
id: "51.255.107.10",
type: "node",
t: "51.255.107.10",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "France",
host: ["host-51.255.107.10"],
},
e: 1,
g: [
{
u: "/images/flags/france.svg",
p: "ne",
},
],
},
{
id: "host-esbook.com",
type: "node",
t: "Host\nesbook.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1458042180000],
},
{
id: "174.136.12.119",
type: "node",
t: "174.136.12.119",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-esbook.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-nlhomegarden.com",
type: "node",
t: "Host\nnlhomegarden.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1458029460000],
},
{
id: "107.180.50.210",
type: "node",
t: "107.180.50.210",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-nlhomegarden.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-emmy2015.com",
type: "node",
t: "Host\nemmy2015.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1458028260000],
},
{
id: "107.180.50.183",
type: "node",
t: "107.180.50.183",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-emmy2015.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-kel52.com",
type: "node",
t: "Host\nkel52.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1457970000000],
},
{
id: "108.167.141.20",
type: "node",
t: "108.167.141.20",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-kel52.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-controlfreaknetworks.com",
type: "node",
t: "Host\ncontrolfreaknetworks.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1457778060000],
},
{
id: "97.74.249.1",
type: "node",
t: "97.74.249.1",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-controlfreaknetworks.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-jambola.com",
type: "node",
t: "Host\njambola.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "USA",
},
e: 1,
dt: [1457775780000],
},
{
id: "208.109.189.88",
type: "node",
t: "208.109.189.88",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-jambola.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-oregonreversemortgage.com",
type: "node",
t: "Host\noregonreversemortgage.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "USA",
},
e: 1,
dt: [1457775780000],
},
{
id: "198.143.138.43",
type: "node",
t: "198.143.138.43",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-oregonreversemortgage.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-shirongfeng.cn",
type: "node",
t: "Host\nshirongfeng.cn",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "Hong Kong",
},
e: 1,
dt: [1457774580000],
},
{
id: "103.254.148.121",
type: "node",
t: "103.254.148.121",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Hong Kong",
host: ["host-shirongfeng.cn"],
},
e: 1,
g: [
{
u: "/images/flags/hong-kong.svg",
p: "ne",
},
],
},
{
id: "host-91.234.32.192",
type: "node",
t: "Host\n91.234.32.192",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Ukraine",
},
e: 1,
dt: [1457732880000],
},
{
id: "91.234.32.192",
type: "node",
t: "91.234.32.192",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Ukraine",
host: ["host-91.234.32.192"],
},
e: 1,
g: [
{
u: "/images/flags/ukraine.svg",
p: "ne",
},
],
},
{
id: "host-91.219.30.254",
type: "node",
t: "Host\n91.219.30.254",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Ukraine",
},
e: 1,
dt: [1457724900000],
},
{
id: "91.219.30.254",
type: "node",
t: "91.219.30.254",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Ukraine",
host: ["host-91.219.30.254"],
},
e: 1,
g: [
{
u: "/images/flags/ukraine.svg",
p: "ne",
},
],
},
{
id: "host-31.184.196.75",
type: "node",
t: "Host\n31.184.196.75",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Russia",
},
e: 1,
dt: [1457703660000],
},
{
id: "31.184.196.75",
type: "node",
t: "31.184.196.75",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Russia",
host: ["host-31.184.196.75"],
},
e: 1,
g: [
{
u: "/images/flags/russia.svg",
p: "ne",
},
],
},
{
id: "host-sappmtraining.com",
type: "node",
t: "Host\nsappmtraining.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1457703660000],
},
{
id: "166.62.4.223",
type: "node",
t: "166.62.4.223",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-sappmtraining.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-vtechshop.net",
type: "node",
t: "Host\nvtechshop.net",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "Brunei",
},
e: 1,
dt: [1457679120000],
},
{
id: "203.124.115.1",
type: "node",
t: "203.124.115.1",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Brunei",
host: ["host-vtechshop.net"],
},
e: 1,
g: [
{
u: "/images/flags/brunei.svg",
p: "ne",
},
],
},
{
id: "host-31.184.196.78",
type: "node",
t: "Host\n31.184.196.78",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Russia",
},
e: 1,
dt: [1457632560000],
},
{
id: "31.184.196.78",
type: "node",
t: "31.184.196.78",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Russia",
host: ["host-31.184.196.78"],
},
e: 1,
g: [
{
u: "/images/flags/russia.svg",
p: "ne",
},
],
},
{
id: "host-multibrandphone.com",
type: "node",
t: "Host\nmultibrandphone.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1457625240000],
},
{
id: "162.208.8.165",
type: "node",
t: "162.208.8.165",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-multibrandphone.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-tele-channel.com",
type: "node",
t: "Host\ntele-channel.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "Germany",
},
e: 1,
dt: [1457613120000],
},
{
id: "178.162.214.146",
type: "node",
t: "178.162.214.146",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Germany",
host: ["host-tele-channel.com"],
},
e: 1,
g: [
{
u: "/images/flags/germany.svg",
p: "ne",
},
],
},
{
id: "host-91.234.33.149",
type: "node",
t: "Host\n91.234.33.149",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Ukraine",
},
e: 1,
dt: [1457610000000],
},
{
id: "91.234.33.149",
type: "node",
t: "91.234.33.149",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Ukraine",
host: ["host-91.234.33.149"],
},
e: 1,
g: [
{
u: "/images/flags/ukraine.svg",
p: "ne",
},
],
},
{
id: "host-anoukdelecluse.nl",
type: "node",
t: "Host\nanoukdelecluse.nl",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Belgium",
},
e: 1,
dt: [1457591940000],
},
{
id: "83.137.194.20",
type: "node",
t: "83.137.194.20",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Belgium",
host: ["host-anoukdelecluse.nl"],
},
e: 1,
g: [
{
u: "/images/flags/belgium.svg",
p: "ne",
},
],
},
{
id: "host-gibdd.ws",
type: "node",
t: "Host\ngibdd.ws",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Russia",
},
e: 1,
dt: [1457591940000],
},
{
id: "178.208.83.11",
type: "node",
t: "178.208.83.11",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Russia",
host: ["host-gibdd.ws"],
},
e: 1,
g: [
{
u: "/images/flags/russia.svg",
p: "ne",
},
],
},
{
id: "host-specializedaccess.co.uk",
type: "node",
t: "Host\nspecializedaccess.co.uk",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "Britain",
},
e: 1,
dt: [1457589060000],
},
{
id: "85.233.160.146",
type: "node",
t: "85.233.160.146",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Britain",
host: ["host-specializedaccess.co.uk"],
},
e: 1,
g: [
{
u: "/images/flags/united-kingdom.svg",
p: "ne",
},
],
},
{
id: "host-151.236.14.51",
type: "node",
t: "Host\n151.236.14.51",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Belgium",
},
e: 1,
dt: [1457555940000],
},
{
id: "151.236.14.51",
type: "node",
t: "151.236.14.51",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Belgium",
host: ["host-151.236.14.51"],
},
e: 1,
g: [
{
u: "/images/flags/belgium.svg",
p: "ne",
},
],
},
{
id: "host-78.40.108.39",
type: "node",
t: "Host\n78.40.108.39",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Kazakhstan",
},
e: 1,
dt: [1457551500000],
},
{
id: "78.40.108.39",
type: "node",
t: "78.40.108.39",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Kazakhstan",
host: ["host-78.40.108.39"],
},
e: 1,
g: [
{
u: "/images/flags/kazakhstan.svg",
p: "ne",
},
],
},
{
id: "host-bqbbsfdw.be",
type: "node",
t: "Host\nbqbbsfdw.be",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Canada",
},
e: 1,
dt: [1457551500000],
},
{
id: "host-egovrxvuspxck.be",
type: "node",
t: "Host\negovrxvuspxck.be",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Canada",
},
e: 1,
dt: [1457551500000],
},
{
id: "195.22.26.248",
type: "node",
t: "195.22.26.248",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Canada",
host: ["host-egovrxvuspxck.be"],
},
e: 1,
g: [
{
u: "/images/flags/canada.svg",
p: "ne",
},
],
},
{
id: "host-marciogerhardtsouza.com.br",
type: "node",
t: "Host\nmarciogerhardtsouza.com.br",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Brazil",
},
e: 1,
dt: [1457545200000],
},
{
id: "186.202.153.14",
type: "node",
t: "186.202.153.14",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Brazil",
host: ["host-marciogerhardtsouza.com.br"],
},
e: 1,
g: [
{
u: "/images/flags/brazil.svg",
p: "ne",
},
],
},
{
id: "host-ahlanmedicalcentre.com",
type: "node",
t: "Host\nahlanmedicalcentre.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1457540580000],
},
{
id: "184.168.47.225",
type: "node",
t: "184.168.47.225",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-ahlanmedicalcentre.com", "host-beyondthedog.net"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-cam-itour.info",
type: "node",
t: "Host\ncam-itour.info",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "Germany",
},
e: 1,
dt: [1457540580000],
},
{
id: "188.40.132.132",
type: "node",
t: "188.40.132.132",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Germany",
host: ["host-cam-itour.info"],
},
e: 1,
g: [
{
u: "/images/flags/germany.svg",
p: "ne",
},
],
},
{
id: "host-91.195.12.131",
type: "node",
t: "Host\n91.195.12.131",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Ukraine",
},
e: 1,
dt: [1457535720000],
},
{
id: "91.195.12.131",
type: "node",
t: "91.195.12.131",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Ukraine",
host: ["host-91.195.12.131"],
},
e: 1,
g: [
{
u: "/images/flags/ukraine.svg",
p: "ne",
},
],
},
{
id: "host-37.235.53.18",
type: "node",
t: "Host\n37.235.53.18",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Spain",
},
e: 1,
dt: [1457524560000],
},
{
id: "37.235.53.18",
type: "node",
t: "37.235.53.18",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Spain",
host: ["host-37.235.53.18"],
},
e: 1,
g: [
{
u: "/images/flags/spain.svg",
p: "ne",
},
],
},
{
id: "host-www.informaticauno.net",
type: "node",
t: "Host\nwww.informaticauno.net",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1457509860000],
},
{
id: "50.87.28.241",
type: "node",
t: "50.87.28.241",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-www.informaticauno.net"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-89.108.85.163",
type: "node",
t: "Host\n89.108.85.163",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Russia",
},
e: 1,
dt: [1457451480000],
},
{
id: "89.108.85.163",
type: "node",
t: "89.108.85.163",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Russia",
host: ["host-89.108.85.163"],
},
e: 1,
g: [
{
u: "/images/flags/russia.svg",
p: "ne",
},
],
},
{
id: "host-149.154.157.14",
type: "node",
t: "Host\n149.154.157.14",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Italy",
},
e: 1,
dt: [1457451240000],
},
{
id: "149.154.157.14",
type: "node",
t: "149.154.157.14",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Italy",
host: ["host-149.154.157.14"],
},
e: 1,
g: [
{
u: "/images/flags/italy.svg",
p: "ne",
},
],
},
{
id: "host-drcordoba.com",
type: "node",
t: "Host\ndrcordoba.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1457421780000],
},
{
id: "50.62.125.1",
type: "node",
t: "50.62.125.1",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-drcordoba.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-192.121.16.196",
type: "node",
t: "Host\n192.121.16.196",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Belgium",
},
e: 1,
dt: [1457421540000],
},
{
id: "192.121.16.196",
type: "node",
t: "192.121.16.196",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Belgium",
host: ["host-192.121.16.196"],
},
e: 1,
g: [
{
u: "/images/flags/belgium.svg",
p: "ne",
},
],
},
{
id: "host-iheartshop.net",
type: "node",
t: "Host\niheartshop.net",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "Brunei",
},
e: 1,
dt: [1457420280000],
},
{
id: "128.199.187.47",
type: "node",
t: "128.199.187.47",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Brunei",
host: ["host-iheartshop.net"],
},
e: 1,
g: [
{
u: "/images/flags/brunei.svg",
p: "ne",
},
],
},
{
id: "host-glhxgchhfemcjgr.pw",
type: "node",
t: "Host\nglhxgchhfemcjgr.pw",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Canada",
},
e: 1,
dt: [1457404740000],
},
{
id: "host-csucanuevo.csuca.org",
type: "node",
t: "Host\ncsucanuevo.csuca.org",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "Guatemala",
},
e: 1,
dt: [1457385300000],
},
{
id: "186.151.199.5",
type: "node",
t: "186.151.199.5",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Guatemala",
host: ["host-csucanuevo.csuca.org"],
},
e: 1,
g: [
{
u: "/images/flags/guatemala.svg",
p: "ne",
},
],
},
{
id: "host-185.92.220.35",
type: "node",
t: "Host\n185.92.220.35",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Belgium",
},
e: 1,
dt: [1457365080000],
},
{
id: "185.92.220.35",
type: "node",
t: "185.92.220.35",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Belgium",
host: ["host-185.92.220.35"],
},
e: 1,
g: [
{
u: "/images/flags/belgium.svg",
p: "ne",
},
],
},
{
id: "host-newculturemediablog.com",
type: "node",
t: "Host\nnewculturemediablog.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1457362020000],
},
{
id: "50.63.50.75",
type: "node",
t: "50.63.50.75",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-newculturemediablog.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-saludaonline.com",
type: "node",
t: "Host\nsaludaonline.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1457357940000],
},
{
id: "184.168.53.1",
type: "node",
t: "184.168.53.1",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-saludaonline.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-109.237.111.168",
type: "node",
t: "Host\n109.237.111.168",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Russia",
},
e: 1,
dt: [1457350680000],
},
{
id: "109.237.111.168",
type: "node",
t: "109.237.111.168",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Russia",
host: ["host-109.237.111.168"],
},
e: 1,
g: [
{
u: "/images/flags/russia.svg",
p: "ne",
},
],
},
{
id: "host-46.108.39.18",
type: "node",
t: "Host\n46.108.39.18",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Romania",
},
e: 1,
dt: [1457350680000],
},
{
id: "46.108.39.18",
type: "node",
t: "46.108.39.18",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Romania",
host: ["host-46.108.39.18"],
},
e: 1,
g: [
{
u: "/images/flags/romania.svg",
p: "ne",
},
],
},
{
id: "host-212.47.223.19",
type: "node",
t: "Host\n212.47.223.19",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Belarus",
},
e: 1,
dt: [1457342820000],
},
{
id: "212.47.223.19",
type: "node",
t: "212.47.223.19",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Belarus",
host: ["host-212.47.223.19"],
},
e: 1,
g: [
{
u: "/images/flags/belarus.svg",
p: "ne",
},
],
},
{
id: "host-tmfilms.net",
type: "node",
t: "Host\ntmfilms.net",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1457342460000],
},
{
id: "50.62.122.1",
type: "node",
t: "50.62.122.1",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-tmfilms.net"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-openroadsolutions.com",
type: "node",
t: "Host\nopenroadsolutions.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "USA",
},
e: 1,
dt: [1457300940000],
},
{
id: "208.109.243.37",
type: "node",
t: "208.109.243.37",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-openroadsolutions.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-www.decorandoimoveis.com",
type: "node",
t: "Host\nwww.decorandoimoveis.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "USA",
},
e: 1,
dt: [1457300940000],
},
{
id: "198.154.250.33",
type: "node",
t: "198.154.250.33",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-www.decorandoimoveis.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-185.82.216.213",
type: "node",
t: "Host\n185.82.216.213",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Bulgaria",
},
e: 1,
dt: [1457265480000],
},
{
id: "185.82.216.213",
type: "node",
t: "185.82.216.213",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Bulgaria",
host: ["host-185.82.216.213"],
},
e: 1,
g: [
{
u: "/images/flags/bulgaria.svg",
p: "ne",
},
],
},
{
id: "host-conspec.us",
type: "node",
t: "Host\nconspec.us",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1457248200000],
},
{
id: "50.62.245.1",
type: "node",
t: "50.62.245.1",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-conspec.us"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-tusrecetas.net",
type: "node",
t: "Host\ntusrecetas.net",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "USA",
},
e: 1,
dt: [1457195160000],
},
{
id: "69.162.104.22",
type: "node",
t: "69.162.104.22",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-tusrecetas.net"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-trion.com.ph",
type: "node",
t: "Host\ntrion.com.ph",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "USA",
},
e: 1,
dt: [1457179140000],
},
{
id: "104.238.111.90",
type: "node",
t: "104.238.111.90",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-trion.com.ph"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-fitga.ru",
type: "node",
t: "Host\nfitga.ru",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Canada",
},
e: 1,
dt: [1457162880000],
},
{
id: "host-cudcfybkk.pw",
type: "node",
t: "Host\ncudcfybkk.pw",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Canada",
},
e: 1,
dt: [1457148540000],
},
{
id: "host-wdvxeval.ru",
type: "node",
t: "Host\nwdvxeval.ru",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Canada",
},
e: 1,
dt: [1457132760000],
},
{
id: "host-gvludcvhcrjwmgq.in",
type: "node",
t: "Host\ngvludcvhcrjwmgq.in",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Canada",
},
e: 1,
dt: [1457125080000],
},
{
id: "host-goktugyeli.com",
type: "node",
t: "Host\ngoktugyeli.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "Turkey",
},
e: 1,
dt: [1457108100000],
},
{
id: "185.22.184.156",
type: "node",
t: "185.22.184.156",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Turkey",
host: ["host-goktugyeli.com"],
},
e: 1,
g: [
{
u: "/images/flags/turkey.svg",
p: "ne",
},
],
},
{
id: "host-iqinternal.com",
type: "node",
t: "Host\niqinternal.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1457104320000],
},
{
id: "107.180.44.212",
type: "node",
t: "107.180.44.212",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-iqinternal.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-hamilton150.co.nz",
type: "node",
t: "Host\nhamilton150.co.nz",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "USA",
},
e: 1,
dt: [1457101740000],
},
{
id: "167.88.167.10",
type: "node",
t: "167.88.167.10",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-hamilton150.co.nz"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-fisioactivo.com",
type: "node",
t: "Host\nfisioactivo.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1457098740000],
},
{
id: "160.153.79.168",
type: "node",
t: "160.153.79.168",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-fisioactivo.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-serbiotecnicos.com",
type: "node",
t: "Host\nserbiotecnicos.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1457076120000],
},
{
id: "198.252.78.160",
type: "node",
t: "198.252.78.160",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-serbiotecnicos.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-onegiantstore.com",
type: "node",
t: "Host\nonegiantstore.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1457029560000],
},
{
id: "50.62.66.1",
type: "node",
t: "50.62.66.1",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-onegiantstore.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-takaram.ir",
type: "node",
t: "Host\ntakaram.ir",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Canada",
},
e: 1,
dt: [1457004900000],
},
{
id: "82.102.8.142",
type: "node",
t: "82.102.8.142",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Canada",
host: ["host-takaram.ir"],
},
e: 1,
g: [
{
u: "/images/flags/canada.svg",
p: "ne",
},
],
},
{
id: "host-dustinhansenbook.com",
type: "node",
t: "Host\ndustinhansenbook.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1456985100000],
},
{
id: "173.201.145.1",
type: "node",
t: "173.201.145.1",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-dustinhansenbook.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-95.213.184.10",
type: "node",
t: "Host\n95.213.184.10",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Russia",
},
e: 1,
dt: [1456935180000],
},
{
id: "95.213.184.10",
type: "node",
t: "95.213.184.10",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Russia",
host: ["host-95.213.184.10"],
},
e: 1,
g: [
{
u: "/images/flags/russia.svg",
p: "ne",
},
],
},
{
id: "host-192.71.213.69",
type: "node",
t: "Host\n192.71.213.69",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Spain",
},
e: 1,
dt: [1456931280000],
},
{
id: "192.71.213.69",
type: "node",
t: "192.71.213.69",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Spain",
host: ["host-192.71.213.69"],
},
e: 1,
g: [
{
u: "/images/flags/spain.svg",
p: "ne",
},
],
},
{
id: "host-americancorner.udp.cl",
type: "node",
t: "Host\namericancorner.udp.cl",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Chile",
},
e: 1,
dt: [1456927680000],
},
{
id: "200.14.85.32",
type: "node",
t: "200.14.85.32",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Chile",
host: ["host-americancorner.udp.cl"],
},
e: 1,
g: [
{
u: "/images/flags/chile.svg",
p: "ne",
},
],
},
{
id: "host-ptlchemicaltrading.com",
type: "node",
t: "Host\nptlchemicaltrading.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "Thailand",
},
e: 1,
dt: [1456901100000],
},
{
id: "119.59.120.21",
type: "node",
t: "119.59.120.21",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Thailand",
host: ["host-ptlchemicaltrading.com"],
},
e: 1,
g: [
{
u: "/images/flags/thailand.svg",
p: "ne",
},
],
},
{
id: "host-opravnatramvaji.cz",
type: "node",
t: "Host\nopravnatramvaji.cz",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "Rep Czech",
},
e: 1,
dt: [1456863000000],
},
{
id: "host-5.34.183.195",
type: "node",
t: "Host\n5.34.183.195",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Ukraine",
},
e: 1,
dt: [1456840800000],
},
{
id: "5.34.183.195",
type: "node",
t: "5.34.183.195",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Ukraine",
host: ["host-5.34.183.195"],
},
e: 1,
g: [
{
u: "/images/flags/ukraine.svg",
p: "ne",
},
],
},
{
id: "host-kypsuw.pw",
type: "node",
t: "Host\nkypsuw.pw",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Canada",
},
e: 1,
dt: [1456840800000],
},
{
id: "host-185.14.29.188",
type: "node",
t: "Host\n185.14.29.188",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Belgium",
},
e: 1,
dt: [1456834500000],
},
{
id: "185.14.29.188",
type: "node",
t: "185.14.29.188",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Belgium",
host: ["host-185.14.29.188"],
},
e: 1,
g: [
{
u: "/images/flags/belgium.svg",
p: "ne",
},
],
},
{
id: "host-challengestrata.com.au",
type: "node",
t: "Host\nchallengestrata.com.au",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Australia",
},
e: 1,
dt: [1456809660000],
},
{
id: "175.107.181.167",
type: "node",
t: "175.107.181.167",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Australia",
host: ["host-challengestrata.com.au"],
},
e: 1,
g: [
{
u: "/images/flags/australia.svg",
p: "ne",
},
],
},
{
id: "host-dichiro.com",
type: "node",
t: "Host\ndichiro.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "USA",
},
e: 1,
dt: [1456809660000],
},
{
id: "206.188.193.93",
type: "node",
t: "206.188.193.93",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-dichiro.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-beyondthedog.net",
type: "node",
t: "Host\nbeyondthedog.net",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "USA",
},
e: 1,
dt: [1456794180000],
},
{
id: "host-91.219.29.55",
type: "node",
t: "Host\n91.219.29.55",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Ukraine",
},
e: 1,
dt: [1456754940000],
},
{
id: "91.219.29.55",
type: "node",
t: "91.219.29.55",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Ukraine",
host: ["host-91.219.29.55"],
},
e: 1,
g: [
{
u: "/images/flags/ukraine.svg",
p: "ne",
},
],
},
{
id: "host-music.mbsaeger.com",
type: "node",
t: "Host\nmusic.mbsaeger.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1456749360000],
},
{
id: "76.125.213.205",
type: "node",
t: "76.125.213.205",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-music.mbsaeger.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-stacon.eu",
type: "node",
t: "Host\nstacon.eu",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "Poland",
},
e: 1,
dt: [1456749360000],
},
{
id: "188.116.9.2",
type: "node",
t: "188.116.9.2",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Poland",
host: ["host-stacon.eu"],
},
e: 1,
g: [
{
u: "/images/flags/republic-of-poland.svg",
p: "ne",
},
],
},
{
id: "host-worldisonefamily.info",
type: "node",
t: "Host\nworldisonefamily.info",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "Britain",
},
e: 1,
dt: [1456749360000],
},
{
id: "23.229.4.214",
type: "node",
t: "23.229.4.214",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Britain",
host: ["host-worldisonefamily.info"],
},
e: 1,
g: [
{
u: "/images/flags/united-kingdom.svg",
p: "ne",
},
],
},
{
id: "host-imagescroll.com",
type: "node",
t: "Host\nimagescroll.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "France",
},
e: 1,
dt: [1456738320000],
},
{
id: "62.210.141.228",
type: "node",
t: "62.210.141.228",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "France",
host: ["host-imagescroll.com"],
},
e: 1,
g: [
{
u: "/images/flags/france.svg",
p: "ne",
},
],
},
{
id: "host-lazymoosestamping.com",
type: "node",
t: "Host\nlazymoosestamping.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "USA",
},
e: 1,
dt: [1456696620000],
},
{
id: "173.225.189.5",
type: "node",
t: "173.225.189.5",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-lazymoosestamping.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-maternalserenity.co.uk",
type: "node",
t: "Host\nmaternalserenity.co.uk",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "USA",
},
e: 1,
dt: [1456695420000],
},
{
id: "69.10.56.10",
type: "node",
t: "69.10.56.10",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-maternalserenity.co.uk"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-hongsi.com",
type: "node",
t: "Host\nhongsi.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "South Korea",
},
e: 1,
dt: [1456649400000],
},
{
id: "110.45.144.173",
type: "node",
t: "110.45.144.173",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "South Korea",
host: ["host-hongsi.com", "host-ikstrade.co.kr"],
},
e: 1,
g: [
{
u: "/images/flags/south-korea.svg",
p: "ne",
},
],
},
{
id: "host-biocarbon.com.ec",
type: "node",
t: "Host\nbiocarbon.com.ec",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1456580760000],
},
{
id: "192.185.39.66",
type: "node",
t: "192.185.39.66",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-biocarbon.com.ec"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-cursos.feyda.net",
type: "node",
t: "Host\ncursos.feyda.net",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "USA",
},
e: 1,
dt: [1456573980000],
},
{
id: "198.154.228.128",
type: "node",
t: "198.154.228.128",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-cursos.feyda.net"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-igatha.com",
type: "node",
t: "Host\nigatha.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Belgium",
},
e: 1,
dt: [1456573980000],
},
{
id: "217.23.12.215",
type: "node",
t: "217.23.12.215",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Belgium",
host: ["host-igatha.com"],
},
e: 1,
g: [
{
u: "/images/flags/belgium.svg",
p: "ne",
},
],
},
{
id: "host-www.vishvagujarat.com",
type: "node",
t: "Host\nwww.vishvagujarat.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "USA",
},
e: 1,
dt: [1456573980000],
},
{
id: "104.27.142.99",
type: "node",
t: "104.27.142.99",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-www.vishvagujarat.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-heizhuangym.com",
type: "node",
t: "Host\nheizhuangym.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "Hong Kong",
},
e: 1,
dt: [1456550940000],
},
{
id: "103.254.148.129",
type: "node",
t: "103.254.148.129",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Hong Kong",
host: ["host-heizhuangym.com"],
},
e: 1,
g: [
{
u: "/images/flags/hong-kong.svg",
p: "ne",
},
],
},
{
id: "host-best-service.jp",
type: "node",
t: "Host\nbest-service.jp",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Japan",
},
e: 1,
dt: [1456532460000],
},
{
id: "203.145.230.194",
type: "node",
t: "203.145.230.194",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Japan",
host: ["host-best-service.jp"],
},
e: 1,
g: [
{
u: "/images/flags/japan.svg",
p: "ne",
},
],
},
{
id: "host-surrogacyandadoption.com",
type: "node",
t: "Host\nsurrogacyandadoption.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "Russia",
},
e: 1,
dt: [1456510860000],
},
{
id: "185.26.122.59",
type: "node",
t: "185.26.122.59",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Russia",
host: ["host-surrogacyandadoption.com"],
},
e: 1,
g: [
{
u: "/images/flags/russia.svg",
p: "ne",
},
],
},
{
id: "host-jessforkicks.com",
type: "node",
t: "Host\njessforkicks.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1456469340000],
},
{
id: "96.226.119.251",
type: "node",
t: "96.226.119.251",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-jessforkicks.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-viralcrazies.com",
type: "node",
t: "Host\nviralcrazies.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Belgium",
},
e: 1,
dt: [1456446180000],
},
{
id: "46.166.187.64",
type: "node",
t: "46.166.187.64",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Belgium",
host: ["host-viralcrazies.com"],
},
e: 1,
g: [
{
u: "/images/flags/belgium.svg",
p: "ne",
},
],
},
{
id: "host-domaine-cassillac.com",
type: "node",
t: "Host\ndomaine-cassillac.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "France",
},
e: 1,
dt: [1456436640000],
},
{
id: "213.186.33.87",
type: "node",
t: "213.186.33.87",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "France",
host: ["host-domaine-cassillac.com"],
},
e: 1,
g: [
{
u: "/images/flags/france.svg",
p: "ne",
},
],
},
{
id: "host-double-wing.de",
type: "node",
t: "Host\ndouble-wing.de",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Germany",
},
e: 1,
dt: [1456436640000],
},
{
id: "217.119.54.152",
type: "node",
t: "217.119.54.152",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Germany",
host: ["host-double-wing.de"],
},
e: 1,
g: [
{
u: "/images/flags/germany.svg",
p: "ne",
},
],
},
{
id: "host-eatside.es",
type: "node",
t: "Host\neatside.es",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Spain",
},
e: 1,
dt: [1456436640000],
},
{
id: "134.0.15.35",
type: "node",
t: "134.0.15.35",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Spain",
host: ["host-eatside.es"],
},
e: 1,
g: [
{
u: "/images/flags/spain.svg",
p: "ne",
},
],
},
{
id: "host-185.22.67.27",
type: "node",
t: "Host\n185.22.67.27",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Kazakhstan",
},
e: 1,
dt: [1456432260000],
},
{
id: "185.22.67.27",
type: "node",
t: "185.22.67.27",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Kazakhstan",
host: ["host-185.22.67.27"],
},
e: 1,
g: [
{
u: "/images/flags/kazakhstan.svg",
p: "ne",
},
],
},
{
id: "host-91.121.97.170",
type: "node",
t: "Host\n91.121.97.170",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "France",
},
e: 1,
dt: [1456424400000],
},
{
id: "91.121.97.170",
type: "node",
t: "91.121.97.170",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "France",
host: ["host-91.121.97.170"],
},
e: 1,
g: [
{
u: "/images/flags/france.svg",
p: "ne",
},
],
},
{
id: "host-definitionen.de",
type: "node",
t: "Host\ndefinitionen.de",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Germany",
},
e: 1,
dt: [1456417800000],
},
{
id: "136.243.69.220",
type: "node",
t: "136.243.69.220",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Germany",
host: ["host-definitionen.de"],
},
e: 1,
g: [
{
u: "/images/flags/germany.svg",
p: "ne",
},
],
},
{
id: "host-ecocalsots.com",
type: "node",
t: "Host\necocalsots.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Spain",
},
e: 1,
dt: [1456417800000],
},
{
id: "37.247.125.42",
type: "node",
t: "37.247.125.42",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Spain",
host: ["host-ecocalsots.com"],
},
e: 1,
g: [
{
u: "/images/flags/spain.svg",
p: "ne",
},
],
},
{
id: "host-recaswine.ro",
type: "node",
t: "Host\nrecaswine.ro",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Romania",
},
e: 1,
dt: [1456417800000],
},
{
id: "93.118.36.235",
type: "node",
t: "93.118.36.235",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Romania",
host: ["host-recaswine.ro"],
},
e: 1,
g: [
{
u: "/images/flags/romania.svg",
p: "ne",
},
],
},
{
id: "host-nupleta.com.br",
type: "node",
t: "Host\nnupleta.com.br",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Brazil",
},
e: 1,
dt: [1456410900000],
},
{
id: "186.202.127.236",
type: "node",
t: "186.202.127.236",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Brazil",
host: ["host-nupleta.com.br"],
},
e: 1,
g: [
{
u: "/images/flags/brazil.svg",
p: "ne",
},
],
},
{
id: "host-bnjhx.eu",
type: "node",
t: "Host\nbnjhx.eu",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Canada",
},
e: 1,
dt: [1456410600000],
},
{
id: "host-jxqdry.ru",
type: "node",
t: "Host\njxqdry.ru",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Canada",
},
e: 1,
dt: [1456410600000],
},
{
id: "host-odgtnkmq.pw",
type: "node",
t: "Host\nodgtnkmq.pw",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "USA",
},
e: 1,
dt: [1456410600000],
},
{
id: "98.143.148.173",
type: "node",
t: "98.143.148.173",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-odgtnkmq.pw", "host-gitybdjgbxd.nl"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-lutheranph.com",
type: "node",
t: "Host\nlutheranph.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1456399500000],
},
{
id: "107.180.41.49",
type: "node",
t: "107.180.41.49",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-lutheranph.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-5.34.183.136",
type: "node",
t: "Host\n5.34.183.136",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Ukraine",
},
e: 1,
dt: [1456394520000],
},
{
id: "5.34.183.136",
type: "node",
t: "5.34.183.136",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Ukraine",
host: ["host-5.34.183.136"],
},
e: 1,
g: [
{
u: "/images/flags/ukraine.svg",
p: "ne",
},
],
},
{
id: "host-51.254.19.227",
type: "node",
t: "Host\n51.254.19.227",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "France",
},
e: 1,
dt: [1456389900000],
},
{
id: "51.254.19.227",
type: "node",
t: "51.254.19.227",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "France",
host: ["host-51.254.19.227"],
},
e: 1,
g: [
{
u: "/images/flags/france.svg",
p: "ne",
},
],
},
{
id: "host-national-drafting.com",
type: "node",
t: "Host\nnational-drafting.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "USA",
},
e: 1,
dt: [1456388760000],
},
{
id: "166.62.93.187",
type: "node",
t: "166.62.93.187",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-national-drafting.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-31.184.197.119",
type: "node",
t: "Host\n31.184.197.119",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Russia",
},
e: 1,
dt: [1456387980000],
},
{
id: "31.184.197.119",
type: "node",
t: "31.184.197.119",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Russia",
host: ["host-31.184.197.119"],
},
e: 1,
g: [
{
u: "/images/flags/russia.svg",
p: "ne",
},
],
},
{
id: "host-snibi.se",
type: "node",
t: "Host\nsnibi.se",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "Sweden",
},
e: 1,
dt: [1456383600000],
},
{
id: "212.16.182.196",
type: "node",
t: "212.16.182.196",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Sweden",
host: ["host-snibi.se"],
},
e: 1,
g: [
{
u: "/images/flags/sweden.svg",
p: "ne",
},
],
},
{
id: "host-haarsaloncindy.nl",
type: "node",
t: "Host\nhaarsaloncindy.nl",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Belgium",
},
e: 1,
dt: [1456338960000],
},
{
id: "5.178.65.43",
type: "node",
t: "5.178.65.43",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Belgium",
host: ["host-haarsaloncindy.nl"],
},
e: 1,
g: [
{
u: "/images/flags/belgium.svg",
p: "ne",
},
],
},
{
id: "host-www.big-cola.com",
type: "node",
t: "Host\nwww.big-cola.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "Spain",
},
e: 1,
dt: [1456293000000],
},
{
id: "77.73.81.35",
type: "node",
t: "77.73.81.35",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Spain",
host: ["host-www.big-cola.com"],
},
e: 1,
g: [
{
u: "/images/flags/spain.svg",
p: "ne",
},
],
},
{
id: "host-salesandmarketing101.net",
type: "node",
t: "Host\nsalesandmarketing101.net",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1456235700000],
},
{
id: "23.229.172.137",
type: "node",
t: "23.229.172.137",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-salesandmarketing101.net"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-ikstrade.co.kr",
type: "node",
t: "Host\nikstrade.co.kr",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "South Korea",
},
e: 1,
dt: [1456233840000],
},
{
id: "host-185.46.11.239",
type: "node",
t: "Host\n185.46.11.239",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Russia",
},
e: 1,
dt: [1456227900000],
},
{
id: "185.46.11.239",
type: "node",
t: "185.46.11.239",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Russia",
host: ["host-185.46.11.239", "host-pvwinlrmwvccuo.eu"],
},
e: 1,
g: [
{
u: "/images/flags/russia.svg",
p: "ne",
},
],
},
{
id: "host-feuerwehr-stadt-riesa.de",
type: "node",
t: "Host\nfeuerwehr-stadt-riesa.de",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Germany",
},
e: 1,
dt: [1456226760000],
},
{
id: "178.254.50.156",
type: "node",
t: "178.254.50.156",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Germany",
host: ["host-feuerwehr-stadt-riesa.de"],
},
e: 1,
g: [
{
u: "/images/flags/germany.svg",
p: "ne",
},
],
},
{
id: "host-paintituppottery.com",
type: "node",
t: "Host\npaintituppottery.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "USA",
},
e: 1,
dt: [1456226760000],
},
{
id: "208.117.38.143",
type: "node",
t: "208.117.38.143",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-paintituppottery.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-takatei.com",
type: "node",
t: "Host\ntakatei.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Japan",
},
e: 1,
dt: [1456226760000],
},
{
id: "203.189.109.240",
type: "node",
t: "203.189.109.240",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Japan",
host: ["host-takatei.com"],
},
e: 1,
g: [
{
u: "/images/flags/japan.svg",
p: "ne",
},
],
},
{
id: "host-www.hanoiguidedtours.com",
type: "node",
t: "Host\nwww.hanoiguidedtours.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "USA",
},
e: 1,
dt: [1456226760000],
},
{
id: "104.131.43.146",
type: "node",
t: "104.131.43.146",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-www.hanoiguidedtours.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-www.rippedknees.co.uk",
type: "node",
t: "Host\nwww.rippedknees.co.uk",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Britain",
},
e: 1,
dt: [1456226760000],
},
{
id: "212.48.68.63",
type: "node",
t: "212.48.68.63",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Britain",
host: ["host-www.rippedknees.co.uk"],
},
e: 1,
g: [
{
u: "/images/flags/united-kingdom.svg",
p: "ne",
},
],
},
{
id: "host-salaeigroup.com",
type: "node",
t: "Host\nsalaeigroup.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1456207620000],
},
{
id: "107.180.2.115",
type: "node",
t: "107.180.2.115",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-salaeigroup.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-ecolux-comfort.com",
type: "node",
t: "Host\necolux-comfort.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Russia",
},
e: 1,
dt: [1456184580000],
},
{
id: "188.127.249.243",
type: "node",
t: "188.127.249.243",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Russia",
host: ["host-ecolux-comfort.com"],
},
e: 1,
g: [
{
u: "/images/flags/russia.svg",
p: "ne",
},
],
},
{
id: "host-abdal.com.ua",
type: "node",
t: "Host\nabdal.com.ua",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Ukraine",
},
e: 1,
dt: [1456177140000],
},
{
id: "185.68.16.196",
type: "node",
t: "185.68.16.196",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Ukraine",
host: ["host-abdal.com.ua"],
},
e: 1,
g: [
{
u: "/images/flags/ukraine.svg",
p: "ne",
},
],
},
{
id: "host-building.msu.ac.th",
type: "node",
t: "Host\nbuilding.msu.ac.th",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Thailand",
},
e: 1,
dt: [1456177140000],
},
{
id: "202.28.32.20",
type: "node",
t: "202.28.32.20",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Thailand",
host: ["host-building.msu.ac.th"],
},
e: 1,
g: [
{
u: "/images/flags/thailand.svg",
p: "ne",
},
],
},
{
id: "host-konyavakfi.nl",
type: "node",
t: "Host\nkonyavakfi.nl",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Belgium",
},
e: 1,
dt: [1456177140000],
},
{
id: "91.208.60.158",
type: "node",
t: "91.208.60.158",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Belgium",
host: ["host-konyavakfi.nl"],
},
e: 1,
g: [
{
u: "/images/flags/belgium.svg",
p: "ne",
},
],
},
{
id: "host-www.granmarquise.com.br",
type: "node",
t: "Host\nwww.granmarquise.com.br",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Brazil",
},
e: 1,
dt: [1456177140000],
},
{
id: "187.18.184.70",
type: "node",
t: "187.18.184.70",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Brazil",
host: ["host-www.granmarquise.com.br"],
},
e: 1,
g: [
{
u: "/images/flags/brazil.svg",
p: "ne",
},
],
},
{
id: "host-188.138.88.184",
type: "node",
t: "Host\n188.138.88.184",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Germany",
},
e: 1,
dt: [1456068180000],
},
{
id: "188.138.88.184",
type: "node",
t: "188.138.88.184",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Germany",
host: ["host-188.138.88.184"],
},
e: 1,
g: [
{
u: "/images/flags/germany.svg",
p: "ne",
},
],
},
{
id: "host-31.184.233.106",
type: "node",
t: "Host\n31.184.233.106",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Russia",
},
e: 1,
dt: [1456061820000],
},
{
id: "31.184.233.106",
type: "node",
t: "31.184.233.106",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Russia",
host: ["host-31.184.233.106"],
},
e: 1,
g: [
{
u: "/images/flags/russia.svg",
p: "ne",
},
],
},
{
id: "host-frame3d.de",
type: "node",
t: "Host\nframe3d.de",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Germany",
},
e: 1,
dt: [1455975420000],
},
{
id: "178.254.10.169",
type: "node",
t: "178.254.10.169",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Germany",
host: ["host-frame3d.de"],
},
e: 1,
g: [
{
u: "/images/flags/germany.svg",
p: "ne",
},
],
},
{
id: "host-autohaus-seevetal.com",
type: "node",
t: "Host\nautohaus-seevetal.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Germany",
},
e: 1,
dt: [1455967260000],
},
{
id: "81.169.145.162",
type: "node",
t: "81.169.145.162",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Germany",
host: ["host-autohaus-seevetal.com"],
},
e: 1,
g: [
{
u: "/images/flags/germany.svg",
p: "ne",
},
],
},
{
id: "host-bisofit.com",
type: "node",
t: "Host\nbisofit.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Ukraine",
},
e: 1,
dt: [1455967260000],
},
{
id: "185.68.16.111",
type: "node",
t: "185.68.16.111",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Ukraine",
host: ["host-bisofit.com"],
},
e: 1,
g: [
{
u: "/images/flags/ukraine.svg",
p: "ne",
},
],
},
{
id: "host-www.healthstafftravel.com.au",
type: "node",
t: "Host\nwww.healthstafftravel.com.au",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "USA",
},
e: 1,
dt: [1455967260000],
},
{
id: "64.207.186.229",
type: "node",
t: "64.207.186.229",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-www.healthstafftravel.com.au"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-31.41.47.37",
type: "node",
t: "Host\n31.41.47.37",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Russia",
},
e: 1,
dt: [1455964740000],
},
{
id: "31.41.47.37",
type: "node",
t: "31.41.47.37",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Russia",
host: ["host-31.41.47.37"],
},
e: 1,
g: [
{
u: "/images/flags/russia.svg",
p: "ne",
},
],
},
{
id: "host-gitybdjgbxd.nl",
type: "node",
t: "Host\ngitybdjgbxd.nl",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "USA",
},
e: 1,
dt: [1455964740000],
},
{
id: "host-svkjhguk.ru",
type: "node",
t: "Host\nsvkjhguk.ru",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Canada",
},
e: 1,
dt: [1455964740000],
},
{
id: "host-pvwinlrmwvccuo.eu",
type: "node",
t: "Host\npvwinlrmwvccuo.eu",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Russia",
},
e: 1,
dt: [1455905940000],
},
{
id: "host-iglesiaelrenacer.com",
type: "node",
t: "Host\niglesiaelrenacer.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1455902340000],
},
{
id: "160.153.76.161",
type: "node",
t: "160.153.76.161",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-iglesiaelrenacer.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-aditaborai.com.br",
type: "node",
t: "Host\naditaborai.com.br",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "USA",
},
e: 1,
dt: [1455898380000],
},
{
id: "108.179.192.88",
type: "node",
t: "108.179.192.88",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-aditaborai.com.br"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-85.25.138.187",
type: "node",
t: "Host\n85.25.138.187",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Germany",
},
e: 1,
dt: [1455890580000],
},
{
id: "85.25.138.187",
type: "node",
t: "85.25.138.187",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Germany",
host: ["host-85.25.138.187"],
},
e: 1,
g: [
{
u: "/images/flags/germany.svg",
p: "ne",
},
],
},
{
id: "host-theassemblyguy.co.nz",
type: "node",
t: "Host\ntheassemblyguy.co.nz",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "New Zealand",
},
e: 1,
dt: [1455858780000],
},
{
id: "103.40.81.47",
type: "node",
t: "103.40.81.47",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "New Zealand",
host: ["host-theassemblyguy.co.nz"],
},
e: 1,
g: [
{
u: "/images/flags/new-zealand.svg",
p: "ne",
},
],
},
{
id: "host-www.001edizioni.com",
type: "node",
t: "Host\nwww.001edizioni.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Italy",
},
e: 1,
dt: [1455858780000],
},
{
id: "95.110.230.190",
type: "node",
t: "95.110.230.190",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Italy",
host: ["host-www.001edizioni.com"],
},
e: 1,
g: [
{
u: "/images/flags/italy.svg",
p: "ne",
},
],
},
{
id: "host-94.242.57.45",
type: "node",
t: "Host\n94.242.57.45",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Russia",
},
e: 1,
dt: [1455820380000],
},
{
id: "94.242.57.45",
type: "node",
t: "94.242.57.45",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Russia",
host: ["host-94.242.57.45"],
},
e: 1,
g: [
{
u: "/images/flags/russia.svg",
p: "ne",
},
],
},
{
id: "host-46.4.239.76",
type: "node",
t: "Host\n46.4.239.76",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Germany",
},
e: 1,
dt: [1455803280000],
},
{
id: "46.4.239.76",
type: "node",
t: "46.4.239.76",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Germany",
host: ["host-46.4.239.76"],
},
e: 1,
g: [
{
u: "/images/flags/germany.svg",
p: "ne",
},
],
},
{
id: "host-185.14.30.97",
type: "node",
t: "Host\n185.14.30.97",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Belgium",
},
e: 1,
dt: [1455802620000],
},
{
id: "185.14.30.97",
type: "node",
t: "185.14.30.97",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Belgium",
host: ["host-185.14.30.97"],
},
e: 1,
g: [
{
u: "/images/flags/belgium.svg",
p: "ne",
},
],
},
{
id: "host-dltvwp.it",
type: "node",
t: "Host\ndltvwp.it",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Britain",
},
e: 1,
dt: [1455798720000],
},
{
id: "104.238.173.18",
type: "node",
t: "104.238.173.18",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Britain",
host: ["host-dltvwp.it", "host-xfyubqmldwvuyar.yt"],
},
e: 1,
g: [
{
u: "/images/flags/united-kingdom.svg",
p: "ne",
},
],
},
{
id: "host-uxvvm.us",
type: "node",
t: "Host\nuxvvm.us",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "USA",
},
e: 1,
dt: [1455798720000],
},
{
id: "host-dongxinh.com",
type: "node",
t: "Host\ndongxinh.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "Vietnam",
},
e: 1,
dt: [1455795060000],
},
{
id: "103.27.60.14",
type: "node",
t: "103.27.60.14",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Vietnam",
host: ["host-dongxinh.com"],
},
e: 1,
g: [
{
u: "/images/flags/vietnam.svg",
p: "ne",
},
],
},
{
id: "host-dustywinslow.com",
type: "node",
t: "Host\ndustywinslow.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1455792240000],
},
{
id: "108.174.112.194",
type: "node",
t: "108.174.112.194",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-dustywinslow.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-95.181.171.58",
type: "node",
t: "Host\n95.181.171.58",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Russia",
},
e: 1,
dt: [1455792240000],
},
{
id: "95.181.171.58",
type: "node",
t: "95.181.171.58",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Russia",
host: ["host-95.181.171.58"],
},
e: 1,
g: [
{
u: "/images/flags/russia.svg",
p: "ne",
},
],
},
{
id: "host-kqlxtqptsmys.in",
type: "node",
t: "Host\nkqlxtqptsmys.in",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Canada",
},
e: 1,
dt: [1455792240000],
},
{
id: "host-195.154.241.208",
type: "node",
t: "Host\n195.154.241.208",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "France",
},
e: 1,
dt: [1455762960000],
},
{
id: "195.154.241.208",
type: "node",
t: "195.154.241.208",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "France",
host: ["host-195.154.241.208"],
},
e: 1,
g: [
{
u: "/images/flags/france.svg",
p: "ne",
},
],
},
{
id: "host-fnarsipfqe.pw",
type: "node",
t: "Host\nfnarsipfqe.pw",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "USA",
},
e: 1,
dt: [1455731820000],
},
{
id: "host-sdwempsovemtr.yt",
type: "node",
t: "Host\nsdwempsovemtr.yt",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "USA",
},
e: 1,
dt: [1455731820000],
},
{
id: "host-luvenxj.uk",
type: "node",
t: "Host\nluvenxj.uk",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "USA",
},
e: 1,
dt: [1455721140000],
},
{
id: "host-xfyubqmldwvuyar.yt",
type: "node",
t: "Host\nxfyubqmldwvuyar.yt",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Britain",
},
e: 1,
dt: [1455721140000],
},
{
id: "host-lovemydress.pl",
type: "node",
t: "Host\nlovemydress.pl",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "Poland",
},
e: 1,
dt: [1455710820000],
},
{
id: "79.96.7.15",
type: "node",
t: "79.96.7.15",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Poland",
host: ["host-lovemydress.pl"],
},
e: 1,
g: [
{
u: "/images/flags/republic-of-poland.svg",
p: "ne",
},
],
},
{
id: "host-195.64.154.14",
type: "node",
t: "Host\n195.64.154.14",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Ukraine",
},
e: 1,
dt: [1455629340000],
},
{
id: "195.64.154.14",
type: "node",
t: "195.64.154.14",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Ukraine",
host: ["host-195.64.154.14"],
},
e: 1,
g: [
{
u: "/images/flags/ukraine.svg",
p: "ne",
},
],
},
{
id: "host-86.104.134.144",
type: "node",
t: "Host\n86.104.134.144",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "Locky",
from: "Serbia",
},
e: 1,
dt: [1455611520000],
},
{
id: "86.104.134.144",
type: "node",
t: "86.104.134.144",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Serbia",
host: ["host-86.104.134.144"],
},
e: 1,
g: [
{
u: "/images/flags/serbia.svg",
p: "ne",
},
],
},
{
id: "host-ekop.org",
type: "node",
t: "Host\nekop.org",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "Turkey",
},
e: 1,
dt: [1455543660000],
},
{
id: "94.73.150.60",
type: "node",
t: "94.73.150.60",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Turkey",
host: ["host-ekop.org"],
},
e: 1,
g: [
{
u: "/images/flags/turkey.svg",
p: "ne",
},
],
},
{
id: "host-mosaudit.com",
type: "node",
t: "Host\nmosaudit.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "Russia",
},
e: 1,
dt: [1455531600000],
},
{
id: "81.177.140.144",
type: "node",
t: "81.177.140.144",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Russia",
host: ["host-mosaudit.com"],
},
e: 1,
g: [
{
u: "/images/flags/russia.svg",
p: "ne",
},
],
},
{
id: "host-yoyoeventos.com",
type: "node",
t: "Host\nyoyoeventos.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "Brazil",
},
e: 1,
dt: [1455419760000],
},
{
id: "187.45.240.67",
type: "node",
t: "187.45.240.67",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Brazil",
host: ["host-yoyoeventos.com"],
},
e: 1,
g: [
{
u: "/images/flags/brazil.svg",
p: "ne",
},
],
},
{
id: "host-madisonbootcamps.com",
type: "node",
t: "Host\nmadisonbootcamps.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "USA",
},
e: 1,
dt: [1455393180000],
},
{
id: "50.63.64.23",
type: "node",
t: "50.63.64.23",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-madisonbootcamps.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-millsmanagement.nl",
type: "node",
t: "Host\nmillsmanagement.nl",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Belgium",
},
e: 1,
dt: [1455354720000],
},
{
id: "83.137.194.38",
type: "node",
t: "83.137.194.38",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Belgium",
host: ["host-millsmanagement.nl"],
},
e: 1,
g: [
{
u: "/images/flags/belgium.svg",
p: "ne",
},
],
},
{
id: "host-nonnuoccaobang.com",
type: "node",
t: "Host\nnonnuoccaobang.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Vietnam",
},
e: 1,
dt: [1455326100000],
},
{
id: "113.52.45.94",
type: "node",
t: "113.52.45.94",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Vietnam",
host: ["host-nonnuoccaobang.com"],
},
e: 1,
g: [
{
u: "/images/flags/vietnam.svg",
p: "ne",
},
],
},
{
id: "host-italyprego.com",
type: "node",
t: "Host\nitalyprego.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Russia",
},
e: 1,
dt: [1455129960000],
},
{
id: "78.110.50.154",
type: "node",
t: "78.110.50.154",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Russia",
host: ["host-italyprego.com"],
},
e: 1,
g: [
{
u: "/images/flags/russia.svg",
p: "ne",
},
],
},
{
id: "host-www.kadinweb.net",
type: "node",
t: "Host\nwww.kadinweb.net",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Turkey",
},
e: 1,
dt: [1455070680000],
},
{
id: "185.8.33.117",
type: "node",
t: "185.8.33.117",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Turkey",
host: ["host-www.kadinweb.net"],
},
e: 1,
g: [
{
u: "/images/flags/turkey.svg",
p: "ne",
},
],
},
{
id: "host-dunyamuzelerimuzesi.com",
type: "node",
t: "Host\ndunyamuzelerimuzesi.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "Turkey",
},
e: 1,
dt: [1455012480000],
},
{
id: "94.73.148.60",
type: "node",
t: "94.73.148.60",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Turkey",
host: ["host-dunyamuzelerimuzesi.com"],
},
e: 1,
g: [
{
u: "/images/flags/turkey.svg",
p: "ne",
},
],
},
{
id: "host-iicsdrd.com",
type: "node",
t: "Host\niicsdrd.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1455012480000],
},
{
id: "205.144.171.9",
type: "node",
t: "205.144.171.9",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-iicsdrd.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-www.plexipr.com",
type: "node",
t: "Host\nwww.plexipr.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "USA",
},
e: 1,
dt: [1454970720000],
},
{
id: "65.98.35.114",
type: "node",
t: "65.98.35.114",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-www.plexipr.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-www.bishopbell.co.uk",
type: "node",
t: "Host\nwww.bishopbell.co.uk",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Britain",
},
e: 1,
dt: [1454911740000],
},
{
id: "217.177.8.89",
type: "node",
t: "217.177.8.89",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Britain",
host: ["host-www.bishopbell.co.uk"],
},
e: 1,
g: [
{
u: "/images/flags/united-kingdom.svg",
p: "ne",
},
],
},
{
id: "host-studiolegalecsb.it",
type: "node",
t: "Host\nstudiolegalecsb.it",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "USA",
},
e: 1,
dt: [1454910960000],
},
{
id: "104.47.161.9",
type: "node",
t: "104.47.161.9",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-studiolegalecsb.it"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-smartnote.co",
type: "node",
t: "Host\nsmartnote.co",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "USA",
},
e: 1,
dt: [1454910840000],
},
{
id: "184.168.68.65",
type: "node",
t: "184.168.68.65",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-smartnote.co"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-dechehang.com",
type: "node",
t: "Host\ndechehang.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "China",
},
e: 1,
dt: [1454789100000],
},
{
id: "112.124.96.107",
type: "node",
t: "112.124.96.107",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "China",
host: ["host-dechehang.com"],
},
e: 1,
g: [
{
u: "/images/flags/china.svg",
p: "ne",
},
],
},
{
id: "host-www.feddoctor.com",
type: "node",
t: "Host\nwww.feddoctor.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "USA",
},
e: 1,
dt: [1454746920000],
},
{
id: "192.163.206.61",
type: "node",
t: "192.163.206.61",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-www.feddoctor.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-portret-tekening.nl",
type: "node",
t: "Host\nportret-tekening.nl",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Belgium",
},
e: 1,
dt: [1454691540000],
},
{
id: "83.137.194.115",
type: "node",
t: "83.137.194.115",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Belgium",
host: ["host-portret-tekening.nl"],
},
e: 1,
g: [
{
u: "/images/flags/belgium.svg",
p: "ne",
},
],
},
{
id: "host-ascortimisoara.ro",
type: "node",
t: "Host\nascortimisoara.ro",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Romania",
},
e: 1,
dt: [1454650500000],
},
{
id: "86.105.207.51",
type: "node",
t: "86.105.207.51",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Romania",
host: ["host-ascortimisoara.ro"],
},
e: 1,
g: [
{
u: "/images/flags/romania.svg",
p: "ne",
},
],
},
{
id: "host-zavidovodom.com",
type: "node",
t: "Host\nzavidovodom.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "Russia",
},
e: 1,
dt: [1454626140000],
},
{
id: "78.110.50.137",
type: "node",
t: "78.110.50.137",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Russia",
host: ["host-zavidovodom.com"],
},
e: 1,
g: [
{
u: "/images/flags/russia.svg",
p: "ne",
},
],
},
{
id: "host-southinstrument.org",
type: "node",
t: "Host\nsouthinstrument.org",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "Poland",
},
e: 1,
dt: [1454512020000],
},
{
id: "212.85.98.241",
type: "node",
t: "212.85.98.241",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Poland",
host: ["host-southinstrument.org"],
},
e: 1,
g: [
{
u: "/images/flags/republic-of-poland.svg",
p: "ne",
},
],
},
{
id: "host-wefindco.com",
type: "node",
t: "Host\nwefindco.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1454357820000],
},
{
id: "107.182.238.196",
type: "node",
t: "107.182.238.196",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-wefindco.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-westhollywooddentaloffice.com",
type: "node",
t: "Host\nwesthollywooddentaloffice.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1454357820000],
},
{
id: "184.168.24.1",
type: "node",
t: "184.168.24.1",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-westhollywooddentaloffice.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-surusegitimmerkezi.com",
type: "node",
t: "Host\nsurusegitimmerkezi.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "Turkey",
},
e: 1,
dt: [1454306820000],
},
{
id: "94.73.151.173",
type: "node",
t: "94.73.151.173",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Turkey",
host: ["host-surusegitimmerkezi.com"],
},
e: 1,
g: [
{
u: "/images/flags/turkey.svg",
p: "ne",
},
],
},
{
id: "host-8vs.com",
type: "node",
t: "Host\n8vs.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "USA",
},
e: 1,
dt: [1454194860000],
},
{
id: "162.212.35.42",
type: "node",
t: "162.212.35.42",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-8vs.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-glitchygaming.com",
type: "node",
t: "Host\nglitchygaming.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "USA",
},
e: 1,
dt: [1454194740000],
},
{
id: "72.51.43.203",
type: "node",
t: "72.51.43.203",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-glitchygaming.com"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-grochowina.net",
type: "node",
t: "Host\ngrochowina.net",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Poland",
},
e: 1,
dt: [1454158020000],
},
{
id: "188.116.35.23",
type: "node",
t: "188.116.35.23",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Poland",
host: ["host-grochowina.net"],
},
e: 1,
g: [
{
u: "/images/flags/republic-of-poland.svg",
p: "ne",
},
],
},
{
id: "host-tcblog.de",
type: "node",
t: "Host\ntcblog.de",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Germany",
},
e: 1,
dt: [1454153640000],
},
{
id: "212.90.148.111",
type: "node",
t: "212.90.148.111",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Germany",
host: ["host-tcblog.de"],
},
e: 1,
g: [
{
u: "/images/flags/germany.svg",
p: "ne",
},
],
},
{
id: "host-toysfortheneedyandaid.org",
type: "node",
t: "Host\ntoysfortheneedyandaid.org",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "TeslaCrypt",
from: "USA",
},
e: 1,
dt: [1453931400000],
},
{
id: "97.107.141.123",
type: "node",
t: "97.107.141.123",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-toysfortheneedyandaid.org"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-dining-bar.com",
type: "node",
t: "Host\ndining-bar.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Japan",
},
e: 1,
dt: [1453890480000],
},
{
id: "203.189.109.152",
type: "node",
t: "203.189.109.152",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Japan",
host: ["host-dining-bar.com"],
},
e: 1,
g: [
{
u: "/images/flags/japan.svg",
p: "ne",
},
],
},
{
id: "host-london-escorts-agency.org.uk",
type: "node",
t: "Host\nlondon-escorts-agency.org.uk",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "France",
},
e: 1,
dt: [1453885080000],
},
{
id: "178.32.72.112",
type: "node",
t: "178.32.72.112",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "France",
host: ["host-london-escorts-agency.org.uk"],
},
e: 1,
g: [
{
u: "/images/flags/france.svg",
p: "ne",
},
],
},
{
id: "host-event-travel.co.uk",
type: "node",
t: "Host\nevent-travel.co.uk",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "France",
},
e: 1,
dt: [1453789020000],
},
{
id: "178.32.72.113",
type: "node",
t: "178.32.72.113",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "France",
host: ["host-event-travel.co.uk"],
},
e: 1,
g: [
{
u: "/images/flags/france.svg",
p: "ne",
},
],
},
{
id: "host-jadwalpialadunia.in",
type: "node",
t: "Host\njadwalpialadunia.in",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "USA",
},
e: 1,
dt: [1453764420000],
},
{
id: "104.219.251.2",
type: "node",
t: "104.219.251.2",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-jadwalpialadunia.in"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-aspectdesigns.com.au",
type: "node",
t: "Host\naspectdesigns.com.au",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Australia",
},
e: 1,
dt: [1453751640000],
},
{
id: "101.2.169.10",
type: "node",
t: "101.2.169.10",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Australia",
host: ["host-aspectdesigns.com.au"],
},
e: 1,
g: [
{
u: "/images/flags/australia.svg",
p: "ne",
},
],
},
{
id: "host-inspirenetworks.in",
type: "node",
t: "Host\ninspirenetworks.in",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "India",
},
e: 1,
dt: [1453509480000],
},
{
id: "103.10.191.39",
type: "node",
t: "103.10.191.39",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "India",
host: ["host-inspirenetworks.in"],
},
e: 1,
g: [
{
u: "/images/flags/india.svg",
p: "ne",
},
],
},
{
id: "host-cheapshirts.us",
type: "node",
t: "Host\ncheapshirts.us",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Vietnam",
},
e: 1,
dt: [1453344420000],
},
{
id: "123.30.187.106",
type: "node",
t: "123.30.187.106",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Vietnam",
host: ["host-cheapshirts.us"],
},
e: 1,
g: [
{
u: "/images/flags/vietnam.svg",
p: "ne",
},
],
},
{
id: "host-patrianossa.com.br",
type: "node",
t: "Host\npatrianossa.com.br",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "USA",
},
e: 1,
dt: [1453257000000],
},
{
id: "23.89.198.195",
type: "node",
t: "23.89.198.195",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-patrianossa.com.br"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-silstop.pl",
type: "node",
t: "Host\nsilstop.pl",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Poland",
},
e: 1,
dt: [1453255560000],
},
{
id: "46.41.144.45",
type: "node",
t: "46.41.144.45",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Poland",
host: ["host-silstop.pl"],
},
e: 1,
g: [
{
u: "/images/flags/republic-of-poland.svg",
p: "ne",
},
],
},
{
id: "host-portalmaismidia.com.br",
type: "node",
t: "Host\nportalmaismidia.com.br",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "USA",
},
e: 1,
dt: [1453111260000],
},
{
id: "69.162.96.195",
type: "node",
t: "69.162.96.195",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "USA",
host: ["host-portalmaismidia.com.br"],
},
e: 1,
g: [
{
u: "/images/flags/united-states-of-america.svg",
p: "ne",
},
],
},
{
id: "host-procrediti.com.ua",
type: "node",
t: "Host\nprocrediti.com.ua",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Russia",
},
e: 1,
dt: [1452770220000],
},
{
id: "62.109.23.126",
type: "node",
t: "62.109.23.126",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Russia",
host: ["host-procrediti.com.ua"],
},
e: 1,
g: [
{
u: "/images/flags/russia.svg",
p: "ne",
},
],
},
{
id: "host-www.gjscomputerservices.com.au",
type: "node",
t: "Host\nwww.gjscomputerservices.com.au",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Australia",
},
e: 1,
dt: [1452770220000],
},
{
id: "125.214.74.70",
type: "node",
t: "125.214.74.70",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Australia",
host: ["host-www.gjscomputerservices.com.au"],
},
e: 1,
g: [
{
u: "/images/flags/australia.svg",
p: "ne",
},
],
},
{
id: "host-ilovesport.kiev.ua",
type: "node",
t: "Host\nilovesport.kiev.ua",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Ukraine",
},
e: 1,
dt: [1452761940000],
},
{
id: "185.68.16.13",
type: "node",
t: "185.68.16.13",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Ukraine",
host: ["host-ilovesport.kiev.ua"],
},
e: 1,
g: [
{
u: "/images/flags/ukraine.svg",
p: "ne",
},
],
},
{
id: "host-babylicious.ie",
type: "node",
t: "Host\nbabylicious.ie",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Romania",
},
e: 1,
dt: [1452678360000],
},
{
id: "89.36.25.168",
type: "node",
t: "89.36.25.168",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Romania",
host: ["host-babylicious.ie"],
},
e: 1,
g: [
{
u: "/images/flags/romania.svg",
p: "ne",
},
],
},
{
id: "host-fun-pop.com",
type: "node",
t: "Host\nfun-pop.com",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "China",
},
e: 1,
dt: [1452539520000],
},
{
id: "121.40.201.95",
type: "node",
t: "121.40.201.95",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "China",
host: ["host-fun-pop.com"],
},
e: 1,
g: [
{
u: "/images/flags/china.svg",
p: "ne",
},
],
},
{
id: "host-d3mpd.fe.uns.ac.id",
type: "node",
t: "Host\nd3mpd.fe.uns.ac.id",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Indonesia",
},
e: 1,
dt: [1452319980000],
},
{
id: "203.6.149.68",
type: "node",
t: "203.6.149.68",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Indonesia",
host: ["host-d3mpd.fe.uns.ac.id"],
},
e: 1,
g: [
{
u: "/images/flags/indonesia.svg",
p: "ne",
},
],
},
{
id: "host-icsot.na.its.ac.id",
type: "node",
t: "Host\nicsot.na.its.ac.id",
fi: {
t: "fas fa-server",
},
d: {
type: "host",
ransomware: "CryptoWall",
from: "Indonesia",
},
e: 1,
dt: [1451687940000],
},
{
id: "202.46.129.104",
type: "node",
t: "202.46.129.104",
u: "/images/icons/ip-address.png",
d: {
type: "ip",
country: "Indonesia",
host: ["host-icsot.na.its.ac.id"],
},
e: 1,
g: [
{
u: "/images/flags/indonesia.svg",
p: "ne",
},
],
},
{
id: "host-cwprfpjtmjb.biz-69.195.129.70",
id1: "host-cwprfpjtmjb.biz",
id2: "69.195.129.70",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-83.217.8.155-83.217.8.155",
id1: "host-83.217.8.155",
id2: "83.217.8.155",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-89.108.84.155-89.108.84.155",
id1: "host-89.108.84.155",
id2: "89.108.84.155",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-gmtuae.com-182.50.158.108",
id1: "host-gmtuae.com",
id2: "182.50.158.108",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-91.234.32.19-91.234.32.19",
id1: "host-91.234.32.19",
id2: "91.234.32.19",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-faenzabike.makkie.com-213.26.174.81",
id1: "host-faenzabike.makkie.com",
id2: "213.26.174.81",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-51.254.240.60-51.254.240.60",
id1: "host-51.254.240.60",
id2: "51.254.240.60",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-axnemuevqnstqyflb.work-31.148.99.188",
id1: "host-axnemuevqnstqyflb.work",
id2: "31.148.99.188",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-83.217.26.168-83.217.26.168",
id1: "host-83.217.26.168",
id2: "83.217.26.168",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-bestinghana.com-184.168.51.1",
id1: "host-bestinghana.com",
id2: "184.168.51.1",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-coolcases.info-72.167.232.144",
id1: "host-coolcases.info",
id2: "72.167.232.144",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-htankds.info-91.219.31.18",
id1: "host-htankds.info",
id2: "91.219.31.18",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-107.170.20.33-107.170.20.33",
id1: "host-107.170.20.33",
id2: "107.170.20.33",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-runescape-autominer.info-192.185.46.61",
id1: "host-runescape-autominer.info",
id2: "192.185.46.61",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-www.teacherassist.info-94.124.120.61",
id1: "host-www.teacherassist.info",
id2: "94.124.120.61",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-kortingcodes.be-108.167.181.253",
id1: "host-kortingcodes.be",
id2: "108.167.181.253",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-custommerchandisingservices.com-45.79.161.27",
id1: "host-custommerchandisingservices.com",
id2: "45.79.161.27",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-bonjourtablier.com-212.227.247.229",
id1: "host-bonjourtablier.com",
id2: "212.227.247.229",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-blackroom.club-81.177.135.232",
id1: "host-blackroom.club",
id2: "81.177.135.232",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-artsabc.com-204.12.208.74",
id1: "host-artsabc.com",
id2: "204.12.208.74",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-blessingshealthuk.com-107.180.50.165",
id1: "host-blessingshealthuk.com",
id2: "107.180.50.165",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-anybug.net-78.217.205.113",
id1: "host-anybug.net",
id2: "78.217.205.113",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-alushtadom.com-81.177.140.186",
id1: "host-alushtadom.com",
id2: "81.177.140.186",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-blxbymhjva.info-69.195.129.70",
id1: "host-blxbymhjva.info",
id2: "69.195.129.70",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-ahsqbeospcdrngfv.info-195.22.28.198",
id1: "host-ahsqbeospcdrngfv.info",
id2: "195.22.28.198",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-cxlgwofgrjfoaa.info-195.22.28.197",
id1: "host-cxlgwofgrjfoaa.info",
id2: "195.22.28.197",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-91.234.35.243-91.234.35.243",
id1: "host-91.234.35.243",
id2: "91.234.35.243",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-4turka.com-185.12.108.138",
id1: "host-4turka.com",
id2: "185.12.108.138",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-185.14.28.30-185.14.28.30",
id1: "host-185.14.28.30",
id2: "185.14.28.30",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-31.184.196.74-31.184.196.74",
id1: "host-31.184.196.74",
id2: "31.184.196.74",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-91.230.211.103-91.230.211.103",
id1: "host-91.230.211.103",
id2: "91.230.211.103",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-91.219.29.81-91.219.29.81",
id1: "host-91.219.29.81",
id2: "91.219.29.81",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-jghbktqepe.pw-195.22.28.198",
id1: "host-jghbktqepe.pw",
id2: "195.22.28.198",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-lorangeriedelareine.fr-62.210.116.247",
id1: "host-lorangeriedelareine.fr",
id2: "62.210.116.247",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-gfcuxnaek.ru-195.22.28.199",
id1: "host-gfcuxnaek.ru",
id2: "195.22.28.199",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-uhhvhjqowpgopq.xyz-208.100.26.234",
id1: "host-uhhvhjqowpgopq.xyz",
id2: "208.100.26.234",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-ampjsppmftmfdblpt.info-195.22.28.199",
id1: "host-ampjsppmftmfdblpt.info",
id2: "195.22.28.199",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-207.244.97.230-207.244.97.230",
id1: "host-207.244.97.230",
id2: "207.244.97.230",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-46.165.253.93-46.165.253.93",
id1: "host-46.165.253.93",
id2: "46.165.253.93",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-thinktrimbebeautiful.com.au-182.50.149.1",
id1: "host-thinktrimbebeautiful.com.au",
id2: "182.50.149.1",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-baby.teasso.com-162.210.102.32",
id1: "host-baby.teasso.com",
id2: "162.210.102.32",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-helcel.com-72.41.18.2",
id1: "host-helcel.com",
id2: "72.41.18.2",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-loseweightwithmysite.com-74.220.207.112",
id1: "host-loseweightwithmysite.com",
id2: "74.220.207.112",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-nhhyxorxbxarxe.org-195.22.28.196",
id1: "host-nhhyxorxbxarxe.org",
id2: "195.22.28.196",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-gsebqsi.ru-195.22.28.198",
id1: "host-gsebqsi.ru",
id2: "195.22.28.198",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-onguso.com-72.41.18.2",
id1: "host-onguso.com",
id2: "72.41.18.2",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-ywjgjvpuyitnbiw.info-195.22.28.198",
id1: "host-ywjgjvpuyitnbiw.info",
id2: "195.22.28.198",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-kcdfajaxngiff.info-195.22.28.199",
id1: "host-kcdfajaxngiff.info",
id2: "195.22.28.199",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-omeaswslhgdw.xyz-208.100.26.234",
id1: "host-omeaswslhgdw.xyz",
id2: "208.100.26.234",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-91.219.31.15-91.219.31.15",
id1: "host-91.219.31.15",
id2: "91.219.31.15",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-silocot.com-62.210.88.33",
id1: "host-silocot.com",
id2: "62.210.88.33",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-gooseart.com-195.128.174.143",
id1: "host-gooseart.com",
id2: "195.128.174.143",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-88.214.237.57-88.214.237.57",
id1: "host-88.214.237.57",
id2: "88.214.237.57",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-91.219.28.44-91.219.28.44",
id1: "host-91.219.28.44",
id2: "91.219.28.44",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-bluedreambd.com-192.185.174.198",
id1: "host-bluedreambd.com",
id2: "192.185.174.198",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-colinmccarthynfl.com-50.62.250.1",
id1: "host-colinmccarthynfl.com",
id2: "50.62.250.1",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-193.9.28.49-193.9.28.49",
id1: "host-193.9.28.49",
id2: "193.9.28.49",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-37.139.2.214-37.139.2.214",
id1: "host-37.139.2.214",
id2: "37.139.2.214",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-43nutrientes.com-50.87.149.41",
id1: "host-43nutrientes.com",
id2: "50.87.149.41",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-getdiscounts.org-205.144.171.76",
id1: "host-getdiscounts.org",
id2: "205.144.171.76",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-naomihawkins.com-50.63.97.1",
id1: "host-naomihawkins.com",
id2: "50.63.97.1",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-traditions-and-custom.com-72.41.18.212",
id1: "host-traditions-and-custom.com",
id2: "72.41.18.212",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-closerdaybyday.info-192.185.151.39",
id1: "host-closerdaybyday.info",
id2: "192.185.151.39",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-coldheartedny.com-107.180.26.75",
id1: "host-coldheartedny.com",
id2: "107.180.26.75",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-31.148.99.241-31.148.99.241",
id1: "host-31.148.99.241",
id2: "31.148.99.241",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-helpdesk.keldon.info-194.228.3.204",
id1: "host-helpdesk.keldon.info",
id2: "194.228.3.204",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-addagapublicschool.com-23.229.239.227",
id1: "host-addagapublicschool.com",
id2: "23.229.239.227",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-thejonesact.com-192.186.220.8",
id1: "host-thejonesact.com",
id2: "192.186.220.8",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-studiosundaytv.com-76.162.168.113",
id1: "host-studiosundaytv.com",
id2: "76.162.168.113",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-theoneflooring.com-107.180.4.122",
id1: "host-theoneflooring.com",
id2: "107.180.4.122",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-goldberg-share.com-107.180.43.132",
id1: "host-goldberg-share.com",
id2: "107.180.43.132",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-91.223.180.240-91.223.180.240",
id1: "host-91.223.180.240",
id2: "91.223.180.240",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-45.55.192.133-45.55.192.133",
id1: "host-45.55.192.133",
id2: "45.55.192.133",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-hotcasinogames.org-217.70.180.150",
id1: "host-hotcasinogames.org",
id2: "217.70.180.150",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-91.209.77.86-91.209.77.86",
id1: "host-91.209.77.86",
id2: "91.209.77.86",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-88.198.119.177-88.198.119.177",
id1: "host-88.198.119.177",
id2: "88.198.119.177",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-forms.net.in-160.153.51.192",
id1: "host-forms.net.in",
id2: "160.153.51.192",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-kknk-shop.dev.onnetdigital.com-176.9.2.244",
id1: "host-kknk-shop.dev.onnetdigital.com",
id2: "176.9.2.244",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-mahmutersan.com.tr-160.153.18.235",
id1: "host-mahmutersan.com.tr",
id2: "160.153.18.235",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-barjhxoye.info-195.22.28.197",
id1: "host-barjhxoye.info",
id2: "195.22.28.197",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-sqrgvbgfyya.org-69.195.129.70",
id1: "host-sqrgvbgfyya.org",
id2: "69.195.129.70",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-81.177.181.164-81.177.181.164",
id1: "host-81.177.181.164",
id2: "81.177.181.164",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-casasembargada.com-23.229.166.194",
id1: "host-casasembargada.com",
id2: "23.229.166.194",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-dwytqrgblrynsgtew.org-69.195.129.70",
id1: "host-dwytqrgblrynsgtew.org",
id2: "69.195.129.70",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-csskol.org-160.153.51.192",
id1: "host-csskol.org",
id2: "160.153.51.192",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-31.41.44.130-31.41.44.130",
id1: "host-31.41.44.130",
id2: "31.41.44.130",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-51.254.240.45-51.254.240.45",
id1: "host-51.254.240.45",
id2: "51.254.240.45",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-82.146.37.200-82.146.37.200",
id1: "host-82.146.37.200",
id2: "82.146.37.200",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-grosirkecantikan.com-192.185.51.87",
id1: "host-grosirkecantikan.com",
id2: "192.185.51.87",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-93.170.131.108-93.170.131.108",
id1: "host-93.170.131.108",
id2: "93.170.131.108",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-naturstein-schubert.de-91.250.80.97",
id1: "host-naturstein-schubert.de",
id2: "91.250.80.97",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-83.217.25.239-83.217.25.239",
id1: "host-83.217.25.239",
id2: "83.217.25.239",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-vtc360.com-107.180.34.199",
id1: "host-vtc360.com",
id2: "107.180.34.199",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-estudiobarco.com.ar-50.22.11.55",
id1: "host-estudiobarco.com.ar",
id2: "50.22.11.55",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-5.135.76.18-5.135.76.18",
id1: "host-5.135.76.18",
id2: "5.135.76.18",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-109.234.35.128-109.234.35.128",
id1: "host-109.234.35.128",
id2: "109.234.35.128",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-starsoftheworld.org-166.62.28.102",
id1: "host-starsoftheworld.org",
id2: "166.62.28.102",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-185.75.46.4-185.75.46.4",
id1: "host-185.75.46.4",
id2: "185.75.46.4",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-83.217.8.127-83.217.8.127",
id1: "host-83.217.8.127",
id2: "83.217.8.127",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-78.46.170.79-78.46.170.79",
id1: "host-78.46.170.79",
id2: "78.46.170.79",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-185.141.25.150-185.141.25.150",
id1: "host-185.141.25.150",
id2: "185.141.25.150",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-holishit.in-160.153.63.4",
id1: "host-holishit.in",
id2: "160.153.63.4",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-91.200.14.73-91.200.14.73",
id1: "host-91.200.14.73",
id2: "91.200.14.73",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-92.63.87.134-92.63.87.134",
id1: "host-92.63.87.134",
id2: "92.63.87.134",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-minteee.com-178.254.0.121",
id1: "host-minteee.com",
id2: "178.254.0.121",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-84.19.170.249-84.19.170.249",
id1: "host-84.19.170.249",
id2: "84.19.170.249",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-176.31.47.100-176.31.47.100",
id1: "host-176.31.47.100",
id2: "176.31.47.100",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-185.117.72.94-185.117.72.94",
id1: "host-185.117.72.94",
id2: "185.117.72.94",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-asianbooty.net-107.180.50.230",
id1: "host-asianbooty.net",
id2: "107.180.50.230",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-89.108.84.132-89.108.84.132",
id1: "host-89.108.84.132",
id2: "89.108.84.132",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-strategicdisaster.info-192.186.197.161",
id1: "host-strategicdisaster.info",
id2: "192.186.197.161",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-www.affiliateproductes.com-107.180.4.124",
id1: "host-www.affiliateproductes.com",
id2: "107.180.4.124",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-affiliateproductes.com-107.180.4.124",
id1: "host-affiliateproductes.com",
id2: "107.180.4.124",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-bwpegsfa.info-45.56.77.175",
id1: "host-bwpegsfa.info",
id2: "45.56.77.175",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-swfqg.in-208.100.26.234",
id1: "host-swfqg.in",
id2: "208.100.26.234",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-xyhhuxa.be-195.22.28.196",
id1: "host-xyhhuxa.be",
id2: "195.22.28.196",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-hmndhdbscgru.pw-69.195.129.70",
id1: "host-hmndhdbscgru.pw",
id2: "69.195.129.70",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-uhgmnigjpf.biz-93.170.104.127",
id1: "host-uhgmnigjpf.biz",
id2: "93.170.104.127",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-videoaminproduktion.de-87.238.192.67",
id1: "host-videoaminproduktion.de",
id2: "87.238.192.67",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-mcgroupuae.com-166.62.28.147",
id1: "host-mcgroupuae.com",
id2: "166.62.28.147",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-46.8.44.39-46.8.44.39",
id1: "host-46.8.44.39",
id2: "46.8.44.39",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-pilfingr.com-192.186.208.225",
id1: "host-pilfingr.com",
id2: "192.186.208.225",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-setprosports.info-198.12.157.163",
id1: "host-setprosports.info",
id2: "198.12.157.163",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-marvel-games.com-167.160.162.182",
id1: "host-marvel-games.com",
id2: "167.160.162.182",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-217.12.218.158-217.12.218.158",
id1: "host-217.12.218.158",
id2: "217.12.218.158",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-84.19.170.244-84.19.170.244",
id1: "host-84.19.170.244",
id2: "84.19.170.244",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-maxmpl.com-103.27.87.88",
id1: "host-maxmpl.com",
id2: "103.27.87.88",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-samuday.org-50.31.14.17",
id1: "host-samuday.org",
id2: "50.31.14.17",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-diwali2k15.in-64.20.35.186",
id1: "host-diwali2k15.in",
id2: "64.20.35.186",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-195.64.154.126-195.64.154.126",
id1: "host-195.64.154.126",
id2: "195.64.154.126",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-masterlegue.com-62.210.83.56",
id1: "host-masterlegue.com",
id2: "62.210.83.56",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-toolaria.com-160.153.49.102",
id1: "host-toolaria.com",
id2: "160.153.49.102",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-92.63.87.106-92.63.87.106",
id1: "host-92.63.87.106",
id2: "92.63.87.106",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-tradinbow.com-213.186.33.104",
id1: "host-tradinbow.com",
id2: "213.186.33.104",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-217.12.199.90-217.12.199.90",
id1: "host-217.12.199.90",
id2: "217.12.199.90",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-nwcpgymgh.work-5.34.183.21",
id1: "host-nwcpgymgh.work",
id2: "5.34.183.21",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-mkis.org-50.87.127.96",
id1: "host-mkis.org",
id2: "50.87.127.96",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-46.148.20.46-46.148.20.46",
id1: "host-46.148.20.46",
id2: "46.148.20.46",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-commonsenseprotection.com-50.116.109.230",
id1: "host-commonsenseprotection.com",
id2: "50.116.109.230",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-classemgmt.testbada.com-115.94.157.252",
id1: "host-classemgmt.testbada.com",
id2: "115.94.157.252",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-exaltation.info-46.235.47.104",
id1: "host-exaltation.info",
id2: "46.235.47.104",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-resumosdenovela.net-108.167.185.237",
id1: "host-resumosdenovela.net",
id2: "108.167.185.237",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-plfbvdrpvsm.pw-208.100.26.234",
id1: "host-plfbvdrpvsm.pw",
id2: "208.100.26.234",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-shampooherbal.com-104.128.239.91",
id1: "host-shampooherbal.com",
id2: "104.128.239.91",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-joshsawyerdesign.com-107.180.4.11",
id1: "host-joshsawyerdesign.com",
id2: "107.180.4.11",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-51.254.181.122-51.254.181.122",
id1: "host-51.254.181.122",
id2: "51.254.181.122",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-hmgame.net-66.147.244.86",
id1: "host-hmgame.net",
id2: "66.147.244.86",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-51.255.107.8-51.255.107.8",
id1: "host-51.255.107.8",
id2: "51.255.107.8",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-marketathart.com-192.185.35.88",
id1: "host-marketathart.com",
id2: "192.185.35.88",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-91.195.12.187-91.195.12.187",
id1: "host-91.195.12.187",
id2: "91.195.12.187",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-prodocument.co.uk-67.23.226.169",
id1: "host-prodocument.co.uk",
id2: "67.23.226.169",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-188.127.231.116-188.127.231.116",
id1: "host-188.127.231.116",
id2: "188.127.231.116",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-37.139.27.52-37.139.27.52",
id1: "host-37.139.27.52",
id2: "37.139.27.52",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-51.255.107.10-51.255.107.10",
id1: "host-51.255.107.10",
id2: "51.255.107.10",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-esbook.com-174.136.12.119",
id1: "host-esbook.com",
id2: "174.136.12.119",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-nlhomegarden.com-107.180.50.210",
id1: "host-nlhomegarden.com",
id2: "107.180.50.210",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-emmy2015.com-107.180.50.183",
id1: "host-emmy2015.com",
id2: "107.180.50.183",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-kel52.com-108.167.141.20",
id1: "host-kel52.com",
id2: "108.167.141.20",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-controlfreaknetworks.com-97.74.249.1",
id1: "host-controlfreaknetworks.com",
id2: "97.74.249.1",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-jambola.com-208.109.189.88",
id1: "host-jambola.com",
id2: "208.109.189.88",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-oregonreversemortgage.com-198.143.138.43",
id1: "host-oregonreversemortgage.com",
id2: "198.143.138.43",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-shirongfeng.cn-103.254.148.121",
id1: "host-shirongfeng.cn",
id2: "103.254.148.121",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-91.234.32.192-91.234.32.192",
id1: "host-91.234.32.192",
id2: "91.234.32.192",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-91.219.30.254-91.219.30.254",
id1: "host-91.219.30.254",
id2: "91.219.30.254",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-31.184.196.75-31.184.196.75",
id1: "host-31.184.196.75",
id2: "31.184.196.75",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-sappmtraining.com-166.62.4.223",
id1: "host-sappmtraining.com",
id2: "166.62.4.223",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-vtechshop.net-203.124.115.1",
id1: "host-vtechshop.net",
id2: "203.124.115.1",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-31.184.196.78-31.184.196.78",
id1: "host-31.184.196.78",
id2: "31.184.196.78",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-multibrandphone.com-162.208.8.165",
id1: "host-multibrandphone.com",
id2: "162.208.8.165",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-tele-channel.com-178.162.214.146",
id1: "host-tele-channel.com",
id2: "178.162.214.146",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-91.234.33.149-91.234.33.149",
id1: "host-91.234.33.149",
id2: "91.234.33.149",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-anoukdelecluse.nl-83.137.194.20",
id1: "host-anoukdelecluse.nl",
id2: "83.137.194.20",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-gibdd.ws-178.208.83.11",
id1: "host-gibdd.ws",
id2: "178.208.83.11",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-specializedaccess.co.uk-85.233.160.146",
id1: "host-specializedaccess.co.uk",
id2: "85.233.160.146",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-151.236.14.51-151.236.14.51",
id1: "host-151.236.14.51",
id2: "151.236.14.51",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-78.40.108.39-78.40.108.39",
id1: "host-78.40.108.39",
id2: "78.40.108.39",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-bqbbsfdw.be-195.22.28.199",
id1: "host-bqbbsfdw.be",
id2: "195.22.28.199",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-egovrxvuspxck.be-195.22.26.248",
id1: "host-egovrxvuspxck.be",
id2: "195.22.26.248",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-marciogerhardtsouza.com.br-186.202.153.14",
id1: "host-marciogerhardtsouza.com.br",
id2: "186.202.153.14",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-ahlanmedicalcentre.com-184.168.47.225",
id1: "host-ahlanmedicalcentre.com",
id2: "184.168.47.225",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-cam-itour.info-188.40.132.132",
id1: "host-cam-itour.info",
id2: "188.40.132.132",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-91.195.12.131-91.195.12.131",
id1: "host-91.195.12.131",
id2: "91.195.12.131",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-37.235.53.18-37.235.53.18",
id1: "host-37.235.53.18",
id2: "37.235.53.18",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-www.informaticauno.net-50.87.28.241",
id1: "host-www.informaticauno.net",
id2: "50.87.28.241",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-89.108.85.163-89.108.85.163",
id1: "host-89.108.85.163",
id2: "89.108.85.163",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-149.154.157.14-149.154.157.14",
id1: "host-149.154.157.14",
id2: "149.154.157.14",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-drcordoba.com-50.62.125.1",
id1: "host-drcordoba.com",
id2: "50.62.125.1",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-192.121.16.196-192.121.16.196",
id1: "host-192.121.16.196",
id2: "192.121.16.196",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-iheartshop.net-128.199.187.47",
id1: "host-iheartshop.net",
id2: "128.199.187.47",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-glhxgchhfemcjgr.pw-195.22.28.197",
id1: "host-glhxgchhfemcjgr.pw",
id2: "195.22.28.197",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-csucanuevo.csuca.org-186.151.199.5",
id1: "host-csucanuevo.csuca.org",
id2: "186.151.199.5",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-185.92.220.35-185.92.220.35",
id1: "host-185.92.220.35",
id2: "185.92.220.35",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-newculturemediablog.com-50.63.50.75",
id1: "host-newculturemediablog.com",
id2: "50.63.50.75",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-saludaonline.com-184.168.53.1",
id1: "host-saludaonline.com",
id2: "184.168.53.1",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-109.237.111.168-109.237.111.168",
id1: "host-109.237.111.168",
id2: "109.237.111.168",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-46.108.39.18-46.108.39.18",
id1: "host-46.108.39.18",
id2: "46.108.39.18",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-212.47.223.19-212.47.223.19",
id1: "host-212.47.223.19",
id2: "212.47.223.19",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-tmfilms.net-50.62.122.1",
id1: "host-tmfilms.net",
id2: "50.62.122.1",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-openroadsolutions.com-208.109.243.37",
id1: "host-openroadsolutions.com",
id2: "208.109.243.37",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-www.decorandoimoveis.com-198.154.250.33",
id1: "host-www.decorandoimoveis.com",
id2: "198.154.250.33",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-185.82.216.213-185.82.216.213",
id1: "host-185.82.216.213",
id2: "185.82.216.213",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-conspec.us-50.62.245.1",
id1: "host-conspec.us",
id2: "50.62.245.1",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-tusrecetas.net-69.162.104.22",
id1: "host-tusrecetas.net",
id2: "69.162.104.22",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-trion.com.ph-104.238.111.90",
id1: "host-trion.com.ph",
id2: "104.238.111.90",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-fitga.ru-195.22.28.197",
id1: "host-fitga.ru",
id2: "195.22.28.197",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-cudcfybkk.pw-195.22.28.196",
id1: "host-cudcfybkk.pw",
id2: "195.22.28.196",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-wdvxeval.ru-195.22.28.197",
id1: "host-wdvxeval.ru",
id2: "195.22.28.197",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-gvludcvhcrjwmgq.in-195.22.28.196",
id1: "host-gvludcvhcrjwmgq.in",
id2: "195.22.28.196",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-goktugyeli.com-185.22.184.156",
id1: "host-goktugyeli.com",
id2: "185.22.184.156",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-iqinternal.com-107.180.44.212",
id1: "host-iqinternal.com",
id2: "107.180.44.212",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-hamilton150.co.nz-167.88.167.10",
id1: "host-hamilton150.co.nz",
id2: "167.88.167.10",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-fisioactivo.com-160.153.79.168",
id1: "host-fisioactivo.com",
id2: "160.153.79.168",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-serbiotecnicos.com-198.252.78.160",
id1: "host-serbiotecnicos.com",
id2: "198.252.78.160",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-onegiantstore.com-50.62.66.1",
id1: "host-onegiantstore.com",
id2: "50.62.66.1",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-takaram.ir-82.102.8.142",
id1: "host-takaram.ir",
id2: "82.102.8.142",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-dustinhansenbook.com-173.201.145.1",
id1: "host-dustinhansenbook.com",
id2: "173.201.145.1",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-95.213.184.10-95.213.184.10",
id1: "host-95.213.184.10",
id2: "95.213.184.10",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-192.71.213.69-192.71.213.69",
id1: "host-192.71.213.69",
id2: "192.71.213.69",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-americancorner.udp.cl-200.14.85.32",
id1: "host-americancorner.udp.cl",
id2: "200.14.85.32",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-ptlchemicaltrading.com-119.59.120.21",
id1: "host-ptlchemicaltrading.com",
id2: "119.59.120.21",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-opravnatramvaji.cz-194.228.3.204",
id1: "host-opravnatramvaji.cz",
id2: "194.228.3.204",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-5.34.183.195-5.34.183.195",
id1: "host-5.34.183.195",
id2: "5.34.183.195",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-kypsuw.pw-195.22.28.198",
id1: "host-kypsuw.pw",
id2: "195.22.28.198",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-185.14.29.188-185.14.29.188",
id1: "host-185.14.29.188",
id2: "185.14.29.188",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-challengestrata.com.au-175.107.181.167",
id1: "host-challengestrata.com.au",
id2: "175.107.181.167",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-dichiro.com-206.188.193.93",
id1: "host-dichiro.com",
id2: "206.188.193.93",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-beyondthedog.net-184.168.47.225",
id1: "host-beyondthedog.net",
id2: "184.168.47.225",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-91.219.29.55-91.219.29.55",
id1: "host-91.219.29.55",
id2: "91.219.29.55",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-music.mbsaeger.com-76.125.213.205",
id1: "host-music.mbsaeger.com",
id2: "76.125.213.205",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-stacon.eu-188.116.9.2",
id1: "host-stacon.eu",
id2: "188.116.9.2",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-worldisonefamily.info-23.229.4.214",
id1: "host-worldisonefamily.info",
id2: "23.229.4.214",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-imagescroll.com-62.210.141.228",
id1: "host-imagescroll.com",
id2: "62.210.141.228",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-lazymoosestamping.com-173.225.189.5",
id1: "host-lazymoosestamping.com",
id2: "173.225.189.5",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-maternalserenity.co.uk-69.10.56.10",
id1: "host-maternalserenity.co.uk",
id2: "69.10.56.10",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-hongsi.com-110.45.144.173",
id1: "host-hongsi.com",
id2: "110.45.144.173",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-biocarbon.com.ec-192.185.39.66",
id1: "host-biocarbon.com.ec",
id2: "192.185.39.66",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-cursos.feyda.net-198.154.228.128",
id1: "host-cursos.feyda.net",
id2: "198.154.228.128",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-igatha.com-217.23.12.215",
id1: "host-igatha.com",
id2: "217.23.12.215",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-www.vishvagujarat.com-104.27.142.99",
id1: "host-www.vishvagujarat.com",
id2: "104.27.142.99",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-heizhuangym.com-103.254.148.129",
id1: "host-heizhuangym.com",
id2: "103.254.148.129",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-best-service.jp-203.145.230.194",
id1: "host-best-service.jp",
id2: "203.145.230.194",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-surrogacyandadoption.com-185.26.122.59",
id1: "host-surrogacyandadoption.com",
id2: "185.26.122.59",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-jessforkicks.com-96.226.119.251",
id1: "host-jessforkicks.com",
id2: "96.226.119.251",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-viralcrazies.com-46.166.187.64",
id1: "host-viralcrazies.com",
id2: "46.166.187.64",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-domaine-cassillac.com-213.186.33.87",
id1: "host-domaine-cassillac.com",
id2: "213.186.33.87",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-double-wing.de-217.119.54.152",
id1: "host-double-wing.de",
id2: "217.119.54.152",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-eatside.es-134.0.15.35",
id1: "host-eatside.es",
id2: "134.0.15.35",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-185.22.67.27-185.22.67.27",
id1: "host-185.22.67.27",
id2: "185.22.67.27",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-91.121.97.170-91.121.97.170",
id1: "host-91.121.97.170",
id2: "91.121.97.170",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-definitionen.de-136.243.69.220",
id1: "host-definitionen.de",
id2: "136.243.69.220",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-ecocalsots.com-37.247.125.42",
id1: "host-ecocalsots.com",
id2: "37.247.125.42",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-recaswine.ro-93.118.36.235",
id1: "host-recaswine.ro",
id2: "93.118.36.235",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-nupleta.com.br-186.202.127.236",
id1: "host-nupleta.com.br",
id2: "186.202.127.236",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-bnjhx.eu-195.22.28.197",
id1: "host-bnjhx.eu",
id2: "195.22.28.197",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-jxqdry.ru-195.22.28.199",
id1: "host-jxqdry.ru",
id2: "195.22.28.199",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-odgtnkmq.pw-98.143.148.173",
id1: "host-odgtnkmq.pw",
id2: "98.143.148.173",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-lutheranph.com-107.180.41.49",
id1: "host-lutheranph.com",
id2: "107.180.41.49",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-5.34.183.136-5.34.183.136",
id1: "host-5.34.183.136",
id2: "5.34.183.136",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-51.254.19.227-51.254.19.227",
id1: "host-51.254.19.227",
id2: "51.254.19.227",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-national-drafting.com-166.62.93.187",
id1: "host-national-drafting.com",
id2: "166.62.93.187",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-31.184.197.119-31.184.197.119",
id1: "host-31.184.197.119",
id2: "31.184.197.119",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-snibi.se-212.16.182.196",
id1: "host-snibi.se",
id2: "212.16.182.196",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-haarsaloncindy.nl-5.178.65.43",
id1: "host-haarsaloncindy.nl",
id2: "5.178.65.43",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-www.big-cola.com-77.73.81.35",
id1: "host-www.big-cola.com",
id2: "77.73.81.35",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-salesandmarketing101.net-23.229.172.137",
id1: "host-salesandmarketing101.net",
id2: "23.229.172.137",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-ikstrade.co.kr-110.45.144.173",
id1: "host-ikstrade.co.kr",
id2: "110.45.144.173",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-185.46.11.239-185.46.11.239",
id1: "host-185.46.11.239",
id2: "185.46.11.239",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-feuerwehr-stadt-riesa.de-178.254.50.156",
id1: "host-feuerwehr-stadt-riesa.de",
id2: "178.254.50.156",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-paintituppottery.com-208.117.38.143",
id1: "host-paintituppottery.com",
id2: "208.117.38.143",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-takatei.com-203.189.109.240",
id1: "host-takatei.com",
id2: "203.189.109.240",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-www.hanoiguidedtours.com-104.131.43.146",
id1: "host-www.hanoiguidedtours.com",
id2: "104.131.43.146",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-www.rippedknees.co.uk-212.48.68.63",
id1: "host-www.rippedknees.co.uk",
id2: "212.48.68.63",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-salaeigroup.com-107.180.2.115",
id1: "host-salaeigroup.com",
id2: "107.180.2.115",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-ecolux-comfort.com-188.127.249.243",
id1: "host-ecolux-comfort.com",
id2: "188.127.249.243",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-abdal.com.ua-185.68.16.196",
id1: "host-abdal.com.ua",
id2: "185.68.16.196",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-building.msu.ac.th-202.28.32.20",
id1: "host-building.msu.ac.th",
id2: "202.28.32.20",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-konyavakfi.nl-91.208.60.158",
id1: "host-konyavakfi.nl",
id2: "91.208.60.158",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-www.granmarquise.com.br-187.18.184.70",
id1: "host-www.granmarquise.com.br",
id2: "187.18.184.70",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-188.138.88.184-188.138.88.184",
id1: "host-188.138.88.184",
id2: "188.138.88.184",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-31.184.233.106-31.184.233.106",
id1: "host-31.184.233.106",
id2: "31.184.233.106",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-frame3d.de-178.254.10.169",
id1: "host-frame3d.de",
id2: "178.254.10.169",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-autohaus-seevetal.com-81.169.145.162",
id1: "host-autohaus-seevetal.com",
id2: "81.169.145.162",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-bisofit.com-185.68.16.111",
id1: "host-bisofit.com",
id2: "185.68.16.111",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-www.healthstafftravel.com.au-64.207.186.229",
id1: "host-www.healthstafftravel.com.au",
id2: "64.207.186.229",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-31.41.47.37-31.41.47.37",
id1: "host-31.41.47.37",
id2: "31.41.47.37",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-gitybdjgbxd.nl-98.143.148.173",
id1: "host-gitybdjgbxd.nl",
id2: "98.143.148.173",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-svkjhguk.ru-195.22.28.199",
id1: "host-svkjhguk.ru",
id2: "195.22.28.199",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-pvwinlrmwvccuo.eu-185.46.11.239",
id1: "host-pvwinlrmwvccuo.eu",
id2: "185.46.11.239",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-iglesiaelrenacer.com-160.153.76.161",
id1: "host-iglesiaelrenacer.com",
id2: "160.153.76.161",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-aditaborai.com.br-108.179.192.88",
id1: "host-aditaborai.com.br",
id2: "108.179.192.88",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-85.25.138.187-85.25.138.187",
id1: "host-85.25.138.187",
id2: "85.25.138.187",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-theassemblyguy.co.nz-103.40.81.47",
id1: "host-theassemblyguy.co.nz",
id2: "103.40.81.47",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-www.001edizioni.com-95.110.230.190",
id1: "host-www.001edizioni.com",
id2: "95.110.230.190",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-94.242.57.45-94.242.57.45",
id1: "host-94.242.57.45",
id2: "94.242.57.45",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-46.4.239.76-46.4.239.76",
id1: "host-46.4.239.76",
id2: "46.4.239.76",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-185.14.30.97-185.14.30.97",
id1: "host-185.14.30.97",
id2: "185.14.30.97",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-dltvwp.it-104.238.173.18",
id1: "host-dltvwp.it",
id2: "104.238.173.18",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-uxvvm.us-69.195.129.70",
id1: "host-uxvvm.us",
id2: "69.195.129.70",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-dongxinh.com-103.27.60.14",
id1: "host-dongxinh.com",
id2: "103.27.60.14",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-dustywinslow.com-108.174.112.194",
id1: "host-dustywinslow.com",
id2: "108.174.112.194",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-95.181.171.58-95.181.171.58",
id1: "host-95.181.171.58",
id2: "95.181.171.58",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-kqlxtqptsmys.in-195.22.28.198",
id1: "host-kqlxtqptsmys.in",
id2: "195.22.28.198",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-195.154.241.208-195.154.241.208",
id1: "host-195.154.241.208",
id2: "195.154.241.208",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-fnarsipfqe.pw-45.56.77.175",
id1: "host-fnarsipfqe.pw",
id2: "45.56.77.175",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-sdwempsovemtr.yt-45.56.77.175",
id1: "host-sdwempsovemtr.yt",
id2: "45.56.77.175",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-luvenxj.uk-69.195.129.70",
id1: "host-luvenxj.uk",
id2: "69.195.129.70",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-xfyubqmldwvuyar.yt-104.238.173.18",
id1: "host-xfyubqmldwvuyar.yt",
id2: "104.238.173.18",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-lovemydress.pl-79.96.7.15",
id1: "host-lovemydress.pl",
id2: "79.96.7.15",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-195.64.154.14-195.64.154.14",
id1: "host-195.64.154.14",
id2: "195.64.154.14",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-86.104.134.144-86.104.134.144",
id1: "host-86.104.134.144",
id2: "86.104.134.144",
type: "link",
w: 1,
c: "#A5DF00",
d: {
ransomware: "Locky",
type: "Host2IP",
},
},
{
id: "host-ekop.org-94.73.150.60",
id1: "host-ekop.org",
id2: "94.73.150.60",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-mosaudit.com-81.177.140.144",
id1: "host-mosaudit.com",
id2: "81.177.140.144",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-yoyoeventos.com-187.45.240.67",
id1: "host-yoyoeventos.com",
id2: "187.45.240.67",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-madisonbootcamps.com-50.63.64.23",
id1: "host-madisonbootcamps.com",
id2: "50.63.64.23",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-millsmanagement.nl-83.137.194.38",
id1: "host-millsmanagement.nl",
id2: "83.137.194.38",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-nonnuoccaobang.com-113.52.45.94",
id1: "host-nonnuoccaobang.com",
id2: "113.52.45.94",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-italyprego.com-78.110.50.154",
id1: "host-italyprego.com",
id2: "78.110.50.154",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-www.kadinweb.net-185.8.33.117",
id1: "host-www.kadinweb.net",
id2: "185.8.33.117",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-dunyamuzelerimuzesi.com-94.73.148.60",
id1: "host-dunyamuzelerimuzesi.com",
id2: "94.73.148.60",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-iicsdrd.com-205.144.171.9",
id1: "host-iicsdrd.com",
id2: "205.144.171.9",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-www.plexipr.com-65.98.35.114",
id1: "host-www.plexipr.com",
id2: "65.98.35.114",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-www.bishopbell.co.uk-217.177.8.89",
id1: "host-www.bishopbell.co.uk",
id2: "217.177.8.89",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-studiolegalecsb.it-104.47.161.9",
id1: "host-studiolegalecsb.it",
id2: "104.47.161.9",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-smartnote.co-184.168.68.65",
id1: "host-smartnote.co",
id2: "184.168.68.65",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-dechehang.com-112.124.96.107",
id1: "host-dechehang.com",
id2: "112.124.96.107",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-www.feddoctor.com-192.163.206.61",
id1: "host-www.feddoctor.com",
id2: "192.163.206.61",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-portret-tekening.nl-83.137.194.115",
id1: "host-portret-tekening.nl",
id2: "83.137.194.115",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-ascortimisoara.ro-86.105.207.51",
id1: "host-ascortimisoara.ro",
id2: "86.105.207.51",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-zavidovodom.com-78.110.50.137",
id1: "host-zavidovodom.com",
id2: "78.110.50.137",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-southinstrument.org-212.85.98.241",
id1: "host-southinstrument.org",
id2: "212.85.98.241",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-wefindco.com-107.182.238.196",
id1: "host-wefindco.com",
id2: "107.182.238.196",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-westhollywooddentaloffice.com-184.168.24.1",
id1: "host-westhollywooddentaloffice.com",
id2: "184.168.24.1",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-surusegitimmerkezi.com-94.73.151.173",
id1: "host-surusegitimmerkezi.com",
id2: "94.73.151.173",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-8vs.com-162.212.35.42",
id1: "host-8vs.com",
id2: "162.212.35.42",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-glitchygaming.com-72.51.43.203",
id1: "host-glitchygaming.com",
id2: "72.51.43.203",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-grochowina.net-188.116.35.23",
id1: "host-grochowina.net",
id2: "188.116.35.23",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-tcblog.de-212.90.148.111",
id1: "host-tcblog.de",
id2: "212.90.148.111",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-toysfortheneedyandaid.org-97.107.141.123",
id1: "host-toysfortheneedyandaid.org",
id2: "97.107.141.123",
type: "link",
w: 1,
c: "#FF5964",
d: {
ransomware: "TeslaCrypt",
type: "Host2IP",
},
},
{
id: "host-dining-bar.com-203.189.109.152",
id1: "host-dining-bar.com",
id2: "203.189.109.152",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-london-escorts-agency.org.uk-178.32.72.112",
id1: "host-london-escorts-agency.org.uk",
id2: "178.32.72.112",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-event-travel.co.uk-178.32.72.113",
id1: "host-event-travel.co.uk",
id2: "178.32.72.113",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-jadwalpialadunia.in-104.219.251.2",
id1: "host-jadwalpialadunia.in",
id2: "104.219.251.2",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-aspectdesigns.com.au-101.2.169.10",
id1: "host-aspectdesigns.com.au",
id2: "101.2.169.10",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-inspirenetworks.in-103.10.191.39",
id1: "host-inspirenetworks.in",
id2: "103.10.191.39",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-cheapshirts.us-123.30.187.106",
id1: "host-cheapshirts.us",
id2: "123.30.187.106",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-patrianossa.com.br-23.89.198.195",
id1: "host-patrianossa.com.br",
id2: "23.89.198.195",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-silstop.pl-46.41.144.45",
id1: "host-silstop.pl",
id2: "46.41.144.45",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-portalmaismidia.com.br-69.162.96.195",
id1: "host-portalmaismidia.com.br",
id2: "69.162.96.195",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-procrediti.com.ua-62.109.23.126",
id1: "host-procrediti.com.ua",
id2: "62.109.23.126",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-www.gjscomputerservices.com.au-125.214.74.70",
id1: "host-www.gjscomputerservices.com.au",
id2: "125.214.74.70",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-ilovesport.kiev.ua-185.68.16.13",
id1: "host-ilovesport.kiev.ua",
id2: "185.68.16.13",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-babylicious.ie-89.36.25.168",
id1: "host-babylicious.ie",
id2: "89.36.25.168",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-fun-pop.com-121.40.201.95",
id1: "host-fun-pop.com",
id2: "121.40.201.95",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-d3mpd.fe.uns.ac.id-203.6.149.68",
id1: "host-d3mpd.fe.uns.ac.id",
id2: "203.6.149.68",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
{
id: "host-icsot.na.its.ac.id-202.46.129.104",
id1: "host-icsot.na.its.ac.id",
id2: "202.46.129.104",
type: "link",
w: 1,
c: "#00BFFF",
d: {
ransomware: "CryptoWall",
type: "Host2IP",
},
},
],
};
export const comboData = [
{
style: {
e: 7.197901845829199,
u: "/images/icons/virus.svg",
c: "#A5DF00",
type: "node",
t: "Locky",
oc: {
bw: 10,
c: "#F6FCE6",
b: "#A5DF00",
w: 1594,
},
g: [],
hi: false,
bg: false,
d: {
type: "host",
lookup: {
USA: [
"host-cwprfpjtmjb.biz",
"host-107.170.20.33",
"host-blxbymhjva.info",
"host-uhhvhjqowpgopq.xyz",
"host-207.244.97.230",
"host-omeaswslhgdw.xyz",
"host-193.9.28.49",
"host-45.55.192.133",
"host-sqrgvbgfyya.org",
"host-dwytqrgblrynsgtew.org",
"host-bwpegsfa.info",
"host-swfqg.in",
"host-hmndhdbscgru.pw",
"host-plfbvdrpvsm.pw",
"host-odgtnkmq.pw",
"host-gitybdjgbxd.nl",
"host-uxvvm.us",
"host-fnarsipfqe.pw",
"host-sdwempsovemtr.yt",
"host-luvenxj.uk",
],
Russia: [
"host-83.217.8.155",
"host-89.108.84.155",
"host-83.217.26.168",
"host-31.184.196.74",
"host-91.230.211.103",
"host-88.214.237.57",
"host-81.177.181.164",
"host-31.41.44.130",
"host-82.146.37.200",
"host-93.170.131.108",
"host-83.217.25.239",
"host-109.234.35.128",
"host-185.75.46.4",
"host-83.217.8.127",
"host-89.108.84.132",
"host-46.8.44.39",
"host-188.127.231.116",
"host-31.184.196.75",
"host-31.184.196.78",
"host-89.108.85.163",
"host-109.237.111.168",
"host-95.213.184.10",
"host-31.184.197.119",
"host-185.46.11.239",
"host-31.184.233.106",
"host-31.41.47.37",
"host-pvwinlrmwvccuo.eu",
"host-94.242.57.45",
"host-95.181.171.58",
],
Ukraine: [
"host-91.234.32.19",
"host-htankds.info",
"host-91.234.35.243",
"host-91.219.29.81",
"host-91.219.31.15",
"host-91.223.180.240",
"host-91.200.14.73",
"host-217.12.218.158",
"host-195.64.154.126",
"host-217.12.199.90",
"host-nwcpgymgh.work",
"host-46.148.20.46",
"host-91.195.12.187",
"host-91.234.32.192",
"host-91.219.30.254",
"host-91.234.33.149",
"host-91.195.12.131",
"host-5.34.183.195",
"host-91.219.29.55",
"host-5.34.183.136",
"host-195.64.154.14",
],
France: [
"host-51.254.240.60",
"host-51.254.240.45",
"host-5.135.76.18",
"host-176.31.47.100",
"host-51.254.181.122",
"host-51.255.107.8",
"host-51.255.107.10",
"host-91.121.97.170",
"host-51.254.19.227",
"host-195.154.241.208",
],
"Rep Czech": ["host-axnemuevqnstqyflb.work", "host-31.148.99.241", "host-91.209.77.86"],
Canada: [
"host-ahsqbeospcdrngfv.info",
"host-cxlgwofgrjfoaa.info",
"host-jghbktqepe.pw",
"host-gfcuxnaek.ru",
"host-ampjsppmftmfdblpt.info",
"host-nhhyxorxbxarxe.org",
"host-gsebqsi.ru",
"host-ywjgjvpuyitnbiw.info",
"host-kcdfajaxngiff.info",
"host-barjhxoye.info",
"host-xyhhuxa.be",
"host-bqbbsfdw.be",
"host-egovrxvuspxck.be",
"host-glhxgchhfemcjgr.pw",
"host-fitga.ru",
"host-cudcfybkk.pw",
"host-wdvxeval.ru",
"host-gvludcvhcrjwmgq.in",
"host-kypsuw.pw",
"host-bnjhx.eu",
"host-jxqdry.ru",
"host-svkjhguk.ru",
"host-kqlxtqptsmys.in",
],
Belgium: [
"host-185.14.28.30",
"host-91.219.28.44",
"host-37.139.2.214",
"host-185.141.25.150",
"host-185.117.72.94",
"host-uhgmnigjpf.biz",
"host-37.139.27.52",
"host-151.236.14.51",
"host-192.121.16.196",
"host-185.92.220.35",
"host-185.14.29.188",
"host-185.14.30.97",
],
Germany: [
"host-46.165.253.93",
"host-88.198.119.177",
"host-78.46.170.79",
"host-84.19.170.249",
"host-84.19.170.244",
"host-188.138.88.184",
"host-85.25.138.187",
"host-46.4.239.76",
],
Latvia: ["host-92.63.87.134", "host-92.63.87.106"],
Kazakhstan: ["host-78.40.108.39", "host-185.22.67.27"],
Spain: ["host-37.235.53.18", "host-192.71.213.69"],
Italy: ["host-149.154.157.14"],
Romania: ["host-46.108.39.18"],
Belarus: ["host-212.47.223.19"],
Bulgaria: ["host-185.82.216.213"],
Britain: ["host-dltvwp.it", "host-xfyubqmldwvuyar.yt"],
Serbia: ["host-86.104.134.144"],
},
ransomware: "Locky",
},
},
ids: [
"host-cwprfpjtmjb.biz",
"host-83.217.8.155",
"host-89.108.84.155",
"host-91.234.32.19",
"host-51.254.240.60",
"host-axnemuevqnstqyflb.work",
"host-83.217.26.168",
"host-htankds.info",
"host-107.170.20.33",
"host-blxbymhjva.info",
"host-ahsqbeospcdrngfv.info",
"host-cxlgwofgrjfoaa.info",
"host-91.234.35.243",
"host-185.14.28.30",
"host-31.184.196.74",
"host-91.230.211.103",
"host-91.219.29.81",
"host-jghbktqepe.pw",
"host-gfcuxnaek.ru",
"host-uhhvhjqowpgopq.xyz",
"host-ampjsppmftmfdblpt.info",
"host-207.244.97.230",
"host-46.165.253.93",
"host-nhhyxorxbxarxe.org",
"host-gsebqsi.ru",
"host-ywjgjvpuyitnbiw.info",
"host-kcdfajaxngiff.info",
"host-omeaswslhgdw.xyz",
"host-91.219.31.15",
"host-88.214.237.57",
"host-91.219.28.44",
"host-193.9.28.49",
"host-37.139.2.214",
"host-31.148.99.241",
"host-91.223.180.240",
"host-45.55.192.133",
"host-91.209.77.86",
"host-88.198.119.177",
"host-barjhxoye.info",
"host-sqrgvbgfyya.org",
"host-81.177.181.164",
"host-dwytqrgblrynsgtew.org",
"host-31.41.44.130",
"host-51.254.240.45",
"host-82.146.37.200",
"host-93.170.131.108",
"host-83.217.25.239",
"host-5.135.76.18",
"host-109.234.35.128",
"host-185.75.46.4",
"host-83.217.8.127",
"host-78.46.170.79",
"host-185.141.25.150",
"host-91.200.14.73",
"host-92.63.87.134",
"host-84.19.170.249",
"host-176.31.47.100",
"host-185.117.72.94",
"host-89.108.84.132",
"host-bwpegsfa.info",
"host-swfqg.in",
"host-xyhhuxa.be",
"host-hmndhdbscgru.pw",
"host-uhgmnigjpf.biz",
"host-46.8.44.39",
"host-217.12.218.158",
"host-84.19.170.244",
"host-195.64.154.126",
"host-92.63.87.106",
"host-217.12.199.90",
"host-nwcpgymgh.work",
"host-46.148.20.46",
"host-plfbvdrpvsm.pw",
"host-51.254.181.122",
"host-51.255.107.8",
"host-91.195.12.187",
"host-188.127.231.116",
"host-37.139.27.52",
"host-51.255.107.10",
"host-91.234.32.192",
"host-91.219.30.254",
"host-31.184.196.75",
"host-31.184.196.78",
"host-91.234.33.149",
"host-151.236.14.51",
"host-78.40.108.39",
"host-bqbbsfdw.be",
"host-egovrxvuspxck.be",
"host-91.195.12.131",
"host-37.235.53.18",
"host-89.108.85.163",
"host-149.154.157.14",
"host-192.121.16.196",
"host-glhxgchhfemcjgr.pw",
"host-185.92.220.35",
"host-109.237.111.168",
"host-46.108.39.18",
"host-212.47.223.19",
"host-185.82.216.213",
"host-fitga.ru",
"host-cudcfybkk.pw",
"host-wdvxeval.ru",
"host-gvludcvhcrjwmgq.in",
"host-95.213.184.10",
"host-192.71.213.69",
"host-5.34.183.195",
"host-kypsuw.pw",
"host-185.14.29.188",
"host-91.219.29.55",
"host-185.22.67.27",
"host-91.121.97.170",
"host-bnjhx.eu",
"host-jxqdry.ru",
"host-odgtnkmq.pw",
"host-5.34.183.136",
"host-51.254.19.227",
"host-31.184.197.119",
"host-185.46.11.239",
"host-188.138.88.184",
"host-31.184.233.106",
"host-31.41.47.37",
"host-gitybdjgbxd.nl",
"host-svkjhguk.ru",
"host-pvwinlrmwvccuo.eu",
"host-85.25.138.187",
"host-94.242.57.45",
"host-46.4.239.76",
"host-185.14.30.97",
"host-dltvwp.it",
"host-uxvvm.us",
"host-95.181.171.58",
"host-kqlxtqptsmys.in",
"host-195.154.241.208",
"host-fnarsipfqe.pw",
"host-sdwempsovemtr.yt",
"host-luvenxj.uk",
"host-xfyubqmldwvuyar.yt",
"host-195.64.154.14",
"host-86.104.134.144",
],
label: "Locky",
d: {
type: "host",
lookup: {
USA: [
"host-cwprfpjtmjb.biz",
"host-107.170.20.33",
"host-blxbymhjva.info",
"host-uhhvhjqowpgopq.xyz",
"host-207.244.97.230",
"host-omeaswslhgdw.xyz",
"host-193.9.28.49",
"host-45.55.192.133",
"host-sqrgvbgfyya.org",
"host-dwytqrgblrynsgtew.org",
"host-bwpegsfa.info",
"host-swfqg.in",
"host-hmndhdbscgru.pw",
"host-plfbvdrpvsm.pw",
"host-odgtnkmq.pw",
"host-gitybdjgbxd.nl",
"host-uxvvm.us",
"host-fnarsipfqe.pw",
"host-sdwempsovemtr.yt",
"host-luvenxj.uk",
],
Russia: [
"host-83.217.8.155",
"host-89.108.84.155",
"host-83.217.26.168",
"host-31.184.196.74",
"host-91.230.211.103",
"host-88.214.237.57",
"host-81.177.181.164",
"host-31.41.44.130",
"host-82.146.37.200",
"host-93.170.131.108",
"host-83.217.25.239",
"host-109.234.35.128",
"host-185.75.46.4",
"host-83.217.8.127",
"host-89.108.84.132",
"host-46.8.44.39",
"host-188.127.231.116",
"host-31.184.196.75",
"host-31.184.196.78",
"host-89.108.85.163",
"host-109.237.111.168",
"host-95.213.184.10",
"host-31.184.197.119",
"host-185.46.11.239",
"host-31.184.233.106",
"host-31.41.47.37",
"host-pvwinlrmwvccuo.eu",
"host-94.242.57.45",
"host-95.181.171.58",
],
Ukraine: [
"host-91.234.32.19",
"host-htankds.info",
"host-91.234.35.243",
"host-91.219.29.81",
"host-91.219.31.15",
"host-91.223.180.240",
"host-91.200.14.73",
"host-217.12.218.158",
"host-195.64.154.126",
"host-217.12.199.90",
"host-nwcpgymgh.work",
"host-46.148.20.46",
"host-91.195.12.187",
"host-91.234.32.192",
"host-91.219.30.254",
"host-91.234.33.149",
"host-91.195.12.131",
"host-5.34.183.195",
"host-91.219.29.55",
"host-5.34.183.136",
"host-195.64.154.14",
],
France: [
"host-51.254.240.60",
"host-51.254.240.45",
"host-5.135.76.18",
"host-176.31.47.100",
"host-51.254.181.122",
"host-51.255.107.8",
"host-51.255.107.10",
"host-91.121.97.170",
"host-51.254.19.227",
"host-195.154.241.208",
],
"Rep Czech": ["host-axnemuevqnstqyflb.work", "host-31.148.99.241", "host-91.209.77.86"],
Canada: [
"host-ahsqbeospcdrngfv.info",
"host-cxlgwofgrjfoaa.info",
"host-jghbktqepe.pw",
"host-gfcuxnaek.ru",
"host-ampjsppmftmfdblpt.info",
"host-nhhyxorxbxarxe.org",
"host-gsebqsi.ru",
"host-ywjgjvpuyitnbiw.info",
"host-kcdfajaxngiff.info",
"host-barjhxoye.info",
"host-xyhhuxa.be",
"host-bqbbsfdw.be",
"host-egovrxvuspxck.be",
"host-glhxgchhfemcjgr.pw",
"host-fitga.ru",
"host-cudcfybkk.pw",
"host-wdvxeval.ru",
"host-gvludcvhcrjwmgq.in",
"host-kypsuw.pw",
"host-bnjhx.eu",
"host-jxqdry.ru",
"host-svkjhguk.ru",
"host-kqlxtqptsmys.in",
],
Belgium: [
"host-185.14.28.30",
"host-91.219.28.44",
"host-37.139.2.214",
"host-185.141.25.150",
"host-185.117.72.94",
"host-uhgmnigjpf.biz",
"host-37.139.27.52",
"host-151.236.14.51",
"host-192.121.16.196",
"host-185.92.220.35",
"host-185.14.29.188",
"host-185.14.30.97",
],
Germany: [
"host-46.165.253.93",
"host-88.198.119.177",
"host-78.46.170.79",
"host-84.19.170.249",
"host-84.19.170.244",
"host-188.138.88.184",
"host-85.25.138.187",
"host-46.4.239.76",
],
Latvia: ["host-92.63.87.134", "host-92.63.87.106"],
Kazakhstan: ["host-78.40.108.39", "host-185.22.67.27"],
Spain: ["host-37.235.53.18", "host-192.71.213.69"],
Italy: ["host-149.154.157.14"],
Romania: ["host-46.108.39.18"],
Belarus: ["host-212.47.223.19"],
Bulgaria: ["host-185.82.216.213"],
Britain: ["host-dltvwp.it", "host-xfyubqmldwvuyar.yt"],
Serbia: ["host-86.104.134.144"],
},
ransomware: "Locky",
},
glyph: null,
},
{
style: {
e: 7.071974017189888,
u: "/images/icons/virus.svg",
c: "#FF5964",
type: "node",
t: "TeslaCrypt",
oc: {
bw: 10,
c: "#FFEEF0",
b: "#FF5964",
w: 1718,
},
g: [],
hi: false,
bg: false,
d: {
type: "host",
lookup: {
Brunei: [
"host-gmtuae.com",
"host-thinktrimbebeautiful.com.au",
"host-vtechshop.net",
"host-iheartshop.net",
],
Italy: ["host-faenzabike.makkie.com"],
USA: [
"host-bestinghana.com",
"host-coolcases.info",
"host-runescape-autominer.info",
"host-kortingcodes.be",
"host-custommerchandisingservices.com",
"host-artsabc.com",
"host-blessingshealthuk.com",
"host-baby.teasso.com",
"host-helcel.com",
"host-loseweightwithmysite.com",
"host-onguso.com",
"host-bluedreambd.com",
"host-colinmccarthynfl.com",
"host-43nutrientes.com",
"host-getdiscounts.org",
"host-naomihawkins.com",
"host-traditions-and-custom.com",
"host-closerdaybyday.info",
"host-coldheartedny.com",
"host-addagapublicschool.com",
"host-thejonesact.com",
"host-studiosundaytv.com",
"host-theoneflooring.com",
"host-goldberg-share.com",
"host-forms.net.in",
"host-mahmutersan.com.tr",
"host-casasembargada.com",
"host-csskol.org",
"host-grosirkecantikan.com",
"host-vtc360.com",
"host-starsoftheworld.org",
"host-holishit.in",
"host-asianbooty.net",
"host-strategicdisaster.info",
"host-www.affiliateproductes.com",
"host-affiliateproductes.com",
"host-mcgroupuae.com",
"host-pilfingr.com",
"host-setprosports.info",
"host-marvel-games.com",
"host-samuday.org",
"host-diwali2k15.in",
"host-toolaria.com",
"host-mkis.org",
"host-commonsenseprotection.com",
"host-resumosdenovela.net",
"host-shampooherbal.com",
"host-joshsawyerdesign.com",
"host-hmgame.net",
"host-marketathart.com",
"host-prodocument.co.uk",
"host-esbook.com",
"host-nlhomegarden.com",
"host-emmy2015.com",
"host-kel52.com",
"host-controlfreaknetworks.com",
"host-sappmtraining.com",
"host-multibrandphone.com",
"host-ahlanmedicalcentre.com",
"host-www.informaticauno.net",
"host-drcordoba.com",
"host-newculturemediablog.com",
"host-saludaonline.com",
"host-tmfilms.net",
"host-conspec.us",
"host-iqinternal.com",
"host-fisioactivo.com",
"host-serbiotecnicos.com",
"host-onegiantstore.com",
"host-dustinhansenbook.com",
"host-music.mbsaeger.com",
"host-biocarbon.com.ec",
"host-jessforkicks.com",
"host-lutheranph.com",
"host-salesandmarketing101.net",
"host-salaeigroup.com",
"host-iglesiaelrenacer.com",
"host-dustywinslow.com",
"host-iicsdrd.com",
"host-wefindco.com",
"host-westhollywooddentaloffice.com",
"host-toysfortheneedyandaid.org",
],
Belgium: ["host-www.teacherassist.info", "host-exaltation.info"],
Germany: [
"host-bonjourtablier.com",
"host-kknk-shop.dev.onnetdigital.com",
"host-naturstein-schubert.de",
"host-minteee.com",
"host-videoaminproduktion.de",
"host-tele-channel.com",
"host-cam-itour.info",
],
Russia: [
"host-blackroom.club",
"host-alushtadom.com",
"host-surrogacyandadoption.com",
"host-mosaudit.com",
"host-zavidovodom.com",
],
France: [
"host-anybug.net",
"host-lorangeriedelareine.fr",
"host-silocot.com",
"host-hotcasinogames.org",
"host-masterlegue.com",
"host-tradinbow.com",
"host-imagescroll.com",
],
Turkey: [
"host-4turka.com",
"host-goktugyeli.com",
"host-ekop.org",
"host-dunyamuzelerimuzesi.com",
"host-surusegitimmerkezi.com",
],
Denmark: ["host-gooseart.com"],
"Rep Czech": ["host-helpdesk.keldon.info", "host-opravnatramvaji.cz"],
India: ["host-maxmpl.com"],
"South Korea": ["host-classemgmt.testbada.com", "host-hongsi.com", "host-ikstrade.co.kr"],
"Hong Kong": ["host-shirongfeng.cn", "host-heizhuangym.com"],
Britain: ["host-specializedaccess.co.uk", "host-worldisonefamily.info"],
Guatemala: ["host-csucanuevo.csuca.org"],
Thailand: ["host-ptlchemicaltrading.com"],
Poland: ["host-stacon.eu", "host-lovemydress.pl", "host-southinstrument.org"],
Sweden: ["host-snibi.se"],
Spain: ["host-www.big-cola.com"],
Vietnam: ["host-dongxinh.com"],
Brazil: ["host-yoyoeventos.com"],
},
ransomware: "TeslaCrypt",
},
},
ids: [
"host-gmtuae.com",
"host-faenzabike.makkie.com",
"host-bestinghana.com",
"host-coolcases.info",
"host-runescape-autominer.info",
"host-www.teacherassist.info",
"host-kortingcodes.be",
"host-custommerchandisingservices.com",
"host-bonjourtablier.com",
"host-blackroom.club",
"host-artsabc.com",
"host-blessingshealthuk.com",
"host-anybug.net",
"host-alushtadom.com",
"host-4turka.com",
"host-lorangeriedelareine.fr",
"host-thinktrimbebeautiful.com.au",
"host-baby.teasso.com",
"host-helcel.com",
"host-loseweightwithmysite.com",
"host-onguso.com",
"host-silocot.com",
"host-gooseart.com",
"host-bluedreambd.com",
"host-colinmccarthynfl.com",
"host-43nutrientes.com",
"host-getdiscounts.org",
"host-naomihawkins.com",
"host-traditions-and-custom.com",
"host-closerdaybyday.info",
"host-coldheartedny.com",
"host-helpdesk.keldon.info",
"host-addagapublicschool.com",
"host-thejonesact.com",
"host-studiosundaytv.com",
"host-theoneflooring.com",
"host-goldberg-share.com",
"host-hotcasinogames.org",
"host-forms.net.in",
"host-kknk-shop.dev.onnetdigital.com",
"host-mahmutersan.com.tr",
"host-casasembargada.com",
"host-csskol.org",
"host-grosirkecantikan.com",
"host-naturstein-schubert.de",
"host-vtc360.com",
"host-starsoftheworld.org",
"host-holishit.in",
"host-minteee.com",
"host-asianbooty.net",
"host-strategicdisaster.info",
"host-www.affiliateproductes.com",
"host-affiliateproductes.com",
"host-videoaminproduktion.de",
"host-mcgroupuae.com",
"host-pilfingr.com",
"host-setprosports.info",
"host-marvel-games.com",
"host-maxmpl.com",
"host-samuday.org",
"host-diwali2k15.in",
"host-masterlegue.com",
"host-toolaria.com",
"host-tradinbow.com",
"host-mkis.org",
"host-commonsenseprotection.com",
"host-classemgmt.testbada.com",
"host-exaltation.info",
"host-resumosdenovela.net",
"host-shampooherbal.com",
"host-joshsawyerdesign.com",
"host-hmgame.net",
"host-marketathart.com",
"host-prodocument.co.uk",
"host-esbook.com",
"host-nlhomegarden.com",
"host-emmy2015.com",
"host-kel52.com",
"host-controlfreaknetworks.com",
"host-shirongfeng.cn",
"host-sappmtraining.com",
"host-vtechshop.net",
"host-multibrandphone.com",
"host-tele-channel.com",
"host-specializedaccess.co.uk",
"host-ahlanmedicalcentre.com",
"host-cam-itour.info",
"host-www.informaticauno.net",
"host-drcordoba.com",
"host-iheartshop.net",
"host-csucanuevo.csuca.org",
"host-newculturemediablog.com",
"host-saludaonline.com",
"host-tmfilms.net",
"host-conspec.us",
"host-goktugyeli.com",
"host-iqinternal.com",
"host-fisioactivo.com",
"host-serbiotecnicos.com",
"host-onegiantstore.com",
"host-dustinhansenbook.com",
"host-ptlchemicaltrading.com",
"host-opravnatramvaji.cz",
"host-music.mbsaeger.com",
"host-stacon.eu",
"host-worldisonefamily.info",
"host-imagescroll.com",
"host-hongsi.com",
"host-biocarbon.com.ec",
"host-heizhuangym.com",
"host-surrogacyandadoption.com",
"host-jessforkicks.com",
"host-lutheranph.com",
"host-snibi.se",
"host-www.big-cola.com",
"host-salesandmarketing101.net",
"host-ikstrade.co.kr",
"host-salaeigroup.com",
"host-iglesiaelrenacer.com",
"host-dongxinh.com",
"host-dustywinslow.com",
"host-lovemydress.pl",
"host-ekop.org",
"host-mosaudit.com",
"host-yoyoeventos.com",
"host-dunyamuzelerimuzesi.com",
"host-iicsdrd.com",
"host-zavidovodom.com",
"host-southinstrument.org",
"host-wefindco.com",
"host-westhollywooddentaloffice.com",
"host-surusegitimmerkezi.com",
"host-toysfortheneedyandaid.org",
],
label: "TeslaCrypt",
d: {
type: "host",
lookup: {
Brunei: [
"host-gmtuae.com",
"host-thinktrimbebeautiful.com.au",
"host-vtechshop.net",
"host-iheartshop.net",
],
Italy: ["host-faenzabike.makkie.com"],
USA: [
"host-bestinghana.com",
"host-coolcases.info",
"host-runescape-autominer.info",
"host-kortingcodes.be",
"host-custommerchandisingservices.com",
"host-artsabc.com",
"host-blessingshealthuk.com",
"host-baby.teasso.com",
"host-helcel.com",
"host-loseweightwithmysite.com",
"host-onguso.com",
"host-bluedreambd.com",
"host-colinmccarthynfl.com",
"host-43nutrientes.com",
"host-getdiscounts.org",
"host-naomihawkins.com",
"host-traditions-and-custom.com",
"host-closerdaybyday.info",
"host-coldheartedny.com",
"host-addagapublicschool.com",
"host-thejonesact.com",
"host-studiosundaytv.com",
"host-theoneflooring.com",
"host-goldberg-share.com",
"host-forms.net.in",
"host-mahmutersan.com.tr",
"host-casasembargada.com",
"host-csskol.org",
"host-grosirkecantikan.com",
"host-vtc360.com",
"host-starsoftheworld.org",
"host-holishit.in",
"host-asianbooty.net",
"host-strategicdisaster.info",
"host-www.affiliateproductes.com",
"host-affiliateproductes.com",
"host-mcgroupuae.com",
"host-pilfingr.com",
"host-setprosports.info",
"host-marvel-games.com",
"host-samuday.org",
"host-diwali2k15.in",
"host-toolaria.com",
"host-mkis.org",
"host-commonsenseprotection.com",
"host-resumosdenovela.net",
"host-shampooherbal.com",
"host-joshsawyerdesign.com",
"host-hmgame.net",
"host-marketathart.com",
"host-prodocument.co.uk",
"host-esbook.com",
"host-nlhomegarden.com",
"host-emmy2015.com",
"host-kel52.com",
"host-controlfreaknetworks.com",
"host-sappmtraining.com",
"host-multibrandphone.com",
"host-ahlanmedicalcentre.com",
"host-www.informaticauno.net",
"host-drcordoba.com",
"host-newculturemediablog.com",
"host-saludaonline.com",
"host-tmfilms.net",
"host-conspec.us",
"host-iqinternal.com",
"host-fisioactivo.com",
"host-serbiotecnicos.com",
"host-onegiantstore.com",
"host-dustinhansenbook.com",
"host-music.mbsaeger.com",
"host-biocarbon.com.ec",
"host-jessforkicks.com",
"host-lutheranph.com",
"host-salesandmarketing101.net",
"host-salaeigroup.com",
"host-iglesiaelrenacer.com",
"host-dustywinslow.com",
"host-iicsdrd.com",
"host-wefindco.com",
"host-westhollywooddentaloffice.com",
"host-toysfortheneedyandaid.org",
],
Belgium: ["host-www.teacherassist.info", "host-exaltation.info"],
Germany: [
"host-bonjourtablier.com",
"host-kknk-shop.dev.onnetdigital.com",
"host-naturstein-schubert.de",
"host-minteee.com",
"host-videoaminproduktion.de",
"host-tele-channel.com",
"host-cam-itour.info",
],
Russia: [
"host-blackroom.club",
"host-alushtadom.com",
"host-surrogacyandadoption.com",
"host-mosaudit.com",
"host-zavidovodom.com",
],
France: [
"host-anybug.net",
"host-lorangeriedelareine.fr",
"host-silocot.com",
"host-hotcasinogames.org",
"host-masterlegue.com",
"host-tradinbow.com",
"host-imagescroll.com",
],
Turkey: [
"host-4turka.com",
"host-goktugyeli.com",
"host-ekop.org",
"host-dunyamuzelerimuzesi.com",
"host-surusegitimmerkezi.com",
],
Denmark: ["host-gooseart.com"],
"Rep Czech": ["host-helpdesk.keldon.info", "host-opravnatramvaji.cz"],
India: ["host-maxmpl.com"],
"South Korea": ["host-classemgmt.testbada.com", "host-hongsi.com", "host-ikstrade.co.kr"],
"Hong Kong": ["host-shirongfeng.cn", "host-heizhuangym.com"],
Britain: ["host-specializedaccess.co.uk", "host-worldisonefamily.info"],
Guatemala: ["host-csucanuevo.csuca.org"],
Thailand: ["host-ptlchemicaltrading.com"],
Poland: ["host-stacon.eu", "host-lovemydress.pl", "host-southinstrument.org"],
Sweden: ["host-snibi.se"],
Spain: ["host-www.big-cola.com"],
Vietnam: ["host-dongxinh.com"],
Brazil: ["host-yoyoeventos.com"],
},
ransomware: "TeslaCrypt",
},
glyph: null,
},
{
style: {
e: 5.856406809717239,
u: "/images/icons/virus.svg",
c: "#00BFFF",
type: "node",
t: "CryptoWall",
oc: {
bw: 10,
c: "#E6F9FF",
b: "#00BFFF",
w: 1266,
},
g: [],
hi: false,
bg: false,
d: {
type: "host",
lookup: {
USA: [
"host-estudiobarco.com.ar",
"host-jambola.com",
"host-oregonreversemortgage.com",
"host-openroadsolutions.com",
"host-www.decorandoimoveis.com",
"host-tusrecetas.net",
"host-trion.com.ph",
"host-hamilton150.co.nz",
"host-dichiro.com",
"host-beyondthedog.net",
"host-lazymoosestamping.com",
"host-maternalserenity.co.uk",
"host-cursos.feyda.net",
"host-www.vishvagujarat.com",
"host-national-drafting.com",
"host-paintituppottery.com",
"host-www.hanoiguidedtours.com",
"host-www.healthstafftravel.com.au",
"host-aditaborai.com.br",
"host-madisonbootcamps.com",
"host-www.plexipr.com",
"host-studiolegalecsb.it",
"host-smartnote.co",
"host-www.feddoctor.com",
"host-8vs.com",
"host-glitchygaming.com",
"host-jadwalpialadunia.in",
"host-patrianossa.com.br",
"host-portalmaismidia.com.br",
],
Belgium: [
"host-anoukdelecluse.nl",
"host-igatha.com",
"host-viralcrazies.com",
"host-haarsaloncindy.nl",
"host-konyavakfi.nl",
"host-millsmanagement.nl",
"host-portret-tekening.nl",
],
Russia: [
"host-gibdd.ws",
"host-ecolux-comfort.com",
"host-italyprego.com",
"host-procrediti.com.ua",
],
Brazil: [
"host-marciogerhardtsouza.com.br",
"host-nupleta.com.br",
"host-www.granmarquise.com.br",
],
Canada: ["host-takaram.ir"],
Chile: ["host-americancorner.udp.cl"],
Australia: [
"host-challengestrata.com.au",
"host-aspectdesigns.com.au",
"host-www.gjscomputerservices.com.au",
],
Japan: ["host-best-service.jp", "host-takatei.com", "host-dining-bar.com"],
France: [
"host-domaine-cassillac.com",
"host-london-escorts-agency.org.uk",
"host-event-travel.co.uk",
],
Germany: [
"host-double-wing.de",
"host-definitionen.de",
"host-feuerwehr-stadt-riesa.de",
"host-frame3d.de",
"host-autohaus-seevetal.com",
"host-tcblog.de",
],
Spain: ["host-eatside.es", "host-ecocalsots.com"],
Romania: ["host-recaswine.ro", "host-ascortimisoara.ro", "host-babylicious.ie"],
Britain: ["host-www.rippedknees.co.uk", "host-www.bishopbell.co.uk"],
Ukraine: ["host-abdal.com.ua", "host-bisofit.com", "host-ilovesport.kiev.ua"],
Thailand: ["host-building.msu.ac.th"],
"New Zealand": ["host-theassemblyguy.co.nz"],
Italy: ["host-www.001edizioni.com"],
Vietnam: ["host-nonnuoccaobang.com", "host-cheapshirts.us"],
Turkey: ["host-www.kadinweb.net"],
China: ["host-dechehang.com", "host-fun-pop.com"],
Poland: ["host-grochowina.net", "host-silstop.pl"],
India: ["host-inspirenetworks.in"],
Indonesia: ["host-d3mpd.fe.uns.ac.id", "host-icsot.na.its.ac.id"],
},
ransomware: "CryptoWall",
},
},
ids: [
"host-estudiobarco.com.ar",
"host-jambola.com",
"host-oregonreversemortgage.com",
"host-anoukdelecluse.nl",
"host-gibdd.ws",
"host-marciogerhardtsouza.com.br",
"host-openroadsolutions.com",
"host-www.decorandoimoveis.com",
"host-tusrecetas.net",
"host-trion.com.ph",
"host-hamilton150.co.nz",
"host-takaram.ir",
"host-americancorner.udp.cl",
"host-challengestrata.com.au",
"host-dichiro.com",
"host-beyondthedog.net",
"host-lazymoosestamping.com",
"host-maternalserenity.co.uk",
"host-cursos.feyda.net",
"host-igatha.com",
"host-www.vishvagujarat.com",
"host-best-service.jp",
"host-viralcrazies.com",
"host-domaine-cassillac.com",
"host-double-wing.de",
"host-eatside.es",
"host-definitionen.de",
"host-ecocalsots.com",
"host-recaswine.ro",
"host-nupleta.com.br",
"host-national-drafting.com",
"host-haarsaloncindy.nl",
"host-feuerwehr-stadt-riesa.de",
"host-paintituppottery.com",
"host-takatei.com",
"host-www.hanoiguidedtours.com",
"host-www.rippedknees.co.uk",
"host-ecolux-comfort.com",
"host-abdal.com.ua",
"host-building.msu.ac.th",
"host-konyavakfi.nl",
"host-www.granmarquise.com.br",
"host-frame3d.de",
"host-autohaus-seevetal.com",
"host-bisofit.com",
"host-www.healthstafftravel.com.au",
"host-aditaborai.com.br",
"host-theassemblyguy.co.nz",
"host-www.001edizioni.com",
"host-madisonbootcamps.com",
"host-millsmanagement.nl",
"host-nonnuoccaobang.com",
"host-italyprego.com",
"host-www.kadinweb.net",
"host-www.plexipr.com",
"host-www.bishopbell.co.uk",
"host-studiolegalecsb.it",
"host-smartnote.co",
"host-dechehang.com",
"host-www.feddoctor.com",
"host-portret-tekening.nl",
"host-ascortimisoara.ro",
"host-8vs.com",
"host-glitchygaming.com",
"host-grochowina.net",
"host-tcblog.de",
"host-dining-bar.com",
"host-london-escorts-agency.org.uk",
"host-event-travel.co.uk",
"host-jadwalpialadunia.in",
"host-aspectdesigns.com.au",
"host-inspirenetworks.in",
"host-cheapshirts.us",
"host-patrianossa.com.br",
"host-silstop.pl",
"host-portalmaismidia.com.br",
"host-procrediti.com.ua",
"host-www.gjscomputerservices.com.au",
"host-ilovesport.kiev.ua",
"host-babylicious.ie",
"host-fun-pop.com",
"host-d3mpd.fe.uns.ac.id",
"host-icsot.na.its.ac.id",
],
label: "CryptoWall",
d: {
type: "host",
lookup: {
USA: [
"host-estudiobarco.com.ar",
"host-jambola.com",
"host-oregonreversemortgage.com",
"host-openroadsolutions.com",
"host-www.decorandoimoveis.com",
"host-tusrecetas.net",
"host-trion.com.ph",
"host-hamilton150.co.nz",
"host-dichiro.com",
"host-beyondthedog.net",
"host-lazymoosestamping.com",
"host-maternalserenity.co.uk",
"host-cursos.feyda.net",
"host-www.vishvagujarat.com",
"host-national-drafting.com",
"host-paintituppottery.com",
"host-www.hanoiguidedtours.com",
"host-www.healthstafftravel.com.au",
"host-aditaborai.com.br",
"host-madisonbootcamps.com",
"host-www.plexipr.com",
"host-studiolegalecsb.it",
"host-smartnote.co",
"host-www.feddoctor.com",
"host-8vs.com",
"host-glitchygaming.com",
"host-jadwalpialadunia.in",
"host-patrianossa.com.br",
"host-portalmaismidia.com.br",
],
Belgium: [
"host-anoukdelecluse.nl",
"host-igatha.com",
"host-viralcrazies.com",
"host-haarsaloncindy.nl",
"host-konyavakfi.nl",
"host-millsmanagement.nl",
"host-portret-tekening.nl",
],
Russia: [
"host-gibdd.ws",
"host-ecolux-comfort.com",
"host-italyprego.com",
"host-procrediti.com.ua",
],
Brazil: [
"host-marciogerhardtsouza.com.br",
"host-nupleta.com.br",
"host-www.granmarquise.com.br",
],
Canada: ["host-takaram.ir"],
Chile: ["host-americancorner.udp.cl"],
Australia: [
"host-challengestrata.com.au",
"host-aspectdesigns.com.au",
"host-www.gjscomputerservices.com.au",
],
Japan: ["host-best-service.jp", "host-takatei.com", "host-dining-bar.com"],
France: [
"host-domaine-cassillac.com",
"host-london-escorts-agency.org.uk",
"host-event-travel.co.uk",
],
Germany: [
"host-double-wing.de",
"host-definitionen.de",
"host-feuerwehr-stadt-riesa.de",
"host-frame3d.de",
"host-autohaus-seevetal.com",
"host-tcblog.de",
],
Spain: ["host-eatside.es", "host-ecocalsots.com"],
Romania: ["host-recaswine.ro", "host-ascortimisoara.ro", "host-babylicious.ie"],
Britain: ["host-www.rippedknees.co.uk", "host-www.bishopbell.co.uk"],
Ukraine: ["host-abdal.com.ua", "host-bisofit.com", "host-ilovesport.kiev.ua"],
Thailand: ["host-building.msu.ac.th"],
"New Zealand": ["host-theassemblyguy.co.nz"],
Italy: ["host-www.001edizioni.com"],
Vietnam: ["host-nonnuoccaobang.com", "host-cheapshirts.us"],
Turkey: ["host-www.kadinweb.net"],
China: ["host-dechehang.com", "host-fun-pop.com"],
Poland: ["host-grochowina.net", "host-silstop.pl"],
India: ["host-inspirenetworks.in"],
Indonesia: ["host-d3mpd.fe.uns.ac.id", "host-icsot.na.its.ac.id"],
},
ransomware: "CryptoWall",
},
glyph: null,
},
{
style: {
e: 6.672354868356219,
u: "/images/flags/united-states-of-america.svg",
type: "node",
t: "USA",
oc: {
bw: 10,
w: 1524,
},
g: [],
hi: false,
bg: false,
d: {
type: "ip",
lookup: {
"69.195.129.70": [
"host-cwprfpjtmjb.biz",
"host-blxbymhjva.info",
"host-sqrgvbgfyya.org",
"host-dwytqrgblrynsgtew.org",
"host-hmndhdbscgru.pw",
"host-uxvvm.us",
"host-luvenxj.uk",
],
"184.168.51.1": ["host-bestinghana.com"],
"72.167.232.144": ["host-coolcases.info"],
"107.170.20.33": ["host-107.170.20.33"],
"192.185.46.61": ["host-runescape-autominer.info"],
"108.167.181.253": ["host-kortingcodes.be"],
"45.79.161.27": ["host-custommerchandisingservices.com"],
"204.12.208.74": ["host-artsabc.com"],
"107.180.50.165": ["host-blessingshealthuk.com"],
"208.100.26.234": [
"host-uhhvhjqowpgopq.xyz",
"host-omeaswslhgdw.xyz",
"host-swfqg.in",
"host-plfbvdrpvsm.pw",
],
"207.244.97.230": ["host-207.244.97.230"],
"162.210.102.32": ["host-baby.teasso.com"],
"72.41.18.2": ["host-helcel.com", "host-onguso.com"],
"74.220.207.112": ["host-loseweightwithmysite.com"],
"192.185.174.198": ["host-bluedreambd.com"],
"50.62.250.1": ["host-colinmccarthynfl.com"],
"193.9.28.49": ["host-193.9.28.49"],
"50.87.149.41": ["host-43nutrientes.com"],
"205.144.171.76": ["host-getdiscounts.org"],
"50.63.97.1": ["host-naomihawkins.com"],
"72.41.18.212": ["host-traditions-and-custom.com"],
"192.185.151.39": ["host-closerdaybyday.info"],
"107.180.26.75": ["host-coldheartedny.com"],
"23.229.239.227": ["host-addagapublicschool.com"],
"192.186.220.8": ["host-thejonesact.com"],
"76.162.168.113": ["host-studiosundaytv.com"],
"107.180.4.122": ["host-theoneflooring.com"],
"107.180.43.132": ["host-goldberg-share.com"],
"45.55.192.133": ["host-45.55.192.133"],
"160.153.51.192": ["host-forms.net.in", "host-csskol.org"],
"160.153.18.235": ["host-mahmutersan.com.tr"],
"23.229.166.194": ["host-casasembargada.com"],
"192.185.51.87": ["host-grosirkecantikan.com"],
"107.180.34.199": ["host-vtc360.com"],
"50.22.11.55": ["host-estudiobarco.com.ar"],
"166.62.28.102": ["host-starsoftheworld.org"],
"160.153.63.4": ["host-holishit.in"],
"107.180.50.230": ["host-asianbooty.net"],
"192.186.197.161": ["host-strategicdisaster.info"],
"107.180.4.124": ["host-www.affiliateproductes.com", "host-affiliateproductes.com"],
"45.56.77.175": ["host-bwpegsfa.info", "host-fnarsipfqe.pw", "host-sdwempsovemtr.yt"],
"166.62.28.147": ["host-mcgroupuae.com"],
"192.186.208.225": ["host-pilfingr.com"],
"198.12.157.163": ["host-setprosports.info"],
"167.160.162.182": ["host-marvel-games.com"],
"50.31.14.17": ["host-samuday.org"],
"64.20.35.186": ["host-diwali2k15.in"],
"160.153.49.102": ["host-toolaria.com"],
"50.87.127.96": ["host-mkis.org"],
"50.116.109.230": ["host-commonsenseprotection.com"],
"108.167.185.237": ["host-resumosdenovela.net"],
"104.128.239.91": ["host-shampooherbal.com"],
"107.180.4.11": ["host-joshsawyerdesign.com"],
"66.147.244.86": ["host-hmgame.net"],
"192.185.35.88": ["host-marketathart.com"],
"67.23.226.169": ["host-prodocument.co.uk"],
"174.136.12.119": ["host-esbook.com"],
"107.180.50.210": ["host-nlhomegarden.com"],
"107.180.50.183": ["host-emmy2015.com"],
"108.167.141.20": ["host-kel52.com"],
"97.74.249.1": ["host-controlfreaknetworks.com"],
"208.109.189.88": ["host-jambola.com"],
"198.143.138.43": ["host-oregonreversemortgage.com"],
"166.62.4.223": ["host-sappmtraining.com"],
"162.208.8.165": ["host-multibrandphone.com"],
"184.168.47.225": ["host-ahlanmedicalcentre.com", "host-beyondthedog.net"],
"50.87.28.241": ["host-www.informaticauno.net"],
"50.62.125.1": ["host-drcordoba.com"],
"50.63.50.75": ["host-newculturemediablog.com"],
"184.168.53.1": ["host-saludaonline.com"],
"50.62.122.1": ["host-tmfilms.net"],
"208.109.243.37": ["host-openroadsolutions.com"],
"198.154.250.33": ["host-www.decorandoimoveis.com"],
"50.62.245.1": ["host-conspec.us"],
"69.162.104.22": ["host-tusrecetas.net"],
"104.238.111.90": ["host-trion.com.ph"],
"107.180.44.212": ["host-iqinternal.com"],
"167.88.167.10": ["host-hamilton150.co.nz"],
"160.153.79.168": ["host-fisioactivo.com"],
"198.252.78.160": ["host-serbiotecnicos.com"],
"50.62.66.1": ["host-onegiantstore.com"],
"173.201.145.1": ["host-dustinhansenbook.com"],
"206.188.193.93": ["host-dichiro.com"],
"76.125.213.205": ["host-music.mbsaeger.com"],
"173.225.189.5": ["host-lazymoosestamping.com"],
"69.10.56.10": ["host-maternalserenity.co.uk"],
"192.185.39.66": ["host-biocarbon.com.ec"],
"198.154.228.128": ["host-cursos.feyda.net"],
"104.27.142.99": ["host-www.vishvagujarat.com"],
"96.226.119.251": ["host-jessforkicks.com"],
"98.143.148.173": ["host-odgtnkmq.pw", "host-gitybdjgbxd.nl"],
"107.180.41.49": ["host-lutheranph.com"],
"166.62.93.187": ["host-national-drafting.com"],
"23.229.172.137": ["host-salesandmarketing101.net"],
"208.117.38.143": ["host-paintituppottery.com"],
"104.131.43.146": ["host-www.hanoiguidedtours.com"],
"107.180.2.115": ["host-salaeigroup.com"],
"64.207.186.229": ["host-www.healthstafftravel.com.au"],
"160.153.76.161": ["host-iglesiaelrenacer.com"],
"108.179.192.88": ["host-aditaborai.com.br"],
"108.174.112.194": ["host-dustywinslow.com"],
"50.63.64.23": ["host-madisonbootcamps.com"],
"205.144.171.9": ["host-iicsdrd.com"],
"65.98.35.114": ["host-www.plexipr.com"],
"104.47.161.9": ["host-studiolegalecsb.it"],
"184.168.68.65": ["host-smartnote.co"],
"192.163.206.61": ["host-www.feddoctor.com"],
"107.182.238.196": ["host-wefindco.com"],
"184.168.24.1": ["host-westhollywooddentaloffice.com"],
"162.212.35.42": ["host-8vs.com"],
"72.51.43.203": ["host-glitchygaming.com"],
"97.107.141.123": ["host-toysfortheneedyandaid.org"],
"104.219.251.2": ["host-jadwalpialadunia.in"],
"23.89.198.195": ["host-patrianossa.com.br"],
"69.162.96.195": ["host-portalmaismidia.com.br"],
},
country: "USA",
},
},
ids: [
"69.195.129.70",
"184.168.51.1",
"72.167.232.144",
"107.170.20.33",
"192.185.46.61",
"108.167.181.253",
"45.79.161.27",
"204.12.208.74",
"107.180.50.165",
"208.100.26.234",
"207.244.97.230",
"162.210.102.32",
"72.41.18.2",
"74.220.207.112",
"192.185.174.198",
"50.62.250.1",
"193.9.28.49",
"50.87.149.41",
"205.144.171.76",
"50.63.97.1",
"72.41.18.212",
"192.185.151.39",
"107.180.26.75",
"23.229.239.227",
"192.186.220.8",
"76.162.168.113",
"107.180.4.122",
"107.180.43.132",
"45.55.192.133",
"160.153.51.192",
"160.153.18.235",
"23.229.166.194",
"192.185.51.87",
"107.180.34.199",
"50.22.11.55",
"166.62.28.102",
"160.153.63.4",
"107.180.50.230",
"192.186.197.161",
"107.180.4.124",
"45.56.77.175",
"166.62.28.147",
"192.186.208.225",
"198.12.157.163",
"167.160.162.182",
"50.31.14.17",
"64.20.35.186",
"160.153.49.102",
"50.87.127.96",
"50.116.109.230",
"108.167.185.237",
"104.128.239.91",
"107.180.4.11",
"66.147.244.86",
"192.185.35.88",
"67.23.226.169",
"174.136.12.119",
"107.180.50.210",
"107.180.50.183",
"108.167.141.20",
"97.74.249.1",
"208.109.189.88",
"198.143.138.43",
"166.62.4.223",
"162.208.8.165",
"184.168.47.225",
"50.87.28.241",
"50.62.125.1",
"50.63.50.75",
"184.168.53.1",
"50.62.122.1",
"208.109.243.37",
"198.154.250.33",
"50.62.245.1",
"69.162.104.22",
"104.238.111.90",
"107.180.44.212",
"167.88.167.10",
"160.153.79.168",
"198.252.78.160",
"50.62.66.1",
"173.201.145.1",
"206.188.193.93",
"76.125.213.205",
"173.225.189.5",
"69.10.56.10",
"192.185.39.66",
"198.154.228.128",
"104.27.142.99",
"96.226.119.251",
"98.143.148.173",
"107.180.41.49",
"166.62.93.187",
"23.229.172.137",
"208.117.38.143",
"104.131.43.146",
"107.180.2.115",
"64.207.186.229",
"160.153.76.161",
"108.179.192.88",
"108.174.112.194",
"50.63.64.23",
"205.144.171.9",
"65.98.35.114",
"104.47.161.9",
"184.168.68.65",
"192.163.206.61",
"107.182.238.196",
"184.168.24.1",
"162.212.35.42",
"72.51.43.203",
"97.107.141.123",
"104.219.251.2",
"23.89.198.195",
"69.162.96.195",
],
label: "USA",
d: {
type: "ip",
lookup: {
"69.195.129.70": [
"host-cwprfpjtmjb.biz",
"host-blxbymhjva.info",
"host-sqrgvbgfyya.org",
"host-dwytqrgblrynsgtew.org",
"host-hmndhdbscgru.pw",
"host-uxvvm.us",
"host-luvenxj.uk",
],
"184.168.51.1": ["host-bestinghana.com"],
"72.167.232.144": ["host-coolcases.info"],
"107.170.20.33": ["host-107.170.20.33"],
"192.185.46.61": ["host-runescape-autominer.info"],
"108.167.181.253": ["host-kortingcodes.be"],
"45.79.161.27": ["host-custommerchandisingservices.com"],
"204.12.208.74": ["host-artsabc.com"],
"107.180.50.165": ["host-blessingshealthuk.com"],
"208.100.26.234": [
"host-uhhvhjqowpgopq.xyz",
"host-omeaswslhgdw.xyz",
"host-swfqg.in",
"host-plfbvdrpvsm.pw",
],
"207.244.97.230": ["host-207.244.97.230"],
"162.210.102.32": ["host-baby.teasso.com"],
"72.41.18.2": ["host-helcel.com", "host-onguso.com"],
"74.220.207.112": ["host-loseweightwithmysite.com"],
"192.185.174.198": ["host-bluedreambd.com"],
"50.62.250.1": ["host-colinmccarthynfl.com"],
"193.9.28.49": ["host-193.9.28.49"],
"50.87.149.41": ["host-43nutrientes.com"],
"205.144.171.76": ["host-getdiscounts.org"],
"50.63.97.1": ["host-naomihawkins.com"],
"72.41.18.212": ["host-traditions-and-custom.com"],
"192.185.151.39": ["host-closerdaybyday.info"],
"107.180.26.75": ["host-coldheartedny.com"],
"23.229.239.227": ["host-addagapublicschool.com"],
"192.186.220.8": ["host-thejonesact.com"],
"76.162.168.113": ["host-studiosundaytv.com"],
"107.180.4.122": ["host-theoneflooring.com"],
"107.180.43.132": ["host-goldberg-share.com"],
"45.55.192.133": ["host-45.55.192.133"],
"160.153.51.192": ["host-forms.net.in", "host-csskol.org"],
"160.153.18.235": ["host-mahmutersan.com.tr"],
"23.229.166.194": ["host-casasembargada.com"],
"192.185.51.87": ["host-grosirkecantikan.com"],
"107.180.34.199": ["host-vtc360.com"],
"50.22.11.55": ["host-estudiobarco.com.ar"],
"166.62.28.102": ["host-starsoftheworld.org"],
"160.153.63.4": ["host-holishit.in"],
"107.180.50.230": ["host-asianbooty.net"],
"192.186.197.161": ["host-strategicdisaster.info"],
"107.180.4.124": ["host-www.affiliateproductes.com", "host-affiliateproductes.com"],
"45.56.77.175": ["host-bwpegsfa.info", "host-fnarsipfqe.pw", "host-sdwempsovemtr.yt"],
"166.62.28.147": ["host-mcgroupuae.com"],
"192.186.208.225": ["host-pilfingr.com"],
"198.12.157.163": ["host-setprosports.info"],
"167.160.162.182": ["host-marvel-games.com"],
"50.31.14.17": ["host-samuday.org"],
"64.20.35.186": ["host-diwali2k15.in"],
"160.153.49.102": ["host-toolaria.com"],
"50.87.127.96": ["host-mkis.org"],
"50.116.109.230": ["host-commonsenseprotection.com"],
"108.167.185.237": ["host-resumosdenovela.net"],
"104.128.239.91": ["host-shampooherbal.com"],
"107.180.4.11": ["host-joshsawyerdesign.com"],
"66.147.244.86": ["host-hmgame.net"],
"192.185.35.88": ["host-marketathart.com"],
"67.23.226.169": ["host-prodocument.co.uk"],
"174.136.12.119": ["host-esbook.com"],
"107.180.50.210": ["host-nlhomegarden.com"],
"107.180.50.183": ["host-emmy2015.com"],
"108.167.141.20": ["host-kel52.com"],
"97.74.249.1": ["host-controlfreaknetworks.com"],
"208.109.189.88": ["host-jambola.com"],
"198.143.138.43": ["host-oregonreversemortgage.com"],
"166.62.4.223": ["host-sappmtraining.com"],
"162.208.8.165": ["host-multibrandphone.com"],
"184.168.47.225": ["host-ahlanmedicalcentre.com", "host-beyondthedog.net"],
"50.87.28.241": ["host-www.informaticauno.net"],
"50.62.125.1": ["host-drcordoba.com"],
"50.63.50.75": ["host-newculturemediablog.com"],
"184.168.53.1": ["host-saludaonline.com"],
"50.62.122.1": ["host-tmfilms.net"],
"208.109.243.37": ["host-openroadsolutions.com"],
"198.154.250.33": ["host-www.decorandoimoveis.com"],
"50.62.245.1": ["host-conspec.us"],
"69.162.104.22": ["host-tusrecetas.net"],
"104.238.111.90": ["host-trion.com.ph"],
"107.180.44.212": ["host-iqinternal.com"],
"167.88.167.10": ["host-hamilton150.co.nz"],
"160.153.79.168": ["host-fisioactivo.com"],
"198.252.78.160": ["host-serbiotecnicos.com"],
"50.62.66.1": ["host-onegiantstore.com"],
"173.201.145.1": ["host-dustinhansenbook.com"],
"206.188.193.93": ["host-dichiro.com"],
"76.125.213.205": ["host-music.mbsaeger.com"],
"173.225.189.5": ["host-lazymoosestamping.com"],
"69.10.56.10": ["host-maternalserenity.co.uk"],
"192.185.39.66": ["host-biocarbon.com.ec"],
"198.154.228.128": ["host-cursos.feyda.net"],
"104.27.142.99": ["host-www.vishvagujarat.com"],
"96.226.119.251": ["host-jessforkicks.com"],
"98.143.148.173": ["host-odgtnkmq.pw", "host-gitybdjgbxd.nl"],
"107.180.41.49": ["host-lutheranph.com"],
"166.62.93.187": ["host-national-drafting.com"],
"23.229.172.137": ["host-salesandmarketing101.net"],
"208.117.38.143": ["host-paintituppottery.com"],
"104.131.43.146": ["host-www.hanoiguidedtours.com"],
"107.180.2.115": ["host-salaeigroup.com"],
"64.207.186.229": ["host-www.healthstafftravel.com.au"],
"160.153.76.161": ["host-iglesiaelrenacer.com"],
"108.179.192.88": ["host-aditaborai.com.br"],
"108.174.112.194": ["host-dustywinslow.com"],
"50.63.64.23": ["host-madisonbootcamps.com"],
"205.144.171.9": ["host-iicsdrd.com"],
"65.98.35.114": ["host-www.plexipr.com"],
"104.47.161.9": ["host-studiolegalecsb.it"],
"184.168.68.65": ["host-smartnote.co"],
"192.163.206.61": ["host-www.feddoctor.com"],
"107.182.238.196": ["host-wefindco.com"],
"184.168.24.1": ["host-westhollywooddentaloffice.com"],
"162.212.35.42": ["host-8vs.com"],
"72.51.43.203": ["host-glitchygaming.com"],
"97.107.141.123": ["host-toysfortheneedyandaid.org"],
"104.219.251.2": ["host-jadwalpialadunia.in"],
"23.89.198.195": ["host-patrianossa.com.br"],
"69.162.96.195": ["host-portalmaismidia.com.br"],
},
country: "USA",
},
glyph: null,
},
{
style: {
e: 4.239168599773809,
u: "/images/flags/russia.svg",
type: "node",
t: "Russia",
oc: {
bw: 10,
w: 892,
},
g: [],
hi: false,
bg: false,
d: {
type: "ip",
lookup: {
"83.217.8.155": ["host-83.217.8.155"],
"89.108.84.155": ["host-89.108.84.155"],
"83.217.26.168": ["host-83.217.26.168"],
"81.177.135.232": ["host-blackroom.club"],
"81.177.140.186": ["host-alushtadom.com"],
"31.184.196.74": ["host-31.184.196.74"],
"91.230.211.103": ["host-91.230.211.103"],
"88.214.237.57": ["host-88.214.237.57"],
"81.177.181.164": ["host-81.177.181.164"],
"31.41.44.130": ["host-31.41.44.130"],
"82.146.37.200": ["host-82.146.37.200"],
"93.170.131.108": ["host-93.170.131.108"],
"83.217.25.239": ["host-83.217.25.239"],
"109.234.35.128": ["host-109.234.35.128"],
"185.75.46.4": ["host-185.75.46.4"],
"83.217.8.127": ["host-83.217.8.127"],
"89.108.84.132": ["host-89.108.84.132"],
"46.8.44.39": ["host-46.8.44.39"],
"188.127.231.116": ["host-188.127.231.116"],
"31.184.196.75": ["host-31.184.196.75"],
"31.184.196.78": ["host-31.184.196.78"],
"178.208.83.11": ["host-gibdd.ws"],
"89.108.85.163": ["host-89.108.85.163"],
"109.237.111.168": ["host-109.237.111.168"],
"95.213.184.10": ["host-95.213.184.10"],
"185.26.122.59": ["host-surrogacyandadoption.com"],
"31.184.197.119": ["host-31.184.197.119"],
"185.46.11.239": ["host-185.46.11.239", "host-pvwinlrmwvccuo.eu"],
"188.127.249.243": ["host-ecolux-comfort.com"],
"31.184.233.106": ["host-31.184.233.106"],
"31.41.47.37": ["host-31.41.47.37"],
"94.242.57.45": ["host-94.242.57.45"],
"95.181.171.58": ["host-95.181.171.58"],
"81.177.140.144": ["host-mosaudit.com"],
"78.110.50.154": ["host-italyprego.com"],
"78.110.50.137": ["host-zavidovodom.com"],
"62.109.23.126": ["host-procrediti.com.ua"],
},
country: "Russia",
},
},
ids: [
"83.217.8.155",
"89.108.84.155",
"83.217.26.168",
"81.177.135.232",
"81.177.140.186",
"31.184.196.74",
"91.230.211.103",
"88.214.237.57",
"81.177.181.164",
"31.41.44.130",
"82.146.37.200",
"93.170.131.108",
"83.217.25.239",
"109.234.35.128",
"185.75.46.4",
"83.217.8.127",
"89.108.84.132",
"46.8.44.39",
"188.127.231.116",
"31.184.196.75",
"31.184.196.78",
"178.208.83.11",
"89.108.85.163",
"109.237.111.168",
"95.213.184.10",
"185.26.122.59",
"31.184.197.119",
"185.46.11.239",
"188.127.249.243",
"31.184.233.106",
"31.41.47.37",
"94.242.57.45",
"95.181.171.58",
"81.177.140.144",
"78.110.50.154",
"78.110.50.137",
"62.109.23.126",
],
label: "Russia",
d: {
type: "ip",
lookup: {
"83.217.8.155": ["host-83.217.8.155"],
"89.108.84.155": ["host-89.108.84.155"],
"83.217.26.168": ["host-83.217.26.168"],
"81.177.135.232": ["host-blackroom.club"],
"81.177.140.186": ["host-alushtadom.com"],
"31.184.196.74": ["host-31.184.196.74"],
"91.230.211.103": ["host-91.230.211.103"],
"88.214.237.57": ["host-88.214.237.57"],
"81.177.181.164": ["host-81.177.181.164"],
"31.41.44.130": ["host-31.41.44.130"],
"82.146.37.200": ["host-82.146.37.200"],
"93.170.131.108": ["host-93.170.131.108"],
"83.217.25.239": ["host-83.217.25.239"],
"109.234.35.128": ["host-109.234.35.128"],
"185.75.46.4": ["host-185.75.46.4"],
"83.217.8.127": ["host-83.217.8.127"],
"89.108.84.132": ["host-89.108.84.132"],
"46.8.44.39": ["host-46.8.44.39"],
"188.127.231.116": ["host-188.127.231.116"],
"31.184.196.75": ["host-31.184.196.75"],
"31.184.196.78": ["host-31.184.196.78"],
"178.208.83.11": ["host-gibdd.ws"],
"89.108.85.163": ["host-89.108.85.163"],
"109.237.111.168": ["host-109.237.111.168"],
"95.213.184.10": ["host-95.213.184.10"],
"185.26.122.59": ["host-surrogacyandadoption.com"],
"31.184.197.119": ["host-31.184.197.119"],
"185.46.11.239": ["host-185.46.11.239", "host-pvwinlrmwvccuo.eu"],
"188.127.249.243": ["host-ecolux-comfort.com"],
"31.184.233.106": ["host-31.184.233.106"],
"31.41.47.37": ["host-31.41.47.37"],
"94.242.57.45": ["host-94.242.57.45"],
"95.181.171.58": ["host-95.181.171.58"],
"81.177.140.144": ["host-mosaudit.com"],
"78.110.50.154": ["host-italyprego.com"],
"78.110.50.137": ["host-zavidovodom.com"],
"62.109.23.126": ["host-procrediti.com.ua"],
},
country: "Russia",
},
glyph: null,
},
{
style: {
e: 1.7411011265922482,
u: "/images/flags/brunei.svg",
type: "node",
t: "Brunei",
oc: {
bw: 10,
w: 310,
},
g: [],
hi: false,
bg: false,
d: {
type: "ip",
lookup: {
"182.50.158.108": ["host-gmtuae.com"],
"182.50.149.1": ["host-thinktrimbebeautiful.com.au"],
"203.124.115.1": ["host-vtechshop.net"],
"128.199.187.47": ["host-iheartshop.net"],
},
country: "Brunei",
},
},
ids: ["182.50.158.108", "182.50.149.1", "203.124.115.1", "128.199.187.47"],
label: "Brunei",
d: {
type: "ip",
lookup: {
"182.50.158.108": ["host-gmtuae.com"],
"182.50.149.1": ["host-thinktrimbebeautiful.com.au"],
"203.124.115.1": ["host-vtechshop.net"],
"128.199.187.47": ["host-iheartshop.net"],
},
country: "Brunei",
},
glyph: null,
},
{
style: {
e: 3.565204915932007,
u: "/images/flags/ukraine.svg",
type: "node",
t: "Ukraine",
oc: {
bw: 10,
w: 686,
},
g: [],
hi: false,
bg: false,
d: {
type: "ip",
lookup: {
"91.234.32.19": ["host-91.234.32.19"],
"91.219.31.18": ["host-htankds.info"],
"91.234.35.243": ["host-91.234.35.243"],
"91.219.29.81": ["host-91.219.29.81"],
"91.219.31.15": ["host-91.219.31.15"],
"91.223.180.240": ["host-91.223.180.240"],
"91.200.14.73": ["host-91.200.14.73"],
"217.12.218.158": ["host-217.12.218.158"],
"195.64.154.126": ["host-195.64.154.126"],
"217.12.199.90": ["host-217.12.199.90"],
"5.34.183.21": ["host-nwcpgymgh.work"],
"46.148.20.46": ["host-46.148.20.46"],
"91.195.12.187": ["host-91.195.12.187"],
"91.234.32.192": ["host-91.234.32.192"],
"91.219.30.254": ["host-91.219.30.254"],
"91.234.33.149": ["host-91.234.33.149"],
"91.195.12.131": ["host-91.195.12.131"],
"5.34.183.195": ["host-5.34.183.195"],
"91.219.29.55": ["host-91.219.29.55"],
"5.34.183.136": ["host-5.34.183.136"],
"185.68.16.196": ["host-abdal.com.ua"],
"185.68.16.111": ["host-bisofit.com"],
"195.64.154.14": ["host-195.64.154.14"],
"185.68.16.13": ["host-ilovesport.kiev.ua"],
},
country: "Ukraine",
},
},
ids: [
"91.234.32.19",
"91.219.31.18",
"91.234.35.243",
"91.219.29.81",
"91.219.31.15",
"91.223.180.240",
"91.200.14.73",
"217.12.218.158",
"195.64.154.126",
"217.12.199.90",
"5.34.183.21",
"46.148.20.46",
"91.195.12.187",
"91.234.32.192",
"91.219.30.254",
"91.234.33.149",
"91.195.12.131",
"5.34.183.195",
"91.219.29.55",
"5.34.183.136",
"185.68.16.196",
"185.68.16.111",
"195.64.154.14",
"185.68.16.13",
],
label: "Ukraine",
d: {
type: "ip",
lookup: {
"91.234.32.19": ["host-91.234.32.19"],
"91.219.31.18": ["host-htankds.info"],
"91.234.35.243": ["host-91.234.35.243"],
"91.219.29.81": ["host-91.219.29.81"],
"91.219.31.15": ["host-91.219.31.15"],
"91.223.180.240": ["host-91.223.180.240"],
"91.200.14.73": ["host-91.200.14.73"],
"217.12.218.158": ["host-217.12.218.158"],
"195.64.154.126": ["host-195.64.154.126"],
"217.12.199.90": ["host-217.12.199.90"],
"5.34.183.21": ["host-nwcpgymgh.work"],
"46.148.20.46": ["host-46.148.20.46"],
"91.195.12.187": ["host-91.195.12.187"],
"91.234.32.192": ["host-91.234.32.192"],
"91.219.30.254": ["host-91.219.30.254"],
"91.234.33.149": ["host-91.234.33.149"],
"91.195.12.131": ["host-91.195.12.131"],
"5.34.183.195": ["host-5.34.183.195"],
"91.219.29.55": ["host-91.219.29.55"],
"5.34.183.136": ["host-5.34.183.136"],
"185.68.16.196": ["host-abdal.com.ua"],
"185.68.16.111": ["host-bisofit.com"],
"195.64.154.14": ["host-195.64.154.14"],
"185.68.16.13": ["host-ilovesport.kiev.ua"],
},
country: "Ukraine",
},
glyph: null,
},
{
style: {
e: 1.5518455739153598,
u: "/images/flags/italy.svg",
type: "node",
t: "Italy",
oc: {
bw: 10,
w: 278,
},
g: [],
hi: false,
bg: false,
d: {
type: "ip",
lookup: {
"213.26.174.81": ["host-faenzabike.makkie.com"],
"149.154.157.14": ["host-149.154.157.14"],
"95.110.230.190": ["host-www.001edizioni.com"],
},
country: "Italy",
},
},
ids: ["213.26.174.81", "149.154.157.14", "95.110.230.190"],
label: "Italy",
d: {
type: "ip",
lookup: {
"213.26.174.81": ["host-faenzabike.makkie.com"],
"149.154.157.14": ["host-149.154.157.14"],
"95.110.230.190": ["host-www.001edizioni.com"],
},
country: "Italy",
},
glyph: null,
},
{
style: {
e: 3.314454017339987,
u: "/images/flags/france.svg",
type: "node",
t: "France",
oc: {
bw: 10,
w: 690,
},
g: [],
hi: false,
bg: false,
d: {
type: "ip",
lookup: {
"51.254.240.60": ["host-51.254.240.60"],
"78.217.205.113": ["host-anybug.net"],
"62.210.116.247": ["host-lorangeriedelareine.fr"],
"62.210.88.33": ["host-silocot.com"],
"217.70.180.150": ["host-hotcasinogames.org"],
"51.254.240.45": ["host-51.254.240.45"],
"5.135.76.18": ["host-5.135.76.18"],
"176.31.47.100": ["host-176.31.47.100"],
"62.210.83.56": ["host-masterlegue.com"],
"213.186.33.104": ["host-tradinbow.com"],
"51.254.181.122": ["host-51.254.181.122"],
"51.255.107.8": ["host-51.255.107.8"],
"51.255.107.10": ["host-51.255.107.10"],
"62.210.141.228": ["host-imagescroll.com"],
"213.186.33.87": ["host-domaine-cassillac.com"],
"91.121.97.170": ["host-91.121.97.170"],
"51.254.19.227": ["host-51.254.19.227"],
"195.154.241.208": ["host-195.154.241.208"],
"178.32.72.112": ["host-london-escorts-agency.org.uk"],
"178.32.72.113": ["host-event-travel.co.uk"],
},
country: "France",
},
},
ids: [
"51.254.240.60",
"78.217.205.113",
"62.210.116.247",
"62.210.88.33",
"217.70.180.150",
"51.254.240.45",
"5.135.76.18",
"176.31.47.100",
"62.210.83.56",
"213.186.33.104",
"51.254.181.122",
"51.255.107.8",
"51.255.107.10",
"62.210.141.228",
"213.186.33.87",
"91.121.97.170",
"51.254.19.227",
"195.154.241.208",
"178.32.72.112",
"178.32.72.113",
],
label: "France",
d: {
type: "ip",
lookup: {
"51.254.240.60": ["host-51.254.240.60"],
"78.217.205.113": ["host-anybug.net"],
"62.210.116.247": ["host-lorangeriedelareine.fr"],
"62.210.88.33": ["host-silocot.com"],
"217.70.180.150": ["host-hotcasinogames.org"],
"51.254.240.45": ["host-51.254.240.45"],
"5.135.76.18": ["host-5.135.76.18"],
"176.31.47.100": ["host-176.31.47.100"],
"62.210.83.56": ["host-masterlegue.com"],
"213.186.33.104": ["host-tradinbow.com"],
"51.254.181.122": ["host-51.254.181.122"],
"51.255.107.8": ["host-51.255.107.8"],
"51.255.107.10": ["host-51.255.107.10"],
"62.210.141.228": ["host-imagescroll.com"],
"213.186.33.87": ["host-domaine-cassillac.com"],
"91.121.97.170": ["host-91.121.97.170"],
"51.254.19.227": ["host-51.254.19.227"],
"195.154.241.208": ["host-195.154.241.208"],
"178.32.72.112": ["host-london-escorts-agency.org.uk"],
"178.32.72.113": ["host-event-travel.co.uk"],
},
country: "France",
},
glyph: null,
},
{
style: {
e: 1.7411011265922482,
u: "/images/flags/czech-republic.svg",
type: "node",
t: "Rep Czech",
oc: {
bw: 10,
w: 310,
},
g: [],
hi: false,
bg: false,
d: {
type: "ip",
lookup: {
"31.148.99.188": ["host-axnemuevqnstqyflb.work"],
"31.148.99.241": ["host-31.148.99.241"],
"194.228.3.204": ["host-helpdesk.keldon.info", "host-opravnatramvaji.cz"],
"91.209.77.86": ["host-91.209.77.86"],
},
country: "Rep Czech",
},
},
ids: ["31.148.99.188", "31.148.99.241", "194.228.3.204", "91.209.77.86"],
label: "Rep Czech",
d: {
type: "ip",
lookup: {
"31.148.99.188": ["host-axnemuevqnstqyflb.work"],
"31.148.99.241": ["host-31.148.99.241"],
"194.228.3.204": ["host-helpdesk.keldon.info", "host-opravnatramvaji.cz"],
"91.209.77.86": ["host-91.209.77.86"],
},
country: "Rep Czech",
},
glyph: null,
},
{
style: {
e: 3.379774445235429,
u: "/images/flags/belgium.svg",
type: "node",
t: "Belgium",
oc: {
bw: 10,
w: 686,
},
g: [],
hi: false,
bg: false,
d: {
type: "ip",
lookup: {
"94.124.120.61": ["host-www.teacherassist.info"],
"185.14.28.30": ["host-185.14.28.30"],
"91.219.28.44": ["host-91.219.28.44"],
"37.139.2.214": ["host-37.139.2.214"],
"185.141.25.150": ["host-185.141.25.150"],
"185.117.72.94": ["host-185.117.72.94"],
"93.170.104.127": ["host-uhgmnigjpf.biz"],
"46.235.47.104": ["host-exaltation.info"],
"37.139.27.52": ["host-37.139.27.52"],
"83.137.194.20": ["host-anoukdelecluse.nl"],
"151.236.14.51": ["host-151.236.14.51"],
"192.121.16.196": ["host-192.121.16.196"],
"185.92.220.35": ["host-185.92.220.35"],
"185.14.29.188": ["host-185.14.29.188"],
"217.23.12.215": ["host-igatha.com"],
"46.166.187.64": ["host-viralcrazies.com"],
"5.178.65.43": ["host-haarsaloncindy.nl"],
"91.208.60.158": ["host-konyavakfi.nl"],
"185.14.30.97": ["host-185.14.30.97"],
"83.137.194.38": ["host-millsmanagement.nl"],
"83.137.194.115": ["host-portret-tekening.nl"],
},
country: "Belgium",
},
},
ids: [
"94.124.120.61",
"185.14.28.30",
"91.219.28.44",
"37.139.2.214",
"185.141.25.150",
"185.117.72.94",
"93.170.104.127",
"46.235.47.104",
"37.139.27.52",
"83.137.194.20",
"151.236.14.51",
"192.121.16.196",
"185.92.220.35",
"185.14.29.188",
"217.23.12.215",
"46.166.187.64",
"5.178.65.43",
"91.208.60.158",
"185.14.30.97",
"83.137.194.38",
"83.137.194.115",
],
label: "Belgium",
d: {
type: "ip",
lookup: {
"94.124.120.61": ["host-www.teacherassist.info"],
"185.14.28.30": ["host-185.14.28.30"],
"91.219.28.44": ["host-91.219.28.44"],
"37.139.2.214": ["host-37.139.2.214"],
"185.141.25.150": ["host-185.141.25.150"],
"185.117.72.94": ["host-185.117.72.94"],
"93.170.104.127": ["host-uhgmnigjpf.biz"],
"46.235.47.104": ["host-exaltation.info"],
"37.139.27.52": ["host-37.139.27.52"],
"83.137.194.20": ["host-anoukdelecluse.nl"],
"151.236.14.51": ["host-151.236.14.51"],
"192.121.16.196": ["host-192.121.16.196"],
"185.92.220.35": ["host-185.92.220.35"],
"185.14.29.188": ["host-185.14.29.188"],
"217.23.12.215": ["host-igatha.com"],
"46.166.187.64": ["host-viralcrazies.com"],
"5.178.65.43": ["host-haarsaloncindy.nl"],
"91.208.60.158": ["host-konyavakfi.nl"],
"185.14.30.97": ["host-185.14.30.97"],
"83.137.194.38": ["host-millsmanagement.nl"],
"83.137.194.115": ["host-portret-tekening.nl"],
},
country: "Belgium",
},
glyph: null,
},
{
style: {
e: 3.379774445235429,
u: "/images/flags/germany.svg",
type: "node",
t: "Germany",
oc: {
bw: 10,
w: 686,
},
g: [],
hi: false,
bg: false,
d: {
type: "ip",
lookup: {
"212.227.247.229": ["host-bonjourtablier.com"],
"46.165.253.93": ["host-46.165.253.93"],
"88.198.119.177": ["host-88.198.119.177"],
"176.9.2.244": ["host-kknk-shop.dev.onnetdigital.com"],
"91.250.80.97": ["host-naturstein-schubert.de"],
"78.46.170.79": ["host-78.46.170.79"],
"178.254.0.121": ["host-minteee.com"],
"84.19.170.249": ["host-84.19.170.249"],
"87.238.192.67": ["host-videoaminproduktion.de"],
"84.19.170.244": ["host-84.19.170.244"],
"178.162.214.146": ["host-tele-channel.com"],
"188.40.132.132": ["host-cam-itour.info"],
"217.119.54.152": ["host-double-wing.de"],
"136.243.69.220": ["host-definitionen.de"],
"178.254.50.156": ["host-feuerwehr-stadt-riesa.de"],
"188.138.88.184": ["host-188.138.88.184"],
"178.254.10.169": ["host-frame3d.de"],
"81.169.145.162": ["host-autohaus-seevetal.com"],
"85.25.138.187": ["host-85.25.138.187"],
"46.4.239.76": ["host-46.4.239.76"],
"212.90.148.111": ["host-tcblog.de"],
},
country: "Germany",
},
},
ids: [
"212.227.247.229",
"46.165.253.93",
"88.198.119.177",
"176.9.2.244",
"91.250.80.97",
"78.46.170.79",
"178.254.0.121",
"84.19.170.249",
"87.238.192.67",
"84.19.170.244",
"178.162.214.146",
"188.40.132.132",
"217.119.54.152",
"136.243.69.220",
"178.254.50.156",
"188.138.88.184",
"178.254.10.169",
"81.169.145.162",
"85.25.138.187",
"46.4.239.76",
"212.90.148.111",
],
label: "Germany",
d: {
type: "ip",
lookup: {
"212.227.247.229": ["host-bonjourtablier.com"],
"46.165.253.93": ["host-46.165.253.93"],
"88.198.119.177": ["host-88.198.119.177"],
"176.9.2.244": ["host-kknk-shop.dev.onnetdigital.com"],
"91.250.80.97": ["host-naturstein-schubert.de"],
"78.46.170.79": ["host-78.46.170.79"],
"178.254.0.121": ["host-minteee.com"],
"84.19.170.249": ["host-84.19.170.249"],
"87.238.192.67": ["host-videoaminproduktion.de"],
"84.19.170.244": ["host-84.19.170.244"],
"178.162.214.146": ["host-tele-channel.com"],
"188.40.132.132": ["host-cam-itour.info"],
"217.119.54.152": ["host-double-wing.de"],
"136.243.69.220": ["host-definitionen.de"],
"178.254.50.156": ["host-feuerwehr-stadt-riesa.de"],
"188.138.88.184": ["host-188.138.88.184"],
"178.254.10.169": ["host-frame3d.de"],
"81.169.145.162": ["host-autohaus-seevetal.com"],
"85.25.138.187": ["host-85.25.138.187"],
"46.4.239.76": ["host-46.4.239.76"],
"212.90.148.111": ["host-tcblog.de"],
},
country: "Germany",
},
glyph: null,
},
{
style: {
e: 2.0476725110792193,
u: "/images/flags/canada.svg",
type: "node",
t: "Canada",
oc: {
bw: 10,
w: 368,
},
g: [],
hi: false,
bg: false,
d: {
type: "ip",
lookup: {
"195.22.28.198": [
"host-ahsqbeospcdrngfv.info",
"host-jghbktqepe.pw",
"host-gsebqsi.ru",
"host-ywjgjvpuyitnbiw.info",
"host-kypsuw.pw",
"host-kqlxtqptsmys.in",
],
"195.22.28.197": [
"host-cxlgwofgrjfoaa.info",
"host-barjhxoye.info",
"host-glhxgchhfemcjgr.pw",
"host-fitga.ru",
"host-wdvxeval.ru",
"host-bnjhx.eu",
],
"195.22.28.199": [
"host-gfcuxnaek.ru",
"host-ampjsppmftmfdblpt.info",
"host-kcdfajaxngiff.info",
"host-bqbbsfdw.be",
"host-jxqdry.ru",
"host-svkjhguk.ru",
],
"195.22.28.196": [
"host-nhhyxorxbxarxe.org",
"host-xyhhuxa.be",
"host-cudcfybkk.pw",
"host-gvludcvhcrjwmgq.in",
],
"195.22.26.248": ["host-egovrxvuspxck.be"],
"82.102.8.142": ["host-takaram.ir"],
},
country: "Canada",
},
},
ids: [
"195.22.28.198",
"195.22.28.197",
"195.22.28.199",
"195.22.28.196",
"195.22.26.248",
"82.102.8.142",
],
label: "Canada",
d: {
type: "ip",
lookup: {
"195.22.28.198": [
"host-ahsqbeospcdrngfv.info",
"host-jghbktqepe.pw",
"host-gsebqsi.ru",
"host-ywjgjvpuyitnbiw.info",
"host-kypsuw.pw",
"host-kqlxtqptsmys.in",
],
"195.22.28.197": [
"host-cxlgwofgrjfoaa.info",
"host-barjhxoye.info",
"host-glhxgchhfemcjgr.pw",
"host-fitga.ru",
"host-wdvxeval.ru",
"host-bnjhx.eu",
],
"195.22.28.199": [
"host-gfcuxnaek.ru",
"host-ampjsppmftmfdblpt.info",
"host-kcdfajaxngiff.info",
"host-bqbbsfdw.be",
"host-jxqdry.ru",
"host-svkjhguk.ru",
],
"195.22.28.196": [
"host-nhhyxorxbxarxe.org",
"host-xyhhuxa.be",
"host-cudcfybkk.pw",
"host-gvludcvhcrjwmgq.in",
],
"195.22.26.248": ["host-egovrxvuspxck.be"],
"82.102.8.142": ["host-takaram.ir"],
},
country: "Canada",
},
glyph: null,
},
{
style: {
e: 2.0476725110792193,
u: "/images/flags/turkey.svg",
type: "node",
t: "Turkey",
oc: {
bw: 10,
w: 366,
},
g: [],
hi: false,
bg: false,
d: {
type: "ip",
lookup: {
"185.12.108.138": ["host-4turka.com"],
"185.22.184.156": ["host-goktugyeli.com"],
"94.73.150.60": ["host-ekop.org"],
"185.8.33.117": ["host-www.kadinweb.net"],
"94.73.148.60": ["host-dunyamuzelerimuzesi.com"],
"94.73.151.173": ["host-surusegitimmerkezi.com"],
},
country: "Turkey",
},
},
ids: [
"185.12.108.138",
"185.22.184.156",
"94.73.150.60",
"185.8.33.117",
"94.73.148.60",
"94.73.151.173",
],
label: "Turkey",
d: {
type: "ip",
lookup: {
"185.12.108.138": ["host-4turka.com"],
"185.22.184.156": ["host-goktugyeli.com"],
"94.73.150.60": ["host-ekop.org"],
"185.8.33.117": ["host-www.kadinweb.net"],
"94.73.148.60": ["host-dunyamuzelerimuzesi.com"],
"94.73.151.173": ["host-surusegitimmerkezi.com"],
},
country: "Turkey",
},
glyph: null,
},
{
style: {
e: 1,
u: "/images/flags/denmark.svg",
type: "node",
t: "Denmark",
oc: {
bw: 10,
w: 158,
},
g: [],
hi: false,
bg: false,
d: {
type: "ip",
lookup: {
"195.128.174.143": ["host-gooseart.com"],
},
country: "Denmark",
},
},
ids: ["195.128.174.143"],
label: "Denmark",
d: {
type: "ip",
lookup: {
"195.128.174.143": ["host-gooseart.com"],
},
country: "Denmark",
},
glyph: null,
},
{
style: {
e: 1.3195079107728942,
u: "/images/flags/latvia.svg",
type: "node",
t: "Latvia",
oc: {
bw: 10,
w: 218,
},
g: [],
hi: false,
bg: false,
d: {
type: "ip",
lookup: {
"92.63.87.134": ["host-92.63.87.134"],
"92.63.87.106": ["host-92.63.87.106"],
},
country: "Latvia",
},
},
ids: ["92.63.87.134", "92.63.87.106"],
label: "Latvia",
d: {
type: "ip",
lookup: {
"92.63.87.134": ["host-92.63.87.134"],
"92.63.87.106": ["host-92.63.87.106"],
},
country: "Latvia",
},
glyph: null,
},
{
style: {
e: 1.3195079107728942,
u: "/images/flags/india.svg",
type: "node",
t: "India",
oc: {
bw: 10,
w: 222,
},
g: [],
hi: false,
bg: false,
d: {
type: "ip",
lookup: {
"103.27.87.88": ["host-maxmpl.com"],
"103.10.191.39": ["host-inspirenetworks.in"],
},
country: "India",
},
},
ids: ["103.27.87.88", "103.10.191.39"],
label: "India",
d: {
type: "ip",
lookup: {
"103.27.87.88": ["host-maxmpl.com"],
"103.10.191.39": ["host-inspirenetworks.in"],
},
country: "India",
},
glyph: null,
},
{
style: {
e: 1.3195079107728942,
u: "/images/flags/south-korea.svg",
type: "node",
t: "South Korea",
oc: {
bw: 10,
w: 224,
},
g: [],
hi: false,
bg: false,
d: {
type: "ip",
lookup: {
"115.94.157.252": ["host-classemgmt.testbada.com"],
"110.45.144.173": ["host-hongsi.com", "host-ikstrade.co.kr"],
},
country: "South Korea",
},
},
ids: ["115.94.157.252", "110.45.144.173"],
label: "South Korea",
d: {
type: "ip",
lookup: {
"115.94.157.252": ["host-classemgmt.testbada.com"],
"110.45.144.173": ["host-hongsi.com", "host-ikstrade.co.kr"],
},
country: "South Korea",
},
glyph: null,
},
{
style: {
e: 1.3195079107728942,
u: "/images/flags/hong-kong.svg",
type: "node",
t: "Hong Kong",
oc: {
bw: 10,
w: 230,
},
g: [],
hi: false,
bg: false,
d: {
type: "ip",
lookup: {
"103.254.148.121": ["host-shirongfeng.cn"],
"103.254.148.129": ["host-heizhuangym.com"],
},
country: "Hong Kong",
},
},
ids: ["103.254.148.121", "103.254.148.129"],
label: "Hong Kong",
d: {
type: "ip",
lookup: {
"103.254.148.121": ["host-shirongfeng.cn"],
"103.254.148.129": ["host-heizhuangym.com"],
},
country: "Hong Kong",
},
glyph: null,
},
{
style: {
e: 1.9036539387158786,
u: "/images/flags/united-kingdom.svg",
type: "node",
t: "Britain",
oc: {
bw: 10,
w: 374,
},
g: [],
hi: false,
bg: false,
d: {
type: "ip",
lookup: {
"85.233.160.146": ["host-specializedaccess.co.uk"],
"23.229.4.214": ["host-worldisonefamily.info"],
"212.48.68.63": ["host-www.rippedknees.co.uk"],
"104.238.173.18": ["host-dltvwp.it", "host-xfyubqmldwvuyar.yt"],
"217.177.8.89": ["host-www.bishopbell.co.uk"],
},
country: "Britain",
},
},
ids: ["85.233.160.146", "23.229.4.214", "212.48.68.63", "104.238.173.18", "217.177.8.89"],
label: "Britain",
d: {
type: "ip",
lookup: {
"85.233.160.146": ["host-specializedaccess.co.uk"],
"23.229.4.214": ["host-worldisonefamily.info"],
"212.48.68.63": ["host-www.rippedknees.co.uk"],
"104.238.173.18": ["host-dltvwp.it", "host-xfyubqmldwvuyar.yt"],
"217.177.8.89": ["host-www.bishopbell.co.uk"],
},
country: "Britain",
},
glyph: null,
},
{
style: {
e: 1.3195079107728942,
u: "/images/flags/kazakhstan.svg",
type: "node",
t: "Kazakhstan",
oc: {
bw: 10,
w: 218,
},
g: [],
hi: false,
bg: false,
d: {
type: "ip",
lookup: {
"78.40.108.39": ["host-78.40.108.39"],
"185.22.67.27": ["host-185.22.67.27"],
},
country: "Kazakhstan",
},
},
ids: ["78.40.108.39", "185.22.67.27"],
label: "Kazakhstan",
d: {
type: "ip",
lookup: {
"78.40.108.39": ["host-78.40.108.39"],
"185.22.67.27": ["host-185.22.67.27"],
},
country: "Kazakhstan",
},
glyph: null,
},
{
style: {
e: 1.7411011265922482,
u: "/images/flags/brazil.svg",
type: "node",
t: "Brazil",
oc: {
bw: 10,
w: 314,
},
g: [],
hi: false,
bg: false,
d: {
type: "ip",
lookup: {
"186.202.153.14": ["host-marciogerhardtsouza.com.br"],
"186.202.127.236": ["host-nupleta.com.br"],
"187.18.184.70": ["host-www.granmarquise.com.br"],
"187.45.240.67": ["host-yoyoeventos.com"],
},
country: "Brazil",
},
},
ids: ["186.202.153.14", "186.202.127.236", "187.18.184.70", "187.45.240.67"],
label: "Brazil",
d: {
type: "ip",
lookup: {
"186.202.153.14": ["host-marciogerhardtsouza.com.br"],
"186.202.127.236": ["host-nupleta.com.br"],
"187.18.184.70": ["host-www.granmarquise.com.br"],
"187.45.240.67": ["host-yoyoeventos.com"],
},
country: "Brazil",
},
glyph: null,
},
{
style: {
e: 1.9036539387158786,
u: "/images/flags/spain.svg",
type: "node",
t: "Spain",
oc: {
bw: 10,
w: 358,
},
g: [],
hi: false,
bg: false,
d: {
type: "ip",
lookup: {
"37.235.53.18": ["host-37.235.53.18"],
"192.71.213.69": ["host-192.71.213.69"],
"134.0.15.35": ["host-eatside.es"],
"37.247.125.42": ["host-ecocalsots.com"],
"77.73.81.35": ["host-www.big-cola.com"],
},
country: "Spain",
},
},
ids: ["37.235.53.18", "192.71.213.69", "134.0.15.35", "37.247.125.42", "77.73.81.35"],
label: "Spain",
d: {
type: "ip",
lookup: {
"37.235.53.18": ["host-37.235.53.18"],
"192.71.213.69": ["host-192.71.213.69"],
"134.0.15.35": ["host-eatside.es"],
"37.247.125.42": ["host-ecocalsots.com"],
"77.73.81.35": ["host-www.big-cola.com"],
},
country: "Spain",
},
glyph: null,
},
{
style: {
e: 1,
u: "/images/flags/guatemala.svg",
type: "node",
t: "Guatemala",
oc: {
bw: 10,
w: 144,
},
g: [],
hi: false,
bg: false,
d: {
type: "ip",
lookup: {
"186.151.199.5": ["host-csucanuevo.csuca.org"],
},
country: "Guatemala",
},
},
ids: ["186.151.199.5"],
label: "Guatemala",
d: {
type: "ip",
lookup: {
"186.151.199.5": ["host-csucanuevo.csuca.org"],
},
country: "Guatemala",
},
glyph: null,
},
{
style: {
e: 1.7411011265922482,
u: "/images/flags/romania.svg",
type: "node",
t: "Romania",
oc: {
bw: 10,
w: 310,
},
g: [],
hi: false,
bg: false,
d: {
type: "ip",
lookup: {
"46.108.39.18": ["host-46.108.39.18"],
"93.118.36.235": ["host-recaswine.ro"],
"86.105.207.51": ["host-ascortimisoara.ro"],
"89.36.25.168": ["host-babylicious.ie"],
},
country: "Romania",
},
},
ids: ["46.108.39.18", "93.118.36.235", "86.105.207.51", "89.36.25.168"],
label: "Romania",
d: {
type: "ip",
lookup: {
"46.108.39.18": ["host-46.108.39.18"],
"93.118.36.235": ["host-recaswine.ro"],
"86.105.207.51": ["host-ascortimisoara.ro"],
"89.36.25.168": ["host-babylicious.ie"],
},
country: "Romania",
},
glyph: null,
},
{
style: {
e: 1,
u: "/images/flags/belarus.svg",
type: "node",
t: "Belarus",
oc: {
bw: 10,
w: 144,
},
g: [],
hi: false,
bg: false,
d: {
type: "ip",
lookup: {
"212.47.223.19": ["host-212.47.223.19"],
},
country: "Belarus",
},
},
ids: ["212.47.223.19"],
label: "Belarus",
d: {
type: "ip",
lookup: {
"212.47.223.19": ["host-212.47.223.19"],
},
country: "Belarus",
},
glyph: null,
},
{
style: {
e: 1,
u: "/images/flags/bulgaria.svg",
type: "node",
t: "Bulgaria",
oc: {
bw: 10,
w: 150,
},
g: [],
hi: false,
bg: false,
d: {
type: "ip",
lookup: {
"185.82.216.213": ["host-185.82.216.213"],
},
country: "Bulgaria",
},
},
ids: ["185.82.216.213"],
label: "Bulgaria",
d: {
type: "ip",
lookup: {
"185.82.216.213": ["host-185.82.216.213"],
},
country: "Bulgaria",
},
glyph: null,
},
{
style: {
e: 1,
u: "/images/flags/chile.svg",
type: "node",
t: "Chile",
oc: {
bw: 10,
w: 138,
},
g: [],
hi: false,
bg: false,
d: {
type: "ip",
lookup: {
"200.14.85.32": ["host-americancorner.udp.cl"],
},
country: "Chile",
},
},
ids: ["200.14.85.32"],
label: "Chile",
d: {
type: "ip",
lookup: {
"200.14.85.32": ["host-americancorner.udp.cl"],
},
country: "Chile",
},
glyph: null,
},
{
style: {
e: 1.3195079107728942,
u: "/images/flags/thailand.svg",
type: "node",
t: "Thailand",
oc: {
bw: 10,
w: 222,
},
g: [],
hi: false,
bg: false,
d: {
type: "ip",
lookup: {
"119.59.120.21": ["host-ptlchemicaltrading.com"],
"202.28.32.20": ["host-building.msu.ac.th"],
},
country: "Thailand",
},
},
ids: ["119.59.120.21", "202.28.32.20"],
label: "Thailand",
d: {
type: "ip",
lookup: {
"119.59.120.21": ["host-ptlchemicaltrading.com"],
"202.28.32.20": ["host-building.msu.ac.th"],
},
country: "Thailand",
},
glyph: null,
},
{
style: {
e: 1.5518455739153598,
u: "/images/flags/australia.svg",
type: "node",
t: "Australia",
oc: {
bw: 10,
w: 284,
},
g: [],
hi: false,
bg: false,
d: {
type: "ip",
lookup: {
"175.107.181.167": ["host-challengestrata.com.au"],
"101.2.169.10": ["host-aspectdesigns.com.au"],
"125.214.74.70": ["host-www.gjscomputerservices.com.au"],
},
country: "Australia",
},
},
ids: ["175.107.181.167", "101.2.169.10", "125.214.74.70"],
label: "Australia",
d: {
type: "ip",
lookup: {
"175.107.181.167": ["host-challengestrata.com.au"],
"101.2.169.10": ["host-aspectdesigns.com.au"],
"125.214.74.70": ["host-www.gjscomputerservices.com.au"],
},
country: "Australia",
},
glyph: null,
},
{
style: {
e: 1.9036539387158786,
u: "/images/flags/republic-of-poland.svg",
type: "node",
t: "Poland",
oc: {
bw: 10,
w: 364,
},
g: [],
hi: false,
bg: false,
d: {
type: "ip",
lookup: {
"188.116.9.2": ["host-stacon.eu"],
"79.96.7.15": ["host-lovemydress.pl"],
"212.85.98.241": ["host-southinstrument.org"],
"188.116.35.23": ["host-grochowina.net"],
"46.41.144.45": ["host-silstop.pl"],
},
country: "Poland",
},
},
ids: ["188.116.9.2", "79.96.7.15", "212.85.98.241", "188.116.35.23", "46.41.144.45"],
label: "Poland",
d: {
type: "ip",
lookup: {
"188.116.9.2": ["host-stacon.eu"],
"79.96.7.15": ["host-lovemydress.pl"],
"212.85.98.241": ["host-southinstrument.org"],
"188.116.35.23": ["host-grochowina.net"],
"46.41.144.45": ["host-silstop.pl"],
},
country: "Poland",
},
glyph: null,
},
{
style: {
e: 1.5518455739153598,
u: "/images/flags/japan.svg",
type: "node",
t: "Japan",
oc: {
bw: 10,
w: 284,
},
g: [],
hi: false,
bg: false,
d: {
type: "ip",
lookup: {
"203.145.230.194": ["host-best-service.jp"],
"203.189.109.240": ["host-takatei.com"],
"203.189.109.152": ["host-dining-bar.com"],
},
country: "Japan",
},
},
ids: ["203.145.230.194", "203.189.109.240", "203.189.109.152"],
label: "Japan",
d: {
type: "ip",
lookup: {
"203.145.230.194": ["host-best-service.jp"],
"203.189.109.240": ["host-takatei.com"],
"203.189.109.152": ["host-dining-bar.com"],
},
country: "Japan",
},
glyph: null,
},
{
style: {
e: 1,
u: "/images/flags/sweden.svg",
type: "node",
t: "Sweden",
oc: {
bw: 10,
w: 150,
},
g: [],
hi: false,
bg: false,
d: {
type: "ip",
lookup: {
"212.16.182.196": ["host-snibi.se"],
},
country: "Sweden",
},
},
ids: ["212.16.182.196"],
label: "Sweden",
d: {
type: "ip",
lookup: {
"212.16.182.196": ["host-snibi.se"],
},
country: "Sweden",
},
glyph: null,
},
{
style: {
e: 1,
u: "/images/flags/new-zealand.svg",
type: "node",
t: "New Zealand",
oc: {
bw: 10,
w: 138,
},
g: [],
hi: false,
bg: false,
d: {
type: "ip",
lookup: {
"103.40.81.47": ["host-theassemblyguy.co.nz"],
},
country: "New Zealand",
},
},
ids: ["103.40.81.47"],
label: "New Zealand",
d: {
type: "ip",
lookup: {
"103.40.81.47": ["host-theassemblyguy.co.nz"],
},
country: "New Zealand",
},
glyph: null,
},
{
style: {
e: 1.5518455739153598,
u: "/images/flags/vietnam.svg",
type: "node",
t: "Vietnam",
oc: {
bw: 10,
w: 278,
},
g: [],
hi: false,
bg: false,
d: {
type: "ip",
lookup: {
"103.27.60.14": ["host-dongxinh.com"],
"113.52.45.94": ["host-nonnuoccaobang.com"],
"123.30.187.106": ["host-cheapshirts.us"],
},
country: "Vietnam",
},
},
ids: ["103.27.60.14", "113.52.45.94", "123.30.187.106"],
label: "Vietnam",
d: {
type: "ip",
lookup: {
"103.27.60.14": ["host-dongxinh.com"],
"113.52.45.94": ["host-nonnuoccaobang.com"],
"123.30.187.106": ["host-cheapshirts.us"],
},
country: "Vietnam",
},
glyph: null,
},
{
style: {
e: 1,
u: "/images/flags/serbia.svg",
type: "node",
t: "Serbia",
oc: {
bw: 10,
w: 150,
},
g: [],
hi: false,
bg: false,
d: {
type: "ip",
lookup: {
"86.104.134.144": ["host-86.104.134.144"],
},
country: "Serbia",
},
},
ids: ["86.104.134.144"],
label: "Serbia",
d: {
type: "ip",
lookup: {
"86.104.134.144": ["host-86.104.134.144"],
},
country: "Serbia",
},
glyph: null,
},
{
style: {
e: 1.3195079107728942,
u: "/images/flags/china.svg",
type: "node",
t: "China",
oc: {
bw: 10,
w: 224,
},
g: [],
hi: false,
bg: false,
d: {
type: "ip",
lookup: {
"112.124.96.107": ["host-dechehang.com"],
"121.40.201.95": ["host-fun-pop.com"],
},
country: "China",
},
},
ids: ["112.124.96.107", "121.40.201.95"],
label: "China",
d: {
type: "ip",
lookup: {
"112.124.96.107": ["host-dechehang.com"],
"121.40.201.95": ["host-fun-pop.com"],
},
country: "China",
},
glyph: null,
},
{
style: {
e: 1.3195079107728942,
u: "/images/flags/indonesia.svg",
type: "node",
t: "Indonesia",
oc: {
bw: 10,
w: 224,
},
g: [],
hi: false,
bg: false,
d: {
type: "ip",
lookup: {
"203.6.149.68": ["host-d3mpd.fe.uns.ac.id"],
"202.46.129.104": ["host-icsot.na.its.ac.id"],
},
country: "Indonesia",
},
},
ids: ["203.6.149.68", "202.46.129.104"],
label: "Indonesia",
d: {
type: "ip",
lookup: {
"203.6.149.68": ["host-d3mpd.fe.uns.ac.id"],
"202.46.129.104": ["host-icsot.na.its.ac.id"],
},
country: "Indonesia",
},
glyph: null,
},
];
// Used in closed combos, links and open combo borders
export const ransomwareColours = {
TeslaCrypt: "#FF5964",
CryptoWall: "#00BFFF",
Locky: "#A5DF00",
}; <!doctype html>
<html lang="en" style="background-color: #2d383f">
<head>
<meta charset="utf-8" />
<title>Ransomware Attacks</title>
<link rel="stylesheet" type="text/css" href="@ci/theme/kl/css/keylines.css" />
<link rel="stylesheet" type="text/css" href="@ci/theme/kl/css/minimalsdk.css" />
<link rel="stylesheet" type="text/css" href="@ci/theme/kl/css/sdk-layout.css" />
<link rel="stylesheet" type="text/css" href="@ci/theme/kl/css/demo.css" />
<link
rel="stylesheet"
type="text/css"
href="@fortawesome/[email protected]/css/fontawesome.css"
/>
<link
rel="stylesheet"
type="text/css"
href="@fortawesome/[email protected]/css/solid.css"
/>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<div id="klchart" class="klchart klchart-timebar"></div>
<div id="kltimebar" class="kltimebar"></div>
<script type="module" src="./code.js"></script>
</body>
</html> #layoutRun {
margin-top: 0;
}
.checkbox.inline {
vertical-align: middle;
}
.checkbox input[type="checkbox"] {
float: none;
margin-right: 4px;
}
.form-inline * {
margin: 0px;
vertical-align: middle;
}