Scroll and pan the time bar to filter items outside the time range.
To use the time bar as a chart filter, update the app state with items in the time bar range. You can then use the items in range to update the chart state.
See also
import React, { useState } from "react";
import { createRoot } from "react-dom/client";
import mapValues from "lodash/mapValues";
import { Chart, TimeBar } from "regraph";
import sourceData from "./data";
import { style } from "@ci/theme/rg/js/storyStyles";
import "@fortawesome/fontawesome-free/css/fontawesome.css";
import "@fortawesome/fontawesome-free/css/solid.css";
import "@ci/theme/rg/css/layout.css";
const Virus = "/img/virus.png";
const { hasOwnProperty: has } = Object;
const ransomwareColors = {
TeslaCrypt: {
light: style.secondary0.color,
strong: style.secondary2.color,
},
CryptoWall: {
light: style.colors.blueFaded,
strong: style.tertiary2.color,
},
Locky: {
light: style.colors.tealFaded,
strong: style.primary1.color,
},
};
const shouldFadeNode = ({ data }, key, inRange) => {
const { type, host } = data;
if (type === "ip") {
return !host.some((value) => inRange[value]);
}
if (type === "host") {
return !inRange[key];
}
return true;
};
function ComboTimeBar({ items }) {
const [combos, setCombos] = useState({});
const [timeBarLoaded, setTimeBarLoaded] = useState(false);
const [state, setState] = useState({
inRange: items,
selection: {},
layout: { name: "organic", tightness: 5 },
combine: { properties: ["group"] },
});
const setTimeRange = (change) => {
if (change.items) {
// the changed state has all items in the current time range
if (timeBarLoaded) {
// only set the state after the first time bar load
// as the first load will include all items
setState((current) => {
return { ...current, inRange: change.items };
});
}
setTimeBarLoaded(true);
}
};
const timeBarSelection = (selection) => {
let selected = [];
let color = [];
const selectedKeys = Object.keys(selection);
let hostSelected = false;
selectedKeys.forEach((key) => {
if (has.call(combos, key)) {
const { type, nodes, combo } = combos[key];
if (type === "host") {
// a combo is selected
if (!hostSelected) {
selected = [];
color = [];
}
const { group } = combo;
selected.push(nodes);
color.push(ransomwareColors[group].strong);
hostSelected = true;
} else if (!hostSelected) {
// a country is selected
const thisSel = {};
// build an object for the selection prop
Object.keys(nodes).forEach((nodeId) => {
const { host } = nodes[nodeId].data;
host.forEach((hostId) => {
const { data: hostData } = items[hostId];
const { group } = hostData;
thisSel[group] = thisSel[group] || {};
thisSel[group][hostId] = true;
});
});
// add the linked hosts to the time bar selection
Object.keys(thisSel).forEach((group) => {
const selectionIndex = color.indexOf(ransomwareColors[group].strong);
// check to see if selection line already exists
if (selectionIndex > -1) {
selected[selectionIndex] = { ...selected[selectionIndex], ...thisSel[group] };
} else {
selected.push(thisSel[group]);
color.push(ransomwareColors[group].strong);
}
});
}
}
});
return { selected, color };
};
const combineNodesHandler = ({ setStyle, nodes, combo, id }) => {
const nodeValues = Object.values(nodes);
const { data, glyphs } = nodeValues[0];
const { type } = data;
if (!has.call(combos, id)) {
// create combos object to refer to when handling selection
combos[id] = { open: false, nodes, combo, type };
}
const { open } = combos[id];
const { group } = combo;
const colors = ransomwareColors[group];
const comboStyle = {
arrange: "concentric",
open,
label: { text: group },
size: nodeValues.length ** 0.4,
color: type === "host" ? colors.light : style.colors.offWhite,
border: type === "host" ? { width: 10, color: colors.strong } : undefined,
closedStyle: {
image: type === "ip" ? glyphs[0].image : Virus,
color: type === "host" ? colors.strong : style.colors.transparent,
border: {},
label: [{ text: group, position: "s" }],
},
};
if (type === "host") {
const hostColors = ransomwareColors[group];
if (open) {
comboStyle.color = hostColors.light;
comboStyle.border = {
width: 10,
color: hostColors.strong,
};
} else {
comboStyle.color = hostColors.strong;
}
} else if (type === "ip") {
comboStyle.color = open ? style.colors.offWhite : style.colors.transparent;
}
setStyle(comboStyle);
};
const combineLinksHandler = ({ setStyle, links }) => {
const { color } = Object.values(links)[0];
setStyle({
width: Object.values(links).length ** 0.7,
color,
});
};
const changeHandler = ({ selection }) => {
const { selection: lastSelection } = state;
if (selection) {
setState((current) => {
return { ...current, selection: selection || lastSelection };
});
}
};
const doubleClickHandler = ({ id, itemType }) => {
if (itemType === "combo") {
setCombos((current) => {
const { open } = current[id];
return { ...current, [id]: { ...current[id], open: !open } };
});
setState((current) => {
return { ...current, combine: { ...current.combine } };
});
}
};
const layout = () => {
// setting a new layout object will cause a full layout
setState((current) => {
return { ...current, layout: { ...current.layout } };
});
};
// the items with 'times' property are only the 'host' nodes
// if a host is not inRange, then we fade it out
// if an ip has no hosts inRange, then we fade it out
const formatData = (inRange) => {
const formattedItems = mapValues(items, (item, key) => {
const { id1, id2 } = item;
let shouldFade;
if (id1 && id2) {
// it's a link, so we fade it if either of its ends will be faded
shouldFade =
shouldFadeNode(items[id1], id1, inRange) || shouldFadeNode(items[id2], id2, inRange);
} else {
shouldFade = shouldFadeNode(item, key, inRange);
}
return { ...item, fade: shouldFade };
});
return formattedItems;
};
const { inRange, combine, selection } = state;
const { selected, color } = timeBarSelection(selection);
return (
<div className="story">
<div className="options">
<button type="button" onClick={layout}>
Layout
</button>
</div>
<div className="chart-wrapper">
<Chart
style={{ width: "100%", height: "100%" }}
items={ }
combine={combine}
layout={state.layout}
options={{
iconFontFamily: "Font Awesome 5 Free",
marqueeLinkSelection: "off",
selection: { color: style.colors.charcoal },
}}
onChange={changeHandler}
onCombineNodes={combineNodesHandler}
onCombineLinks={combineLinksHandler}
onDoubleClick={doubleClickHandler}
/>
</div>
<TimeBar
items={items}
style={{ width: "100%", height: "100px" }}
onChange={setTimeRange}
options={{
backgroundColor: style.colors.offWhite,
style: { ...style.secondary1 },
}}
selection={selected}
selectionColor={color}
/>
</div>
);
}
const FontReadyChart = React.lazy(() =>
document.fonts.load("900 24px 'Font Awesome 5 Free'").then(() => ({
default: () => <ComboTimeBar items={ } />,
}))
);
export function Demo() {
return (
<React.Suspense fallback="">
<FontReadyChart />
</React.Suspense>
);
}
const root = createRoot(document.getElementById("regraph"));
root.render(<Demo />); const Australia = "/img/flags/australia.svg";
const Brazil = "/img/flags/brazil.svg";
const Britain = "/img/flags/united-kingdom.svg";
const Bulgaria = "/img/flags/bulgaria.svg";
const Chile = "/img/flags/chile.svg";
const China = "/img/flags/china.svg";
const Denmark = "/img/flags/denmark.svg";
const Estonia = "/img/flags/estonia.svg";
const France = "/img/flags/france.svg";
const Germany = "/img/flags/germany.svg";
const Guatemala = "/img/flags/guatemala.svg";
const HongKong = "/img/flags/hong-kong.svg";
const India = "/img/flags/india.svg";
const Indonesia = "/img/flags/indonesia.svg";
const Italy = "/img/flags/italy.svg";
const Japan = "/img/flags/japan.svg";
const Kazakhstan = "/img/flags/kazakhstan.svg";
const Latvia = "/img/flags/latvia.svg";
const Moldova = "/img/flags/moldova.svg";
const Netherlands = "/img/flags/netherlands.svg";
const NewZealand = "/img/flags/new-zealand.svg";
const Poland = "/img/flags/republic-of-poland.svg";
const Portugal = "/img/flags/portugal.svg";
const RepCzech = "/img/flags/czech-republic.svg";
const Romania = "/img/flags/romania.svg";
const Russia = "/img/flags/russia.svg";
const Singapore = "/img/flags/singapore.svg";
const SouthKorea = "/img/flags/south-korea.svg";
const Spain = "/img/flags/spain.svg";
const Sweden = "/img/flags/sweden.svg";
const Thailand = "/img/flags/thailand.svg";
const Turkey = "/img/flags/turkey.svg";
const USA = "/img/flags/united-states-of-america.svg";
const Ukraine = "/img/flags/ukraine.svg";
const Vietnam = "/img/flags/vietnam.svg";
const IPAddress = "/img/ip-address.png";
import { style } from "@ci/theme/rg/js/storyStyles";
function data() {
const items = {
"host-cwprfpjtmjb.biz": {
label: [{ text: "Host\ncwprfpjtmjb.biz", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "USA",
},
size: 1,
times: [{ time: 1461956160000 }],
},
"69.195.129.70": {
label: [{ text: "69.195.129.70", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: [
"host-cwprfpjtmjb.biz",
"host-blxbymhjva.info",
"host-sqrgvbgfyya.org",
"host-dwytqrgblrynsgtew.org",
"host-hmndhdbscgru.pw",
"host-uxvvm.us",
"host-luvenxj.uk",
],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-83.217.8.155": {
label: [{ text: "Host\n83.217.8.155", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Russia",
},
size: 1,
times: [{ time: 1461946860000 }],
},
"83.217.8.155": {
label: [{ text: "83.217.8.155", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Russia",
country: "Russia",
host: ["host-83.217.8.155"],
},
size: 1,
glyphs: [{ image: Russia, position: "ne" }],
},
"host-89.108.84.155": {
label: [{ text: "Host\n89.108.84.155", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Russia",
},
size: 1,
times: [{ time: 1461929940000 }],
},
"89.108.84.155": {
label: [{ text: "89.108.84.155", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Russia",
country: "Russia",
host: ["host-89.108.84.155"],
},
size: 1,
glyphs: [{ image: Russia, position: "ne" }],
},
"host-gmtuae.com": {
label: [{ text: "Host\ngmtuae.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "Singapore",
},
size: 1,
times: [{ time: 1461900480000 }],
},
"182.50.158.108": {
label: [{ text: "182.50.158.108", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Singapore",
country: "Singapore",
host: ["host-gmtuae.com"],
},
size: 1,
glyphs: [{ image: Singapore, position: "ne" }],
},
"host-91.234.32.19": {
label: [{ text: "Host\n91.234.32.19", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Ukraine",
},
size: 1,
times: [{ time: 1461876240000 }],
},
"91.234.32.19": {
label: [{ text: "91.234.32.19", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Ukraine",
country: "Ukraine",
host: ["host-91.234.32.19"],
},
size: 1,
glyphs: [{ image: Ukraine, position: "ne" }],
},
"host-faenzabike.makkie.com": {
label: [{ text: "Host\nfaenzabike.makkie.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "Italy",
},
size: 1,
times: [{ time: 1461873060000 }],
},
"213.26.174.81": {
label: [{ text: "213.26.174.81", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Italy",
country: "Italy",
host: ["host-faenzabike.makkie.com"],
},
size: 1,
glyphs: [{ image: Italy, position: "ne" }],
},
"host-51.254.240.60": {
label: [{ text: "Host\n51.254.240.60", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "France",
},
size: 1,
times: [{ time: 1461862800000 }],
},
"51.254.240.60": {
label: [{ text: "51.254.240.60", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "France",
country: "France",
host: ["host-51.254.240.60"],
},
size: 1,
glyphs: [{ image: France, position: "ne" }],
},
"host-axnemuevqnstqyflb.work": {
label: [{ text: "Host\naxnemuevqnstqyflb.work", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Rep Czech",
},
size: 1,
times: [{ time: 1461858660000 }],
},
"31.148.99.188": {
label: [{ text: "31.148.99.188", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Rep Czech",
country: "Rep Czech",
host: ["host-axnemuevqnstqyflb.work"],
},
size: 1,
glyphs: [{ image: RepCzech, position: "ne" }],
},
"host-83.217.26.168": {
label: [{ text: "Host\n83.217.26.168", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Russia",
},
size: 1,
times: [{ time: 1461852600000 }],
},
"83.217.26.168": {
label: [{ text: "83.217.26.168", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Russia",
country: "Russia",
host: ["host-83.217.26.168"],
},
size: 1,
glyphs: [{ image: Russia, position: "ne" }],
},
"host-bestinghana.com": {
label: [{ text: "Host\nbestinghana.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1461843480000 }],
},
"184.168.51.1": {
label: [{ text: "184.168.51.1", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-bestinghana.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-coolcases.info": {
label: [{ text: "Host\ncoolcases.info", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1461820200000 }],
},
"72.167.232.144": {
label: [{ text: "72.167.232.144", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-coolcases.info"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-htankds.info": {
label: [{ text: "Host\nhtankds.info", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Ukraine",
},
size: 1,
times: [{ time: 1461816000000 }],
},
"91.219.31.18": {
label: [{ text: "91.219.31.18", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Ukraine",
country: "Ukraine",
host: ["host-htankds.info"],
},
size: 1,
glyphs: [{ image: Ukraine, position: "ne" }],
},
"host-107.170.20.33": {
label: [{ text: "Host\n107.170.20.33", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "USA",
},
size: 1,
times: [{ time: 1461784740000 }],
},
"107.170.20.33": {
label: [{ text: "107.170.20.33", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-107.170.20.33"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-runescape-autominer.info": {
label: [{ text: "Host\nrunescape-autominer.info", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1461772260000 }],
},
"192.185.46.61": {
label: [{ text: "192.185.46.61", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-runescape-autominer.info"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-www.teacherassist.info": {
label: [{ text: "Host\nwww.teacherassist.info", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "Netherlands",
},
size: 1,
times: [{ time: 1461768120000 }],
},
"94.124.120.61": {
label: [{ text: "94.124.120.61", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Netherlands",
country: "Netherlands",
host: ["host-www.teacherassist.info"],
},
size: 1,
glyphs: [{ image: Netherlands, position: "ne" }],
},
"host-kortingcodes.be": {
label: [{ text: "Host\nkortingcodes.be", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1461690360000 }],
},
"108.167.181.253": {
label: [{ text: "108.167.181.253", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-kortingcodes.be"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-custommerchandisingservices.com": {
label: [{ text: "Host\ncustommerchandisingservices.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1461647280000 }],
},
"45.79.161.27": {
label: [{ text: "45.79.161.27", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-custommerchandisingservices.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-bonjourtablier.com": {
label: [{ text: "Host\nbonjourtablier.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "Germany",
},
size: 1,
times: [{ time: 1461442680000 }],
},
"212.227.247.229": {
label: [{ text: "212.227.247.229", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Germany",
country: "Germany",
host: ["host-bonjourtablier.com"],
},
size: 1,
glyphs: [{ image: Germany, position: "ne" }],
},
"host-blackroom.club": {
label: [{ text: "Host\nblackroom.club", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "Russia",
},
size: 1,
times: [{ time: 1461370680000 }],
},
"81.177.135.232": {
label: [{ text: "81.177.135.232", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Russia",
country: "Russia",
host: ["host-blackroom.club"],
},
size: 1,
glyphs: [{ image: Russia, position: "ne" }],
},
"host-artsabc.com": {
label: [{ text: "Host\nartsabc.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1461274500000 }],
},
"204.12.208.74": {
label: [{ text: "204.12.208.74", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-artsabc.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-blessingshealthuk.com": {
label: [{ text: "Host\nblessingshealthuk.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1461274500000 }],
},
"107.180.50.165": {
label: [{ text: "107.180.50.165", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-blessingshealthuk.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-anybug.net": {
label: [{ text: "Host\nanybug.net", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "France",
},
size: 1,
times: [{ time: 1461180240000 }],
},
"78.217.205.113": {
label: [{ text: "78.217.205.113", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "France",
country: "France",
host: ["host-anybug.net"],
},
size: 1,
glyphs: [{ image: France, position: "ne" }],
},
"host-alushtadom.com": {
label: [{ text: "Host\nalushtadom.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "Russia",
},
size: 1,
times: [{ time: 1461130920000 }],
},
"81.177.140.186": {
label: [{ text: "81.177.140.186", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Russia",
country: "Russia",
host: ["host-alushtadom.com"],
},
size: 1,
glyphs: [{ image: Russia, position: "ne" }],
},
"host-blxbymhjva.info": {
label: [{ text: "Host\nblxbymhjva.info", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "USA",
},
size: 1,
times: [{ time: 1461076140000 }],
},
"host-ahsqbeospcdrngfv.info": {
label: [{ text: "Host\nahsqbeospcdrngfv.info", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Portugal",
},
size: 1,
times: [{ time: 1461036300000 }],
},
"195.22.28.198": {
label: [{ text: "195.22.28.198", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Portugal",
country: "Portugal",
host: [
"host-ahsqbeospcdrngfv.info",
"host-jghbktqepe.pw",
"host-gsebqsi.ru",
"host-ywjgjvpuyitnbiw.info",
"host-kypsuw.pw",
"host-kqlxtqptsmys.in",
],
},
size: 1,
glyphs: [{ image: Portugal, position: "ne" }],
},
"host-cxlgwofgrjfoaa.info": {
label: [{ text: "Host\ncxlgwofgrjfoaa.info", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Portugal",
},
size: 1,
times: [{ time: 1461036240000 }],
},
"195.22.28.197": {
label: [{ text: "195.22.28.197", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Portugal",
country: "Portugal",
host: [
"host-cxlgwofgrjfoaa.info",
"host-barjhxoye.info",
"host-glhxgchhfemcjgr.pw",
"host-fitga.ru",
"host-wdvxeval.ru",
"host-bnjhx.eu",
],
},
size: 1,
glyphs: [{ image: Portugal, position: "ne" }],
},
"host-91.234.35.243": {
label: [{ text: "Host\n91.234.35.243", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Ukraine",
},
size: 1,
times: [{ time: 1460970000000 }],
},
"91.234.35.243": {
label: [{ text: "91.234.35.243", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Ukraine",
country: "Ukraine",
host: ["host-91.234.35.243"],
},
size: 1,
glyphs: [{ image: Ukraine, position: "ne" }],
},
"host-4turka.com": {
label: [{ text: "Host\n4turka.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "Turkey",
},
size: 1,
times: [{ time: 1460953560000 }],
},
"185.12.108.138": {
label: [{ text: "185.12.108.138", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Turkey",
country: "Turkey",
host: ["host-4turka.com"],
},
size: 1,
glyphs: [{ image: Turkey, position: "ne" }],
},
"host-185.14.28.30": {
label: [{ text: "Host\n185.14.28.30", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Netherlands",
},
size: 1,
times: [{ time: 1460901960000 }],
},
"185.14.28.30": {
label: [{ text: "185.14.28.30", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Netherlands",
country: "Netherlands",
host: ["host-185.14.28.30"],
},
size: 1,
glyphs: [{ image: Netherlands, position: "ne" }],
},
"host-31.184.196.74": {
label: [{ text: "Host\n31.184.196.74", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Russia",
},
size: 1,
times: [{ time: 1460872140000 }],
},
"31.184.196.74": {
label: [{ text: "31.184.196.74", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Russia",
country: "Russia",
host: ["host-31.184.196.74"],
},
size: 1,
glyphs: [{ image: Russia, position: "ne" }],
},
"host-91.230.211.103": {
label: [{ text: "Host\n91.230.211.103", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Russia",
},
size: 1,
times: [{ time: 1460872140000 }],
},
"91.230.211.103": {
label: [{ text: "91.230.211.103", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Russia",
country: "Russia",
host: ["host-91.230.211.103"],
},
size: 1,
glyphs: [{ image: Russia, position: "ne" }],
},
"host-91.219.29.81": {
label: [{ text: "Host\n91.219.29.81", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Ukraine",
},
size: 1,
times: [{ time: 1460866020000 }],
},
"91.219.29.81": {
label: [{ text: "91.219.29.81", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Ukraine",
country: "Ukraine",
host: ["host-91.219.29.81"],
},
size: 1,
glyphs: [{ image: Ukraine, position: "ne" }],
},
"host-jghbktqepe.pw": {
label: [{ text: "Host\njghbktqepe.pw", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Portugal",
},
size: 1,
times: [{ time: 1460821320000 }],
},
"host-lorangeriedelareine.fr": {
label: [{ text: "Host\nlorangeriedelareine.fr", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "France",
},
size: 1,
times: [{ time: 1460742780000 }],
},
"62.210.116.247": {
label: [{ text: "62.210.116.247", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "France",
country: "France",
host: ["host-lorangeriedelareine.fr"],
},
size: 1,
glyphs: [{ image: France, position: "ne" }],
},
"host-gfcuxnaek.ru": {
label: [{ text: "Host\ngfcuxnaek.ru", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Portugal",
},
size: 1,
times: [{ time: 1460713140000 }],
},
"195.22.28.199": {
label: [{ text: "195.22.28.199", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Portugal",
country: "Portugal",
host: [
"host-gfcuxnaek.ru",
"host-ampjsppmftmfdblpt.info",
"host-kcdfajaxngiff.info",
"host-bqbbsfdw.be",
"host-jxqdry.ru",
"host-svkjhguk.ru",
],
},
size: 1,
glyphs: [{ image: Portugal, position: "ne" }],
},
"host-uhhvhjqowpgopq.xyz": {
label: [{ text: "Host\nuhhvhjqowpgopq.xyz", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "USA",
},
size: 1,
times: [{ time: 1460713140000 }],
},
"208.100.26.234": {
label: [{ text: "208.100.26.234", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: [
"host-uhhvhjqowpgopq.xyz",
"host-omeaswslhgdw.xyz",
"host-swfqg.in",
"host-plfbvdrpvsm.pw",
],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-ampjsppmftmfdblpt.info": {
label: [{ text: "Host\nampjsppmftmfdblpt.info", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Portugal",
},
size: 1,
times: [{ time: 1460627760000 }],
},
"host-207.244.97.230": {
label: [{ text: "Host\n207.244.97.230", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "USA",
},
size: 1,
times: [{ time: 1460596920000 }],
},
"207.244.97.230": {
label: [{ text: "207.244.97.230", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-207.244.97.230"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-46.165.253.93": {
label: [{ text: "Host\n46.165.253.93", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Germany",
},
size: 1,
times: [{ time: 1460573160000 }],
},
"46.165.253.93": {
label: [{ text: "46.165.253.93", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Germany",
country: "Germany",
host: ["host-46.165.253.93"],
},
size: 1,
glyphs: [{ image: Germany, position: "ne" }],
},
"host-thinktrimbebeautiful.com.au": {
label: [{ text: "Host\nthinktrimbebeautiful.com.au", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "Singapore",
},
size: 1,
times: [{ time: 1460563500000 }],
},
"182.50.149.1": {
label: [{ text: "182.50.149.1", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Singapore",
country: "Singapore",
host: ["host-thinktrimbebeautiful.com.au"],
},
size: 1,
glyphs: [{ image: Singapore, position: "ne" }],
},
"host-baby.teasso.com": {
label: [{ text: "Host\nbaby.teasso.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1460559900000 }],
},
"162.210.102.32": {
label: [{ text: "162.210.102.32", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-baby.teasso.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-helcel.com": {
label: [{ text: "Host\nhelcel.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1460474220000 }],
},
"72.41.18.2": {
label: [{ text: "72.41.18.2", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-helcel.com", "host-onguso.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-loseweightwithmysite.com": {
label: [{ text: "Host\nloseweightwithmysite.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1460435040000 }],
},
"74.220.207.112": {
label: [{ text: "74.220.207.112", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-loseweightwithmysite.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-nhhyxorxbxarxe.org": {
label: [{ text: "Host\nnhhyxorxbxarxe.org", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Portugal",
},
size: 1,
times: [{ time: 1460434620000 }],
},
"195.22.28.196": {
label: [{ text: "195.22.28.196", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Portugal",
country: "Portugal",
host: [
"host-nhhyxorxbxarxe.org",
"host-xyhhuxa.be",
"host-cudcfybkk.pw",
"host-gvludcvhcrjwmgq.in",
],
},
size: 1,
glyphs: [{ image: Portugal, position: "ne" }],
},
"host-gsebqsi.ru": {
label: [{ text: "Host\ngsebqsi.ru", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Portugal",
},
size: 1,
times: [{ time: 1460405280000 }],
},
"host-onguso.com": {
label: [{ text: "Host\nonguso.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1460388780000 }],
},
"host-ywjgjvpuyitnbiw.info": {
label: [{ text: "Host\nywjgjvpuyitnbiw.info", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Portugal",
},
size: 1,
times: [{ time: 1460374560000 }],
},
"host-kcdfajaxngiff.info": {
label: [{ text: "Host\nkcdfajaxngiff.info", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Portugal",
},
size: 1,
times: [{ time: 1460368020000 }],
},
"host-omeaswslhgdw.xyz": {
label: [{ text: "Host\nomeaswslhgdw.xyz", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "USA",
},
size: 1,
times: [{ time: 1460368020000 }],
},
"host-91.219.31.15": {
label: [{ text: "Host\n91.219.31.15", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Ukraine",
},
size: 1,
times: [{ time: 1460352840000 }],
},
"91.219.31.15": {
label: [{ text: "91.219.31.15", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Ukraine",
country: "Ukraine",
host: ["host-91.219.31.15"],
},
size: 1,
glyphs: [{ image: Ukraine, position: "ne" }],
},
"host-silocot.com": {
label: [{ text: "Host\nsilocot.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "France",
},
size: 1,
times: [{ time: 1460348460000 }],
},
"62.210.88.33": {
label: [{ text: "62.210.88.33", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "France",
country: "France",
host: ["host-silocot.com"],
},
size: 1,
glyphs: [{ image: France, position: "ne" }],
},
"host-gooseart.com": {
label: [{ text: "Host\ngooseart.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "Denmark",
},
size: 1,
times: [{ time: 1460266080000 }],
},
"195.128.174.143": {
label: [{ text: "195.128.174.143", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Denmark",
country: "Denmark",
host: ["host-gooseart.com"],
},
size: 1,
glyphs: [{ image: Denmark, position: "ne" }],
},
"host-88.214.237.57": {
label: [{ text: "Host\n88.214.237.57", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Russia",
},
size: 1,
times: [{ time: 1460219760000 }],
},
"88.214.237.57": {
label: [{ text: "88.214.237.57", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Russia",
country: "Russia",
host: ["host-88.214.237.57"],
},
size: 1,
glyphs: [{ image: Russia, position: "ne" }],
},
"host-91.219.28.44": {
label: [{ text: "Host\n91.219.28.44", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Netherlands",
},
size: 1,
times: [{ time: 1460211960000 }],
},
"91.219.28.44": {
label: [{ text: "91.219.28.44", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Netherlands",
country: "Netherlands",
host: ["host-91.219.28.44"],
},
size: 1,
glyphs: [{ image: Netherlands, position: "ne" }],
},
"host-bluedreambd.com": {
label: [{ text: "Host\nbluedreambd.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1460132040000 }],
},
"192.185.174.198": {
label: [{ text: "192.185.174.198", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-bluedreambd.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-colinmccarthynfl.com": {
label: [{ text: "Host\ncolinmccarthynfl.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1460118660000 }],
},
"50.62.250.1": {
label: [{ text: "50.62.250.1", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-colinmccarthynfl.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-193.9.28.49": {
label: [{ text: "Host\n193.9.28.49", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "USA",
},
size: 1,
times: [{ time: 1460118420000 }],
},
"193.9.28.49": {
label: [{ text: "193.9.28.49", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-193.9.28.49"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-37.139.2.214": {
label: [{ text: "Host\n37.139.2.214", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Netherlands",
},
size: 1,
times: [{ time: 1460058120000 }],
},
"37.139.2.214": {
label: [{ text: "37.139.2.214", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Netherlands",
country: "Netherlands",
host: ["host-37.139.2.214"],
},
size: 1,
glyphs: [{ image: Netherlands, position: "ne" }],
},
"host-43nutrientes.com": {
label: [{ text: "Host\n43nutrientes.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1460008140000 }],
},
"50.87.149.41": {
label: [{ text: "50.87.149.41", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-43nutrientes.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-getdiscounts.org": {
label: [{ text: "Host\ngetdiscounts.org", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1460008140000 }],
},
"205.144.171.76": {
label: [{ text: "205.144.171.76", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-getdiscounts.org"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-naomihawkins.com": {
label: [{ text: "Host\nnaomihawkins.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1460008140000 }],
},
"50.63.97.1": {
label: [{ text: "50.63.97.1", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-naomihawkins.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-traditions-and-custom.com": {
label: [{ text: "Host\ntraditions-and-custom.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1459958040000 }],
},
"72.41.18.212": {
label: [{ text: "72.41.18.212", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-traditions-and-custom.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-closerdaybyday.info": {
label: [{ text: "Host\ncloserdaybyday.info", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1459933260000 }],
},
"192.185.151.39": {
label: [{ text: "192.185.151.39", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-closerdaybyday.info"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-coldheartedny.com": {
label: [{ text: "Host\ncoldheartedny.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1459868400000 }],
},
"107.180.26.75": {
label: [{ text: "107.180.26.75", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-coldheartedny.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-31.148.99.241": {
label: [{ text: "Host\n31.148.99.241", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Rep Czech",
},
size: 1,
times: [{ time: 1459861320000 }],
},
"31.148.99.241": {
label: [{ text: "31.148.99.241", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Rep Czech",
country: "Rep Czech",
host: ["host-31.148.99.241"],
},
size: 1,
glyphs: [{ image: RepCzech, position: "ne" }],
},
"host-helpdesk.keldon.info": {
label: [{ text: "Host\nhelpdesk.keldon.info", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "Rep Czech",
},
size: 1,
times: [{ time: 1459860120000 }],
},
"194.228.3.204": {
label: [{ text: "194.228.3.204", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Rep Czech",
country: "Rep Czech",
host: ["host-helpdesk.keldon.info", "host-opravnatramvaji.cz"],
},
size: 1,
glyphs: [{ image: RepCzech, position: "ne" }],
},
"host-addagapublicschool.com": {
label: [{ text: "Host\naddagapublicschool.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1459844940000 }],
},
"23.229.239.227": {
label: [{ text: "23.229.239.227", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-addagapublicschool.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-thejonesact.com": {
label: [{ text: "Host\nthejonesact.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1459776120000 }],
},
"192.186.220.8": {
label: [{ text: "192.186.220.8", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-thejonesact.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-studiosundaytv.com": {
label: [{ text: "Host\nstudiosundaytv.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1459761600000 }],
},
"76.162.168.113": {
label: [{ text: "76.162.168.113", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-studiosundaytv.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-theoneflooring.com": {
label: [{ text: "Host\ntheoneflooring.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1459761600000 }],
},
"107.180.4.122": {
label: [{ text: "107.180.4.122", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-theoneflooring.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-goldberg-share.com": {
label: [{ text: "Host\ngoldberg-share.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1459592520000 }],
},
"107.180.43.132": {
label: [{ text: "107.180.43.132", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-goldberg-share.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-91.223.180.240": {
label: [{ text: "Host\n91.223.180.240", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Ukraine",
},
size: 1,
times: [{ time: 1459573800000 }],
},
"91.223.180.240": {
label: [{ text: "91.223.180.240", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Ukraine",
country: "Ukraine",
host: ["host-91.223.180.240"],
},
size: 1,
glyphs: [{ image: Ukraine, position: "ne" }],
},
"host-45.55.192.133": {
label: [{ text: "Host\n45.55.192.133", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "USA",
},
size: 1,
times: [{ time: 1459541640000 }],
},
"45.55.192.133": {
label: [{ text: "45.55.192.133", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-45.55.192.133"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-hotcasinogames.org": {
label: [{ text: "Host\nhotcasinogames.org", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "France",
},
size: 1,
times: [{ time: 1459536540000 }],
},
"217.70.180.150": {
label: [{ text: "217.70.180.150", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "France",
country: "France",
host: ["host-hotcasinogames.org"],
},
size: 1,
glyphs: [{ image: France, position: "ne" }],
},
"host-91.209.77.86": {
label: [{ text: "Host\n91.209.77.86", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Rep Czech",
},
size: 1,
times: [{ time: 1459528740000 }],
},
"91.209.77.86": {
label: [{ text: "91.209.77.86", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Rep Czech",
country: "Rep Czech",
host: ["host-91.209.77.86"],
},
size: 1,
glyphs: [{ image: RepCzech, position: "ne" }],
},
"host-88.198.119.177": {
label: [{ text: "Host\n88.198.119.177", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Germany",
},
size: 1,
times: [{ time: 1459462860000 }],
},
"88.198.119.177": {
label: [{ text: "88.198.119.177", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Germany",
country: "Germany",
host: ["host-88.198.119.177"],
},
size: 1,
glyphs: [{ image: Germany, position: "ne" }],
},
"host-forms.net.in": {
label: [{ text: "Host\nforms.net.in", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1459453980000 }],
},
"160.153.51.192": {
label: [{ text: "160.153.51.192", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-forms.net.in", "host-csskol.org"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-kknk-shop.dev.onnetdigital.com": {
label: [{ text: "Host\nkknk-shop.dev.onnetdigital.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "Germany",
},
size: 1,
times: [{ time: 1459453980000 }],
},
"176.9.2.244": {
label: [{ text: "176.9.2.244", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Germany",
country: "Germany",
host: ["host-kknk-shop.dev.onnetdigital.com"],
},
size: 1,
glyphs: [{ image: Germany, position: "ne" }],
},
"host-mahmutersan.com.tr": {
label: [{ text: "Host\nmahmutersan.com.tr", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1459453980000 }],
},
"160.153.18.235": {
label: [{ text: "160.153.18.235", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-mahmutersan.com.tr"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-barjhxoye.info": {
label: [{ text: "Host\nbarjhxoye.info", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Portugal",
},
size: 1,
times: [{ time: 1459452360000 }],
},
"host-sqrgvbgfyya.org": {
label: [{ text: "Host\nsqrgvbgfyya.org", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "USA",
},
size: 1,
times: [{ time: 1459452360000 }],
},
"host-81.177.181.164": {
label: [{ text: "Host\n81.177.181.164", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Russia",
},
size: 1,
times: [{ time: 1459451160000 }],
},
"81.177.181.164": {
label: [{ text: "81.177.181.164", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Russia",
country: "Russia",
host: ["host-81.177.181.164"],
},
size: 1,
glyphs: [{ image: Russia, position: "ne" }],
},
"host-casasembargada.com": {
label: [{ text: "Host\ncasasembargada.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1459437060000 }],
},
"23.229.166.194": {
label: [{ text: "23.229.166.194", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-casasembargada.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-dwytqrgblrynsgtew.org": {
label: [{ text: "Host\ndwytqrgblrynsgtew.org", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "USA",
},
size: 1,
times: [{ time: 1459429140000 }],
},
"host-csskol.org": {
label: [{ text: "Host\ncsskol.org", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1459427820000 }],
},
"host-31.41.44.130": {
label: [{ text: "Host\n31.41.44.130", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Russia",
},
size: 1,
times: [{ time: 1459398540000 }],
},
"31.41.44.130": {
label: [{ text: "31.41.44.130", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Russia",
country: "Russia",
host: ["host-31.41.44.130"],
},
size: 1,
glyphs: [{ image: Russia, position: "ne" }],
},
"host-51.254.240.45": {
label: [{ text: "Host\n51.254.240.45", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "France",
},
size: 1,
times: [{ time: 1459398480000 }],
},
"51.254.240.45": {
label: [{ text: "51.254.240.45", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "France",
country: "France",
host: ["host-51.254.240.45"],
},
size: 1,
glyphs: [{ image: France, position: "ne" }],
},
"host-82.146.37.200": {
label: [{ text: "Host\n82.146.37.200", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Russia",
},
size: 1,
times: [{ time: 1459371960000 }],
},
"82.146.37.200": {
label: [{ text: "82.146.37.200", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Russia",
country: "Russia",
host: ["host-82.146.37.200"],
},
size: 1,
glyphs: [{ image: Russia, position: "ne" }],
},
"host-grosirkecantikan.com": {
label: [{ text: "Host\ngrosirkecantikan.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1459349640000 }],
},
"192.185.51.87": {
label: [{ text: "192.185.51.87", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-grosirkecantikan.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-93.170.131.108": {
label: [{ text: "Host\n93.170.131.108", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Russia",
},
size: 1,
times: [{ time: 1459342920000 }],
},
"93.170.131.108": {
label: [{ text: "93.170.131.108", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Russia",
country: "Russia",
host: ["host-93.170.131.108"],
},
size: 1,
glyphs: [{ image: Russia, position: "ne" }],
},
"host-naturstein-schubert.de": {
label: [{ text: "Host\nnaturstein-schubert.de", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "Germany",
},
size: 1,
times: [{ time: 1459338840000 }],
},
"91.250.80.97": {
label: [{ text: "91.250.80.97", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Germany",
country: "Germany",
host: ["host-naturstein-schubert.de"],
},
size: 1,
glyphs: [{ image: Germany, position: "ne" }],
},
"host-83.217.25.239": {
label: [{ text: "Host\n83.217.25.239", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Russia",
},
size: 1,
times: [{ time: 1459328400000 }],
},
"83.217.25.239": {
label: [{ text: "83.217.25.239", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Russia",
country: "Russia",
host: ["host-83.217.25.239"],
},
size: 1,
glyphs: [{ image: Russia, position: "ne" }],
},
"host-vtc360.com": {
label: [{ text: "Host\nvtc360.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1459291380000 }],
},
"107.180.34.199": {
label: [{ text: "107.180.34.199", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-vtc360.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-estudiobarco.com.ar": {
label: [{ text: "Host\nestudiobarco.com.ar", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "USA",
},
size: 1,
times: [{ time: 1459271940000 }],
},
"50.22.11.55": {
label: [{ text: "50.22.11.55", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-estudiobarco.com.ar"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-5.135.76.18": {
label: [{ text: "Host\n5.135.76.18", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "France",
},
size: 1,
times: [{ time: 1459265160000 }],
},
"5.135.76.18": {
label: [{ text: "5.135.76.18", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "France",
country: "France",
host: ["host-5.135.76.18"],
},
size: 1,
glyphs: [{ image: France, position: "ne" }],
},
"host-109.234.35.128": {
label: [{ text: "Host\n109.234.35.128", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Russia",
},
size: 1,
times: [{ time: 1459254660000 }],
},
"109.234.35.128": {
label: [{ text: "109.234.35.128", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Russia",
country: "Russia",
host: ["host-109.234.35.128"],
},
size: 1,
glyphs: [{ image: Russia, position: "ne" }],
},
"host-starsoftheworld.org": {
label: [{ text: "Host\nstarsoftheworld.org", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1459252740000 }],
},
"166.62.28.102": {
label: [{ text: "166.62.28.102", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-starsoftheworld.org"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-185.75.46.4": {
label: [{ text: "Host\n185.75.46.4", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Russia",
},
size: 1,
times: [{ time: 1459249140000 }],
},
"185.75.46.4": {
label: [{ text: "185.75.46.4", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Russia",
country: "Russia",
host: ["host-185.75.46.4"],
},
size: 1,
glyphs: [{ image: Russia, position: "ne" }],
},
"host-83.217.8.127": {
label: [{ text: "Host\n83.217.8.127", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Russia",
},
size: 1,
times: [{ time: 1459248240000 }],
},
"83.217.8.127": {
label: [{ text: "83.217.8.127", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Russia",
country: "Russia",
host: ["host-83.217.8.127"],
},
size: 1,
glyphs: [{ image: Russia, position: "ne" }],
},
"host-78.46.170.79": {
label: [{ text: "Host\n78.46.170.79", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Germany",
},
size: 1,
times: [{ time: 1459234980000 }],
},
"78.46.170.79": {
label: [{ text: "78.46.170.79", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Germany",
country: "Germany",
host: ["host-78.46.170.79"],
},
size: 1,
glyphs: [{ image: Germany, position: "ne" }],
},
"host-185.141.25.150": {
label: [{ text: "Host\n185.141.25.150", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Netherlands",
},
size: 1,
times: [{ time: 1459234020000 }],
},
"185.141.25.150": {
label: [{ text: "185.141.25.150", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Netherlands",
country: "Netherlands",
host: ["host-185.141.25.150"],
},
size: 1,
glyphs: [{ image: Netherlands, position: "ne" }],
},
"host-holishit.in": {
label: [{ text: "Host\nholishit.in", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1459185180000 }],
},
"160.153.63.4": {
label: [{ text: "160.153.63.4", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-holishit.in"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-91.200.14.73": {
label: [{ text: "Host\n91.200.14.73", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Ukraine",
},
size: 1,
times: [{ time: 1459174920000 }],
},
"91.200.14.73": {
label: [{ text: "91.200.14.73", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Ukraine",
country: "Ukraine",
host: ["host-91.200.14.73"],
},
size: 1,
glyphs: [{ image: Ukraine, position: "ne" }],
},
"host-92.63.87.134": {
label: [{ text: "Host\n92.63.87.134", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Latvia",
},
size: 1,
times: [{ time: 1459174920000 }],
},
"92.63.87.134": {
label: [{ text: "92.63.87.134", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Latvia",
country: "Latvia",
host: ["host-92.63.87.134"],
},
size: 1,
glyphs: [{ image: Latvia, position: "ne" }],
},
"host-minteee.com": {
label: [{ text: "Host\nminteee.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "Germany",
},
size: 1,
times: [{ time: 1459156020000 }],
},
"178.254.0.121": {
label: [{ text: "178.254.0.121", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Germany",
country: "Germany",
host: ["host-minteee.com"],
},
size: 1,
glyphs: [{ image: Germany, position: "ne" }],
},
"host-84.19.170.249": {
label: [{ text: "Host\n84.19.170.249", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Germany",
},
size: 1,
times: [{ time: 1459130040000 }],
},
"84.19.170.249": {
label: [{ text: "84.19.170.249", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Germany",
country: "Germany",
host: ["host-84.19.170.249"],
},
size: 1,
glyphs: [{ image: Germany, position: "ne" }],
},
"host-176.31.47.100": {
label: [{ text: "Host\n176.31.47.100", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "France",
},
size: 1,
times: [{ time: 1459096620000 }],
},
"176.31.47.100": {
label: [{ text: "176.31.47.100", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "France",
country: "France",
host: ["host-176.31.47.100"],
},
size: 1,
glyphs: [{ image: France, position: "ne" }],
},
"host-185.117.72.94": {
label: [{ text: "Host\n185.117.72.94", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Netherlands",
},
size: 1,
times: [{ time: 1459096620000 }],
},
"185.117.72.94": {
label: [{ text: "185.117.72.94", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Netherlands",
country: "Netherlands",
host: ["host-185.117.72.94"],
},
size: 1,
glyphs: [{ image: Netherlands, position: "ne" }],
},
"host-asianbooty.net": {
label: [{ text: "Host\nasianbooty.net", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1459072500000 }],
},
"107.180.50.230": {
label: [{ text: "107.180.50.230", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-asianbooty.net"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-89.108.84.132": {
label: [{ text: "Host\n89.108.84.132", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Russia",
},
size: 1,
times: [{ time: 1458990960000 }],
},
"89.108.84.132": {
label: [{ text: "89.108.84.132", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Russia",
country: "Russia",
host: ["host-89.108.84.132"],
},
size: 1,
glyphs: [{ image: Russia, position: "ne" }],
},
"host-strategicdisaster.info": {
label: [{ text: "Host\nstrategicdisaster.info", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1458932520000 }],
},
"192.186.197.161": {
label: [{ text: "192.186.197.161", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-strategicdisaster.info"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-www.affiliateproductes.com": {
label: [{ text: "Host\nwww.affiliateproductes.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1458932520000 }],
},
"107.180.4.124": {
label: [{ text: "107.180.4.124", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-www.affiliateproductes.com", "host-affiliateproductes.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-affiliateproductes.com": {
label: [{ text: "Host\naffiliateproductes.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1458923340000 }],
},
"host-bwpegsfa.info": {
label: [{ text: "Host\nbwpegsfa.info", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "USA",
},
size: 1,
times: [{ time: 1458922260000 }],
},
"45.56.77.175": {
label: [{ text: "45.56.77.175", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-bwpegsfa.info", "host-fnarsipfqe.pw", "host-sdwempsovemtr.yt"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-swfqg.in": {
label: [{ text: "Host\nswfqg.in", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "USA",
},
size: 1,
times: [{ time: 1458906480000 }],
},
"host-xyhhuxa.be": {
label: [{ text: "Host\nxyhhuxa.be", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Portugal",
},
size: 1,
times: [{ time: 1458906480000 }],
},
"host-hmndhdbscgru.pw": {
label: [{ text: "Host\nhmndhdbscgru.pw", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "USA",
},
size: 1,
times: [{ time: 1458903240000 }],
},
"host-uhgmnigjpf.biz": {
label: [{ text: "Host\nuhgmnigjpf.biz", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Netherlands",
},
size: 1,
times: [{ time: 1458903240000 }],
},
"93.170.104.127": {
label: [{ text: "93.170.104.127", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Netherlands",
country: "Netherlands",
host: ["host-uhgmnigjpf.biz"],
},
size: 1,
glyphs: [{ image: Netherlands, position: "ne" }],
},
"host-videoaminproduktion.de": {
label: [{ text: "Host\nvideoaminproduktion.de", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "Germany",
},
size: 1,
times: [{ time: 1458853440000 }],
},
"87.238.192.67": {
label: [{ text: "87.238.192.67", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Germany",
country: "Germany",
host: ["host-videoaminproduktion.de"],
},
size: 1,
glyphs: [{ image: Germany, position: "ne" }],
},
"host-mcgroupuae.com": {
label: [{ text: "Host\nmcgroupuae.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1458829920000 }],
},
"166.62.28.147": {
label: [{ text: "166.62.28.147", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-mcgroupuae.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-46.8.44.39": {
label: [{ text: "Host\n46.8.44.39", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Russia",
},
size: 1,
times: [{ time: 1458828480000 }],
},
"46.8.44.39": {
label: [{ text: "46.8.44.39", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Russia",
country: "Russia",
host: ["host-46.8.44.39"],
},
size: 1,
glyphs: [{ image: Russia, position: "ne" }],
},
"host-pilfingr.com": {
label: [{ text: "Host\npilfingr.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1458817320000 }],
},
"192.186.208.225": {
label: [{ text: "192.186.208.225", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-pilfingr.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-setprosports.info": {
label: [{ text: "Host\nsetprosports.info", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1458809280000 }],
},
"198.12.157.163": {
label: [{ text: "198.12.157.163", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-setprosports.info"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-marvel-games.com": {
label: [{ text: "Host\nmarvel-games.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1458809100000 }],
},
"167.160.162.182": {
label: [{ text: "167.160.162.182", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-marvel-games.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-217.12.218.158": {
label: [{ text: "Host\n217.12.218.158", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Ukraine",
},
size: 1,
times: [{ time: 1458752460000 }],
},
"217.12.218.158": {
label: [{ text: "217.12.218.158", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Ukraine",
country: "Ukraine",
host: ["host-217.12.218.158"],
},
size: 1,
glyphs: [{ image: Ukraine, position: "ne" }],
},
"host-84.19.170.244": {
label: [{ text: "Host\n84.19.170.244", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Germany",
},
size: 1,
times: [{ time: 1458735600000 }],
},
"84.19.170.244": {
label: [{ text: "84.19.170.244", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Germany",
country: "Germany",
host: ["host-84.19.170.244"],
},
size: 1,
glyphs: [{ image: Germany, position: "ne" }],
},
"host-maxmpl.com": {
label: [{ text: "Host\nmaxmpl.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "India",
},
size: 1,
times: [{ time: 1458734400000 }],
},
"103.27.87.88": {
label: [{ text: "103.27.87.88", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "India",
country: "India",
host: ["host-maxmpl.com"],
},
size: 1,
glyphs: [{ image: India, position: "ne" }],
},
"host-samuday.org": {
label: [{ text: "Host\nsamuday.org", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1458734400000 }],
},
"50.31.14.17": {
label: [{ text: "50.31.14.17", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-samuday.org"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-diwali2k15.in": {
label: [{ text: "Host\ndiwali2k15.in", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1458667020000 }],
},
"64.20.35.186": {
label: [{ text: "64.20.35.186", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-diwali2k15.in"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-195.64.154.126": {
label: [{ text: "Host\n195.64.154.126", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Ukraine",
},
size: 1,
times: [{ time: 1458649920000 }],
},
"195.64.154.126": {
label: [{ text: "195.64.154.126", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Ukraine",
country: "Ukraine",
host: ["host-195.64.154.126"],
},
size: 1,
glyphs: [{ image: Ukraine, position: "ne" }],
},
"host-masterlegue.com": {
label: [{ text: "Host\nmasterlegue.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "France",
},
size: 1,
times: [{ time: 1458649260000 }],
},
"62.210.83.56": {
label: [{ text: "62.210.83.56", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "France",
country: "France",
host: ["host-masterlegue.com"],
},
size: 1,
glyphs: [{ image: France, position: "ne" }],
},
"host-toolaria.com": {
label: [{ text: "Host\ntoolaria.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1458645060000 }],
},
"160.153.49.102": {
label: [{ text: "160.153.49.102", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-toolaria.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-92.63.87.106": {
label: [{ text: "Host\n92.63.87.106", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Latvia",
},
size: 1,
times: [{ time: 1458635100000 }],
},
"92.63.87.106": {
label: [{ text: "92.63.87.106", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Latvia",
country: "Latvia",
host: ["host-92.63.87.106"],
},
size: 1,
glyphs: [{ image: Latvia, position: "ne" }],
},
"host-tradinbow.com": {
label: [{ text: "Host\ntradinbow.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "France",
},
size: 1,
times: [{ time: 1458568200000 }],
},
"213.186.33.104": {
label: [{ text: "213.186.33.104", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "France",
country: "France",
host: ["host-tradinbow.com"],
},
size: 1,
glyphs: [{ image: France, position: "ne" }],
},
"host-217.12.199.90": {
label: [{ text: "Host\n217.12.199.90", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Ukraine",
},
size: 1,
times: [{ time: 1458565380000 }],
},
"217.12.199.90": {
label: [{ text: "217.12.199.90", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Ukraine",
country: "Ukraine",
host: ["host-217.12.199.90"],
},
size: 1,
glyphs: [{ image: Ukraine, position: "ne" }],
},
"host-nwcpgymgh.work": {
label: [{ text: "Host\nnwcpgymgh.work", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Ukraine",
},
size: 1,
times: [{ time: 1458529680000 }],
},
"5.34.183.21": {
label: [{ text: "5.34.183.21", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Ukraine",
country: "Ukraine",
host: ["host-nwcpgymgh.work"],
},
size: 1,
glyphs: [{ image: Ukraine, position: "ne" }],
},
"host-mkis.org": {
label: [{ text: "Host\nmkis.org", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1458464880000 }],
},
"50.87.127.96": {
label: [{ text: "50.87.127.96", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-mkis.org"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-46.148.20.46": {
label: [{ text: "Host\n46.148.20.46", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Ukraine",
},
size: 1,
times: [{ time: 1458410040000 }],
},
"46.148.20.46": {
label: [{ text: "46.148.20.46", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Ukraine",
country: "Ukraine",
host: ["host-46.148.20.46"],
},
size: 1,
glyphs: [{ image: Ukraine, position: "ne" }],
},
"host-commonsenseprotection.com": {
label: [{ text: "Host\ncommonsenseprotection.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1458400200000 }],
},
"50.116.109.230": {
label: [{ text: "50.116.109.230", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-commonsenseprotection.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-classemgmt.testbada.com": {
label: [{ text: "Host\nclassemgmt.testbada.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "South Korea",
},
size: 1,
times: [{ time: 1458323460000 }],
},
"115.94.157.252": {
label: [{ text: "115.94.157.252", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "South Korea",
country: "South Korea",
host: ["host-classemgmt.testbada.com"],
},
size: 1,
glyphs: [{ image: SouthKorea, position: "ne" }],
},
"host-exaltation.info": {
label: [{ text: "Host\nexaltation.info", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "Netherlands",
},
size: 1,
times: [{ time: 1458313140000 }],
},
"46.235.47.104": {
label: [{ text: "46.235.47.104", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Netherlands",
country: "Netherlands",
host: ["host-exaltation.info"],
},
size: 1,
glyphs: [{ image: Netherlands, position: "ne" }],
},
"host-resumosdenovela.net": {
label: [{ text: "Host\nresumosdenovela.net", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1458308040000 }],
},
"108.167.185.237": {
label: [{ text: "108.167.185.237", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-resumosdenovela.net"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-plfbvdrpvsm.pw": {
label: [{ text: "Host\nplfbvdrpvsm.pw", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "USA",
},
size: 1,
times: [{ time: 1458238920000 }],
},
"host-shampooherbal.com": {
label: [{ text: "Host\nshampooherbal.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1458198840000 }],
},
"104.128.239.91": {
label: [{ text: "104.128.239.91", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-shampooherbal.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-joshsawyerdesign.com": {
label: [{ text: "Host\njoshsawyerdesign.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1458172080000 }],
},
"107.180.4.11": {
label: [{ text: "107.180.4.11", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-joshsawyerdesign.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-51.254.181.122": {
label: [{ text: "Host\n51.254.181.122", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "France",
},
size: 1,
times: [{ time: 1458145860000 }],
},
"51.254.181.122": {
label: [{ text: "51.254.181.122", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "France",
country: "France",
host: ["host-51.254.181.122"],
},
size: 1,
glyphs: [{ image: France, position: "ne" }],
},
"host-hmgame.net": {
label: [{ text: "Host\nhmgame.net", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1458137940000 }],
},
"66.147.244.86": {
label: [{ text: "66.147.244.86", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-hmgame.net"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-51.255.107.8": {
label: [{ text: "Host\n51.255.107.8", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "France",
},
size: 1,
times: [{ time: 1458135780000 }],
},
"51.255.107.8": {
label: [{ text: "51.255.107.8", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "France",
country: "France",
host: ["host-51.255.107.8"],
},
size: 1,
glyphs: [{ image: France, position: "ne" }],
},
"host-marketathart.com": {
label: [{ text: "Host\nmarketathart.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1458134880000 }],
},
"192.185.35.88": {
label: [{ text: "192.185.35.88", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-marketathart.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-91.195.12.187": {
label: [{ text: "Host\n91.195.12.187", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Ukraine",
},
size: 1,
times: [{ time: 1458133980000 }],
},
"91.195.12.187": {
label: [{ text: "91.195.12.187", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Ukraine",
country: "Ukraine",
host: ["host-91.195.12.187"],
},
size: 1,
glyphs: [{ image: Ukraine, position: "ne" }],
},
"host-prodocument.co.uk": {
label: [{ text: "Host\nprodocument.co.uk", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1458113400000 }],
},
"67.23.226.169": {
label: [{ text: "67.23.226.169", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-prodocument.co.uk"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-188.127.231.116": {
label: [{ text: "Host\n188.127.231.116", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Russia",
},
size: 1,
times: [{ time: 1458072420000 }],
},
"188.127.231.116": {
label: [{ text: "188.127.231.116", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Russia",
country: "Russia",
host: ["host-188.127.231.116"],
},
size: 1,
glyphs: [{ image: Russia, position: "ne" }],
},
"host-37.139.27.52": {
label: [{ text: "Host\n37.139.27.52", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Netherlands",
},
size: 1,
times: [{ time: 1458062040000 }],
},
"37.139.27.52": {
label: [{ text: "37.139.27.52", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Netherlands",
country: "Netherlands",
host: ["host-37.139.27.52"],
},
size: 1,
glyphs: [{ image: Netherlands, position: "ne" }],
},
"host-51.255.107.10": {
label: [{ text: "Host\n51.255.107.10", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "France",
},
size: 1,
times: [{ time: 1458045780000 }],
},
"51.255.107.10": {
label: [{ text: "51.255.107.10", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "France",
country: "France",
host: ["host-51.255.107.10"],
},
size: 1,
glyphs: [{ image: France, position: "ne" }],
},
"host-esbook.com": {
label: [{ text: "Host\nesbook.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1458042180000 }],
},
"174.136.12.119": {
label: [{ text: "174.136.12.119", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-esbook.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-nlhomegarden.com": {
label: [{ text: "Host\nnlhomegarden.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1458029460000 }],
},
"107.180.50.210": {
label: [{ text: "107.180.50.210", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-nlhomegarden.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-emmy2015.com": {
label: [{ text: "Host\nemmy2015.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1458028260000 }],
},
"107.180.50.183": {
label: [{ text: "107.180.50.183", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-emmy2015.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-kel52.com": {
label: [{ text: "Host\nkel52.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1457970000000 }],
},
"108.167.141.20": {
label: [{ text: "108.167.141.20", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-kel52.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-controlfreaknetworks.com": {
label: [{ text: "Host\ncontrolfreaknetworks.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1457778060000 }],
},
"97.74.249.1": {
label: [{ text: "97.74.249.1", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-controlfreaknetworks.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-jambola.com": {
label: [{ text: "Host\njambola.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "USA",
},
size: 1,
times: [{ time: 1457775780000 }],
},
"208.109.189.88": {
label: [{ text: "208.109.189.88", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-jambola.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-oregonreversemortgage.com": {
label: [{ text: "Host\noregonreversemortgage.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "USA",
},
size: 1,
times: [{ time: 1457775780000 }],
},
"198.143.138.43": {
label: [{ text: "198.143.138.43", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-oregonreversemortgage.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-shirongfeng.cn": {
label: [{ text: "Host\nshirongfeng.cn", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "Hong Kong",
},
size: 1,
times: [{ time: 1457774580000 }],
},
"103.254.148.121": {
label: [{ text: "103.254.148.121", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Hong Kong",
country: "Hong Kong",
host: ["host-shirongfeng.cn"],
},
size: 1,
glyphs: [{ image: HongKong, position: "ne" }],
},
"host-91.234.32.192": {
label: [{ text: "Host\n91.234.32.192", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Ukraine",
},
size: 1,
times: [{ time: 1457732880000 }],
},
"91.234.32.192": {
label: [{ text: "91.234.32.192", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Ukraine",
country: "Ukraine",
host: ["host-91.234.32.192"],
},
size: 1,
glyphs: [{ image: Ukraine, position: "ne" }],
},
"host-91.219.30.254": {
label: [{ text: "Host\n91.219.30.254", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Ukraine",
},
size: 1,
times: [{ time: 1457724900000 }],
},
"91.219.30.254": {
label: [{ text: "91.219.30.254", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Ukraine",
country: "Ukraine",
host: ["host-91.219.30.254"],
},
size: 1,
glyphs: [{ image: Ukraine, position: "ne" }],
},
"host-31.184.196.75": {
label: [{ text: "Host\n31.184.196.75", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Russia",
},
size: 1,
times: [{ time: 1457703660000 }],
},
"31.184.196.75": {
label: [{ text: "31.184.196.75", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Russia",
country: "Russia",
host: ["host-31.184.196.75"],
},
size: 1,
glyphs: [{ image: Russia, position: "ne" }],
},
"host-sappmtraining.com": {
label: [{ text: "Host\nsappmtraining.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1457703660000 }],
},
"166.62.4.223": {
label: [{ text: "166.62.4.223", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-sappmtraining.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-vtechshop.net": {
label: [{ text: "Host\nvtechshop.net", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "Singapore",
},
size: 1,
times: [{ time: 1457679120000 }],
},
"203.124.115.1": {
label: [{ text: "203.124.115.1", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Singapore",
country: "Singapore",
host: ["host-vtechshop.net"],
},
size: 1,
glyphs: [{ image: Singapore, position: "ne" }],
},
"host-31.184.196.78": {
label: [{ text: "Host\n31.184.196.78", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Russia",
},
size: 1,
times: [{ time: 1457632560000 }],
},
"31.184.196.78": {
label: [{ text: "31.184.196.78", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Russia",
country: "Russia",
host: ["host-31.184.196.78"],
},
size: 1,
glyphs: [{ image: Russia, position: "ne" }],
},
"host-multibrandphone.com": {
label: [{ text: "Host\nmultibrandphone.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1457625240000 }],
},
"162.208.8.165": {
label: [{ text: "162.208.8.165", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-multibrandphone.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-tele-channel.com": {
label: [{ text: "Host\ntele-channel.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "Germany",
},
size: 1,
times: [{ time: 1457613120000 }],
},
"178.162.214.146": {
label: [{ text: "178.162.214.146", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Germany",
country: "Germany",
host: ["host-tele-channel.com"],
},
size: 1,
glyphs: [{ image: Germany, position: "ne" }],
},
"host-91.234.33.149": {
label: [{ text: "Host\n91.234.33.149", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Ukraine",
},
size: 1,
times: [{ time: 1457610000000 }],
},
"91.234.33.149": {
label: [{ text: "91.234.33.149", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Ukraine",
country: "Ukraine",
host: ["host-91.234.33.149"],
},
size: 1,
glyphs: [{ image: Ukraine, position: "ne" }],
},
"host-anoukdelecluse.nl": {
label: [{ text: "Host\nanoukdelecluse.nl", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Netherlands",
},
size: 1,
times: [{ time: 1457591940000 }],
},
"83.137.194.20": {
label: [{ text: "83.137.194.20", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Netherlands",
country: "Netherlands",
host: ["host-anoukdelecluse.nl"],
},
size: 1,
glyphs: [{ image: Netherlands, position: "ne" }],
},
"host-gibdd.ws": {
label: [{ text: "Host\ngibdd.ws", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Russia",
},
size: 1,
times: [{ time: 1457591940000 }],
},
"178.208.83.11": {
label: [{ text: "178.208.83.11", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Russia",
country: "Russia",
host: ["host-gibdd.ws"],
},
size: 1,
glyphs: [{ image: Russia, position: "ne" }],
},
"host-specializedaccess.co.uk": {
label: [{ text: "Host\nspecializedaccess.co.uk", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "Britain",
},
size: 1,
times: [{ time: 1457589060000 }],
},
"85.233.160.146": {
label: [{ text: "85.233.160.146", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Britain",
country: "Britain",
host: ["host-specializedaccess.co.uk"],
},
size: 1,
glyphs: [{ image: Britain, position: "ne" }],
},
"host-151.236.14.51": {
label: [{ text: "Host\n151.236.14.51", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Netherlands",
},
size: 1,
times: [{ time: 1457555940000 }],
},
"151.236.14.51": {
label: [{ text: "151.236.14.51", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Netherlands",
country: "Netherlands",
host: ["host-151.236.14.51"],
},
size: 1,
glyphs: [{ image: Netherlands, position: "ne" }],
},
"host-78.40.108.39": {
label: [{ text: "Host\n78.40.108.39", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Kazakhstan",
},
size: 1,
times: [{ time: 1457551500000 }],
},
"78.40.108.39": {
label: [{ text: "78.40.108.39", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Kazakhstan",
country: "Kazakhstan",
host: ["host-78.40.108.39"],
},
size: 1,
glyphs: [{ image: Kazakhstan, position: "ne" }],
},
"host-bqbbsfdw.be": {
label: [{ text: "Host\nbqbbsfdw.be", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Portugal",
},
size: 1,
times: [{ time: 1457551500000 }],
},
"host-egovrxvuspxck.be": {
label: [{ text: "Host\negovrxvuspxck.be", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Portugal",
},
size: 1,
times: [{ time: 1457551500000 }],
},
"195.22.26.248": {
label: [{ text: "195.22.26.248", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Portugal",
country: "Portugal",
host: ["host-egovrxvuspxck.be"],
},
size: 1,
glyphs: [{ image: Portugal, position: "ne" }],
},
"host-marciogerhardtsouza.com.br": {
label: [{ text: "Host\nmarciogerhardtsouza.com.br", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Brazil",
},
size: 1,
times: [{ time: 1457545200000 }],
},
"186.202.153.14": {
label: [{ text: "186.202.153.14", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Brazil",
country: "Brazil",
host: ["host-marciogerhardtsouza.com.br"],
},
size: 1,
glyphs: [{ image: Brazil, position: "ne" }],
},
"host-ahlanmedicalcentre.com": {
label: [{ text: "Host\nahlanmedicalcentre.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1457540580000 }],
},
"184.168.47.225": {
label: [{ text: "184.168.47.225", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-ahlanmedicalcentre.com", "host-beyondthedog.net"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-cam-itour.info": {
label: [{ text: "Host\ncam-itour.info", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "Germany",
},
size: 1,
times: [{ time: 1457540580000 }],
},
"188.40.132.132": {
label: [{ text: "188.40.132.132", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Germany",
country: "Germany",
host: ["host-cam-itour.info"],
},
size: 1,
glyphs: [{ image: Germany, position: "ne" }],
},
"host-91.195.12.131": {
label: [{ text: "Host\n91.195.12.131", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Ukraine",
},
size: 1,
times: [{ time: 1457535720000 }],
},
"91.195.12.131": {
label: [{ text: "91.195.12.131", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Ukraine",
country: "Ukraine",
host: ["host-91.195.12.131"],
},
size: 1,
glyphs: [{ image: Ukraine, position: "ne" }],
},
"host-37.235.53.18": {
label: [{ text: "Host\n37.235.53.18", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Spain",
},
size: 1,
times: [{ time: 1457524560000 }],
},
"37.235.53.18": {
label: [{ text: "37.235.53.18", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Spain",
country: "Spain",
host: ["host-37.235.53.18"],
},
size: 1,
glyphs: [{ image: Spain, position: "ne" }],
},
"host-www.informaticauno.net": {
label: [{ text: "Host\nwww.informaticauno.net", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1457509860000 }],
},
"50.87.28.241": {
label: [{ text: "50.87.28.241", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-www.informaticauno.net"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-89.108.85.163": {
label: [{ text: "Host\n89.108.85.163", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Russia",
},
size: 1,
times: [{ time: 1457451480000 }],
},
"89.108.85.163": {
label: [{ text: "89.108.85.163", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Russia",
country: "Russia",
host: ["host-89.108.85.163"],
},
size: 1,
glyphs: [{ image: Russia, position: "ne" }],
},
"host-149.154.157.14": {
label: [{ text: "Host\n149.154.157.14", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Italy",
},
size: 1,
times: [{ time: 1457451240000 }],
},
"149.154.157.14": {
label: [{ text: "149.154.157.14", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Italy",
country: "Italy",
host: ["host-149.154.157.14"],
},
size: 1,
glyphs: [{ image: Italy, position: "ne" }],
},
"host-drcordoba.com": {
label: [{ text: "Host\ndrcordoba.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1457421780000 }],
},
"50.62.125.1": {
label: [{ text: "50.62.125.1", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-drcordoba.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-192.121.16.196": {
label: [{ text: "Host\n192.121.16.196", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Netherlands",
},
size: 1,
times: [{ time: 1457421540000 }],
},
"192.121.16.196": {
label: [{ text: "192.121.16.196", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Netherlands",
country: "Netherlands",
host: ["host-192.121.16.196"],
},
size: 1,
glyphs: [{ image: Netherlands, position: "ne" }],
},
"host-iheartshop.net": {
label: [{ text: "Host\niheartshop.net", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "Singapore",
},
size: 1,
times: [{ time: 1457420280000 }],
},
"128.199.187.47": {
label: [{ text: "128.199.187.47", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Singapore",
country: "Singapore",
host: ["host-iheartshop.net"],
},
size: 1,
glyphs: [{ image: Singapore, position: "ne" }],
},
"host-glhxgchhfemcjgr.pw": {
label: [{ text: "Host\nglhxgchhfemcjgr.pw", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Portugal",
},
size: 1,
times: [{ time: 1457404740000 }],
},
"host-csucanuevo.csuca.org": {
label: [{ text: "Host\ncsucanuevo.csuca.org", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "Guatemala",
},
size: 1,
times: [{ time: 1457385300000 }],
},
"186.151.199.5": {
label: [{ text: "186.151.199.5", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Guatemala",
country: "Guatemala",
host: ["host-csucanuevo.csuca.org"],
},
size: 1,
glyphs: [{ image: Guatemala, position: "ne" }],
},
"host-185.92.220.35": {
label: [{ text: "Host\n185.92.220.35", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Netherlands",
},
size: 1,
times: [{ time: 1457365080000 }],
},
"185.92.220.35": {
label: [{ text: "185.92.220.35", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Netherlands",
country: "Netherlands",
host: ["host-185.92.220.35"],
},
size: 1,
glyphs: [{ image: Netherlands, position: "ne" }],
},
"host-newculturemediablog.com": {
label: [{ text: "Host\nnewculturemediablog.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1457362020000 }],
},
"50.63.50.75": {
label: [{ text: "50.63.50.75", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-newculturemediablog.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-saludaonline.com": {
label: [{ text: "Host\nsaludaonline.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1457357940000 }],
},
"184.168.53.1": {
label: [{ text: "184.168.53.1", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-saludaonline.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-109.237.111.168": {
label: [{ text: "Host\n109.237.111.168", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Russia",
},
size: 1,
times: [{ time: 1457350680000 }],
},
"109.237.111.168": {
label: [{ text: "109.237.111.168", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Russia",
country: "Russia",
host: ["host-109.237.111.168"],
},
size: 1,
glyphs: [{ image: Russia, position: "ne" }],
},
"host-46.108.39.18": {
label: [{ text: "Host\n46.108.39.18", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Romania",
},
size: 1,
times: [{ time: 1457350680000 }],
},
"46.108.39.18": {
label: [{ text: "46.108.39.18", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Romania",
country: "Romania",
host: ["host-46.108.39.18"],
},
size: 1,
glyphs: [{ image: Romania, position: "ne" }],
},
"host-212.47.223.19": {
label: [{ text: "Host\n212.47.223.19", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Estonia",
},
size: 1,
times: [{ time: 1457342820000 }],
},
"212.47.223.19": {
label: [{ text: "212.47.223.19", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Estonia",
country: "Estonia",
host: ["host-212.47.223.19"],
},
size: 1,
glyphs: [{ image: Estonia, position: "ne" }],
},
"host-tmfilms.net": {
label: [{ text: "Host\ntmfilms.net", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1457342460000 }],
},
"50.62.122.1": {
label: [{ text: "50.62.122.1", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-tmfilms.net"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-openroadsolutions.com": {
label: [{ text: "Host\nopenroadsolutions.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "USA",
},
size: 1,
times: [{ time: 1457300940000 }],
},
"208.109.243.37": {
label: [{ text: "208.109.243.37", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-openroadsolutions.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-www.decorandoimoveis.com": {
label: [{ text: "Host\nwww.decorandoimoveis.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "USA",
},
size: 1,
times: [{ time: 1457300940000 }],
},
"198.154.250.33": {
label: [{ text: "198.154.250.33", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-www.decorandoimoveis.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-185.82.216.213": {
label: [{ text: "Host\n185.82.216.213", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Bulgaria",
},
size: 1,
times: [{ time: 1457265480000 }],
},
"185.82.216.213": {
label: [{ text: "185.82.216.213", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Bulgaria",
country: "Bulgaria",
host: ["host-185.82.216.213"],
},
size: 1,
glyphs: [{ image: Bulgaria, position: "ne" }],
},
"host-conspec.us": {
label: [{ text: "Host\nconspec.us", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1457248200000 }],
},
"50.62.245.1": {
label: [{ text: "50.62.245.1", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-conspec.us"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-tusrecetas.net": {
label: [{ text: "Host\ntusrecetas.net", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "USA",
},
size: 1,
times: [{ time: 1457195160000 }],
},
"69.162.104.22": {
label: [{ text: "69.162.104.22", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-tusrecetas.net"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-trion.com.ph": {
label: [{ text: "Host\ntrion.com.ph", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "USA",
},
size: 1,
times: [{ time: 1457179140000 }],
},
"104.238.111.90": {
label: [{ text: "104.238.111.90", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-trion.com.ph"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-fitga.ru": {
label: [{ text: "Host\nfitga.ru", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Portugal",
},
size: 1,
times: [{ time: 1457162880000 }],
},
"host-cudcfybkk.pw": {
label: [{ text: "Host\ncudcfybkk.pw", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Portugal",
},
size: 1,
times: [{ time: 1457148540000 }],
},
"host-wdvxeval.ru": {
label: [{ text: "Host\nwdvxeval.ru", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Portugal",
},
size: 1,
times: [{ time: 1457132760000 }],
},
"host-gvludcvhcrjwmgq.in": {
label: [{ text: "Host\ngvludcvhcrjwmgq.in", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Portugal",
},
size: 1,
times: [{ time: 1457125080000 }],
},
"host-goktugyeli.com": {
label: [{ text: "Host\ngoktugyeli.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "Turkey",
},
size: 1,
times: [{ time: 1457108100000 }],
},
"185.22.184.156": {
label: [{ text: "185.22.184.156", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Turkey",
country: "Turkey",
host: ["host-goktugyeli.com"],
},
size: 1,
glyphs: [{ image: Turkey, position: "ne" }],
},
"host-iqinternal.com": {
label: [{ text: "Host\niqinternal.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1457104320000 }],
},
"107.180.44.212": {
label: [{ text: "107.180.44.212", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-iqinternal.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-hamilton150.co.nz": {
label: [{ text: "Host\nhamilton150.co.nz", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "USA",
},
size: 1,
times: [{ time: 1457101740000 }],
},
"167.88.167.10": {
label: [{ text: "167.88.167.10", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-hamilton150.co.nz"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-fisioactivo.com": {
label: [{ text: "Host\nfisioactivo.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1457098740000 }],
},
"160.153.79.168": {
label: [{ text: "160.153.79.168", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-fisioactivo.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-serbiotecnicos.com": {
label: [{ text: "Host\nserbiotecnicos.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1457076120000 }],
},
"198.252.78.160": {
label: [{ text: "198.252.78.160", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-serbiotecnicos.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-onegiantstore.com": {
label: [{ text: "Host\nonegiantstore.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1457029560000 }],
},
"50.62.66.1": {
label: [{ text: "50.62.66.1", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-onegiantstore.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-takaram.ir": {
label: [{ text: "Host\ntakaram.ir", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Portugal",
},
size: 1,
times: [{ time: 1457004900000 }],
},
"82.102.8.142": {
label: [{ text: "82.102.8.142", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Portugal",
country: "Portugal",
host: ["host-takaram.ir"],
},
size: 1,
glyphs: [{ image: Portugal, position: "ne" }],
},
"host-dustinhansenbook.com": {
label: [{ text: "Host\ndustinhansenbook.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1456985100000 }],
},
"173.201.145.1": {
label: [{ text: "173.201.145.1", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-dustinhansenbook.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-95.213.184.10": {
label: [{ text: "Host\n95.213.184.10", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Russia",
},
size: 1,
times: [{ time: 1456935180000 }],
},
"95.213.184.10": {
label: [{ text: "95.213.184.10", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Russia",
country: "Russia",
host: ["host-95.213.184.10"],
},
size: 1,
glyphs: [{ image: Russia, position: "ne" }],
},
"host-192.71.213.69": {
label: [{ text: "Host\n192.71.213.69", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Spain",
},
size: 1,
times: [{ time: 1456931280000 }],
},
"192.71.213.69": {
label: [{ text: "192.71.213.69", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Spain",
country: "Spain",
host: ["host-192.71.213.69"],
},
size: 1,
glyphs: [{ image: Spain, position: "ne" }],
},
"host-americancorner.udp.cl": {
label: [{ text: "Host\namericancorner.udp.cl", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Chile",
},
size: 1,
times: [{ time: 1456927680000 }],
},
"200.14.85.32": {
label: [{ text: "200.14.85.32", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Chile",
country: "Chile",
host: ["host-americancorner.udp.cl"],
},
size: 1,
glyphs: [{ image: Chile, position: "ne" }],
},
"host-ptlchemicaltrading.com": {
label: [{ text: "Host\nptlchemicaltrading.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "Thailand",
},
size: 1,
times: [{ time: 1456901100000 }],
},
"119.59.120.21": {
label: [{ text: "119.59.120.21", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Thailand",
country: "Thailand",
host: ["host-ptlchemicaltrading.com"],
},
size: 1,
glyphs: [{ image: Thailand, position: "ne" }],
},
"host-opravnatramvaji.cz": {
label: [{ text: "Host\nopravnatramvaji.cz", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "Rep Czech",
},
size: 1,
times: [{ time: 1456863000000 }],
},
"host-5.34.183.195": {
label: [{ text: "Host\n5.34.183.195", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Ukraine",
},
size: 1,
times: [{ time: 1456840800000 }],
},
"5.34.183.195": {
label: [{ text: "5.34.183.195", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Ukraine",
country: "Ukraine",
host: ["host-5.34.183.195"],
},
size: 1,
glyphs: [{ image: Ukraine, position: "ne" }],
},
"host-kypsuw.pw": {
label: [{ text: "Host\nkypsuw.pw", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Portugal",
},
size: 1,
times: [{ time: 1456840800000 }],
},
"host-185.14.29.188": {
label: [{ text: "Host\n185.14.29.188", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Netherlands",
},
size: 1,
times: [{ time: 1456834500000 }],
},
"185.14.29.188": {
label: [{ text: "185.14.29.188", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Netherlands",
country: "Netherlands",
host: ["host-185.14.29.188"],
},
size: 1,
glyphs: [{ image: Netherlands, position: "ne" }],
},
"host-challengestrata.com.au": {
label: [{ text: "Host\nchallengestrata.com.au", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Australia",
},
size: 1,
times: [{ time: 1456809660000 }],
},
"175.107.181.167": {
label: [{ text: "175.107.181.167", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Australia",
country: "Australia",
host: ["host-challengestrata.com.au"],
},
size: 1,
glyphs: [{ image: Australia, position: "ne" }],
},
"host-dichiro.com": {
label: [{ text: "Host\ndichiro.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "USA",
},
size: 1,
times: [{ time: 1456809660000 }],
},
"206.188.193.93": {
label: [{ text: "206.188.193.93", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-dichiro.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-beyondthedog.net": {
label: [{ text: "Host\nbeyondthedog.net", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "USA",
},
size: 1,
times: [{ time: 1456794180000 }],
},
"host-91.219.29.55": {
label: [{ text: "Host\n91.219.29.55", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Ukraine",
},
size: 1,
times: [{ time: 1456754940000 }],
},
"91.219.29.55": {
label: [{ text: "91.219.29.55", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Ukraine",
country: "Ukraine",
host: ["host-91.219.29.55"],
},
size: 1,
glyphs: [{ image: Ukraine, position: "ne" }],
},
"host-music.mbsaeger.com": {
label: [{ text: "Host\nmusic.mbsaeger.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1456749360000 }],
},
"76.125.213.205": {
label: [{ text: "76.125.213.205", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-music.mbsaeger.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-stacon.eu": {
label: [{ text: "Host\nstacon.eu", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "Poland",
},
size: 1,
times: [{ time: 1456749360000 }],
},
"188.116.9.2": {
label: [{ text: "188.116.9.2", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Poland",
country: "Poland",
host: ["host-stacon.eu"],
},
size: 1,
glyphs: [{ image: Poland, position: "ne" }],
},
"host-worldisonefamily.info": {
label: [{ text: "Host\nworldisonefamily.info", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "Britain",
},
size: 1,
times: [{ time: 1456749360000 }],
},
"23.229.4.214": {
label: [{ text: "23.229.4.214", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Britain",
country: "Britain",
host: ["host-worldisonefamily.info"],
},
size: 1,
glyphs: [{ image: Britain, position: "ne" }],
},
"host-imagescroll.com": {
label: [{ text: "Host\nimagescroll.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "France",
},
size: 1,
times: [{ time: 1456738320000 }],
},
"62.210.141.228": {
label: [{ text: "62.210.141.228", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "France",
country: "France",
host: ["host-imagescroll.com"],
},
size: 1,
glyphs: [{ image: France, position: "ne" }],
},
"host-lazymoosestamping.com": {
label: [{ text: "Host\nlazymoosestamping.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "USA",
},
size: 1,
times: [{ time: 1456696620000 }],
},
"173.225.189.5": {
label: [{ text: "173.225.189.5", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-lazymoosestamping.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-maternalserenity.co.uk": {
label: [{ text: "Host\nmaternalserenity.co.uk", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "USA",
},
size: 1,
times: [{ time: 1456695420000 }],
},
"69.10.56.10": {
label: [{ text: "69.10.56.10", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-maternalserenity.co.uk"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-hongsi.com": {
label: [{ text: "Host\nhongsi.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "South Korea",
},
size: 1,
times: [{ time: 1456649400000 }],
},
"110.45.144.173": {
label: [{ text: "110.45.144.173", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "South Korea",
country: "South Korea",
host: ["host-hongsi.com", "host-ikstrade.co.kr"],
},
size: 1,
glyphs: [{ image: SouthKorea, position: "ne" }],
},
"host-biocarbon.com.ec": {
label: [{ text: "Host\nbiocarbon.com.ec", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1456580760000 }],
},
"192.185.39.66": {
label: [{ text: "192.185.39.66", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-biocarbon.com.ec"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-cursos.feyda.net": {
label: [{ text: "Host\ncursos.feyda.net", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "USA",
},
size: 1,
times: [{ time: 1456573980000 }],
},
"198.154.228.128": {
label: [{ text: "198.154.228.128", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-cursos.feyda.net"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-igatha.com": {
label: [{ text: "Host\nigatha.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Netherlands",
},
size: 1,
times: [{ time: 1456573980000 }],
},
"217.23.12.215": {
label: [{ text: "217.23.12.215", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Netherlands",
country: "Netherlands",
host: ["host-igatha.com"],
},
size: 1,
glyphs: [{ image: Netherlands, position: "ne" }],
},
"host-www.vishvagujarat.com": {
label: [{ text: "Host\nwww.vishvagujarat.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "USA",
},
size: 1,
times: [{ time: 1456573980000 }],
},
"104.27.142.99": {
label: [{ text: "104.27.142.99", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-www.vishvagujarat.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-heizhuangym.com": {
label: [{ text: "Host\nheizhuangym.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "Hong Kong",
},
size: 1,
times: [{ time: 1456550940000 }],
},
"103.254.148.129": {
label: [{ text: "103.254.148.129", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Hong Kong",
country: "Hong Kong",
host: ["host-heizhuangym.com"],
},
size: 1,
glyphs: [{ image: HongKong, position: "ne" }],
},
"host-best-service.jp": {
label: [{ text: "Host\nbest-service.jp", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Japan",
},
size: 1,
times: [{ time: 1456532460000 }],
},
"203.145.230.194": {
label: [{ text: "203.145.230.194", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Japan",
country: "Japan",
host: ["host-best-service.jp"],
},
size: 1,
glyphs: [{ image: Japan, position: "ne" }],
},
"host-surrogacyandadoption.com": {
label: [{ text: "Host\nsurrogacyandadoption.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "Russia",
},
size: 1,
times: [{ time: 1456510860000 }],
},
"185.26.122.59": {
label: [{ text: "185.26.122.59", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Russia",
country: "Russia",
host: ["host-surrogacyandadoption.com"],
},
size: 1,
glyphs: [{ image: Russia, position: "ne" }],
},
"host-jessforkicks.com": {
label: [{ text: "Host\njessforkicks.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1456469340000 }],
},
"96.226.119.251": {
label: [{ text: "96.226.119.251", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-jessforkicks.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-viralcrazies.com": {
label: [{ text: "Host\nviralcrazies.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Netherlands",
},
size: 1,
times: [{ time: 1456446180000 }],
},
"46.166.187.64": {
label: [{ text: "46.166.187.64", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Netherlands",
country: "Netherlands",
host: ["host-viralcrazies.com"],
},
size: 1,
glyphs: [{ image: Netherlands, position: "ne" }],
},
"host-domaine-cassillac.com": {
label: [{ text: "Host\ndomaine-cassillac.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "France",
},
size: 1,
times: [{ time: 1456436640000 }],
},
"213.186.33.87": {
label: [{ text: "213.186.33.87", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "France",
country: "France",
host: ["host-domaine-cassillac.com"],
},
size: 1,
glyphs: [{ image: France, position: "ne" }],
},
"host-double-wing.de": {
label: [{ text: "Host\ndouble-wing.de", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Germany",
},
size: 1,
times: [{ time: 1456436640000 }],
},
"217.119.54.152": {
label: [{ text: "217.119.54.152", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Germany",
country: "Germany",
host: ["host-double-wing.de"],
},
size: 1,
glyphs: [{ image: Germany, position: "ne" }],
},
"host-eatside.es": {
label: [{ text: "Host\neatside.es", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Spain",
},
size: 1,
times: [{ time: 1456436640000 }],
},
"134.0.15.35": {
label: [{ text: "134.0.15.35", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Spain",
country: "Spain",
host: ["host-eatside.es"],
},
size: 1,
glyphs: [{ image: Spain, position: "ne" }],
},
"host-185.22.67.27": {
label: [{ text: "Host\n185.22.67.27", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Kazakhstan",
},
size: 1,
times: [{ time: 1456432260000 }],
},
"185.22.67.27": {
label: [{ text: "185.22.67.27", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Kazakhstan",
country: "Kazakhstan",
host: ["host-185.22.67.27"],
},
size: 1,
glyphs: [{ image: Kazakhstan, position: "ne" }],
},
"host-91.121.97.170": {
label: [{ text: "Host\n91.121.97.170", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "France",
},
size: 1,
times: [{ time: 1456424400000 }],
},
"91.121.97.170": {
label: [{ text: "91.121.97.170", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "France",
country: "France",
host: ["host-91.121.97.170"],
},
size: 1,
glyphs: [{ image: France, position: "ne" }],
},
"host-definitionen.de": {
label: [{ text: "Host\ndefinitionen.de", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Germany",
},
size: 1,
times: [{ time: 1456417800000 }],
},
"136.243.69.220": {
label: [{ text: "136.243.69.220", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Germany",
country: "Germany",
host: ["host-definitionen.de"],
},
size: 1,
glyphs: [{ image: Germany, position: "ne" }],
},
"host-ecocalsots.com": {
label: [{ text: "Host\necocalsots.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Spain",
},
size: 1,
times: [{ time: 1456417800000 }],
},
"37.247.125.42": {
label: [{ text: "37.247.125.42", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Spain",
country: "Spain",
host: ["host-ecocalsots.com"],
},
size: 1,
glyphs: [{ image: Spain, position: "ne" }],
},
"host-recaswine.ro": {
label: [{ text: "Host\nrecaswine.ro", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Romania",
},
size: 1,
times: [{ time: 1456417800000 }],
},
"93.118.36.235": {
label: [{ text: "93.118.36.235", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Romania",
country: "Romania",
host: ["host-recaswine.ro"],
},
size: 1,
glyphs: [{ image: Romania, position: "ne" }],
},
"host-nupleta.com.br": {
label: [{ text: "Host\nnupleta.com.br", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Brazil",
},
size: 1,
times: [{ time: 1456410900000 }],
},
"186.202.127.236": {
label: [{ text: "186.202.127.236", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Brazil",
country: "Brazil",
host: ["host-nupleta.com.br"],
},
size: 1,
glyphs: [{ image: Brazil, position: "ne" }],
},
"host-bnjhx.eu": {
label: [{ text: "Host\nbnjhx.eu", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Portugal",
},
size: 1,
times: [{ time: 1456410600000 }],
},
"host-jxqdry.ru": {
label: [{ text: "Host\njxqdry.ru", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Portugal",
},
size: 1,
times: [{ time: 1456410600000 }],
},
"host-odgtnkmq.pw": {
label: [{ text: "Host\nodgtnkmq.pw", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "USA",
},
size: 1,
times: [{ time: 1456410600000 }],
},
"98.143.148.173": {
label: [{ text: "98.143.148.173", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-odgtnkmq.pw", "host-gitybdjgbxd.nl"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-lutheranph.com": {
label: [{ text: "Host\nlutheranph.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1456399500000 }],
},
"107.180.41.49": {
label: [{ text: "107.180.41.49", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-lutheranph.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-5.34.183.136": {
label: [{ text: "Host\n5.34.183.136", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Ukraine",
},
size: 1,
times: [{ time: 1456394520000 }],
},
"5.34.183.136": {
label: [{ text: "5.34.183.136", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Ukraine",
country: "Ukraine",
host: ["host-5.34.183.136"],
},
size: 1,
glyphs: [{ image: Ukraine, position: "ne" }],
},
"host-51.254.19.227": {
label: [{ text: "Host\n51.254.19.227", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "France",
},
size: 1,
times: [{ time: 1456389900000 }],
},
"51.254.19.227": {
label: [{ text: "51.254.19.227", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "France",
country: "France",
host: ["host-51.254.19.227"],
},
size: 1,
glyphs: [{ image: France, position: "ne" }],
},
"host-national-drafting.com": {
label: [{ text: "Host\nnational-drafting.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "USA",
},
size: 1,
times: [{ time: 1456388760000 }],
},
"166.62.93.187": {
label: [{ text: "166.62.93.187", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-national-drafting.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-31.184.197.119": {
label: [{ text: "Host\n31.184.197.119", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Russia",
},
size: 1,
times: [{ time: 1456387980000 }],
},
"31.184.197.119": {
label: [{ text: "31.184.197.119", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Russia",
country: "Russia",
host: ["host-31.184.197.119"],
},
size: 1,
glyphs: [{ image: Russia, position: "ne" }],
},
"host-snibi.se": {
label: [{ text: "Host\nsnibi.se", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "Sweden",
},
size: 1,
times: [{ time: 1456383600000 }],
},
"212.16.182.196": {
label: [{ text: "212.16.182.196", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Sweden",
country: "Sweden",
host: ["host-snibi.se"],
},
size: 1,
glyphs: [{ image: Sweden, position: "ne" }],
},
"host-haarsaloncindy.nl": {
label: [{ text: "Host\nhaarsaloncindy.nl", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Netherlands",
},
size: 1,
times: [{ time: 1456338960000 }],
},
"5.178.65.43": {
label: [{ text: "5.178.65.43", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Netherlands",
country: "Netherlands",
host: ["host-haarsaloncindy.nl"],
},
size: 1,
glyphs: [{ image: Netherlands, position: "ne" }],
},
"host-www.big-cola.com": {
label: [{ text: "Host\nwww.big-cola.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "Spain",
},
size: 1,
times: [{ time: 1456293000000 }],
},
"77.73.81.35": {
label: [{ text: "77.73.81.35", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Spain",
country: "Spain",
host: ["host-www.big-cola.com"],
},
size: 1,
glyphs: [{ image: Spain, position: "ne" }],
},
"host-salesandmarketing101.net": {
label: [{ text: "Host\nsalesandmarketing101.net", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1456235700000 }],
},
"23.229.172.137": {
label: [{ text: "23.229.172.137", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-salesandmarketing101.net"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-ikstrade.co.kr": {
label: [{ text: "Host\nikstrade.co.kr", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "South Korea",
},
size: 1,
times: [{ time: 1456233840000 }],
},
"host-185.46.11.239": {
label: [{ text: "Host\n185.46.11.239", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Russia",
},
size: 1,
times: [{ time: 1456227900000 }],
},
"185.46.11.239": {
label: [{ text: "185.46.11.239", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Russia",
country: "Russia",
host: ["host-185.46.11.239", "host-pvwinlrmwvccuo.eu"],
},
size: 1,
glyphs: [{ image: Russia, position: "ne" }],
},
"host-feuerwehr-stadt-riesa.de": {
label: [{ text: "Host\nfeuerwehr-stadt-riesa.de", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Germany",
},
size: 1,
times: [{ time: 1456226760000 }],
},
"178.254.50.156": {
label: [{ text: "178.254.50.156", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Germany",
country: "Germany",
host: ["host-feuerwehr-stadt-riesa.de"],
},
size: 1,
glyphs: [{ image: Germany, position: "ne" }],
},
"host-paintituppottery.com": {
label: [{ text: "Host\npaintituppottery.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "USA",
},
size: 1,
times: [{ time: 1456226760000 }],
},
"208.117.38.143": {
label: [{ text: "208.117.38.143", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-paintituppottery.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-takatei.com": {
label: [{ text: "Host\ntakatei.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Japan",
},
size: 1,
times: [{ time: 1456226760000 }],
},
"203.189.109.240": {
label: [{ text: "203.189.109.240", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Japan",
country: "Japan",
host: ["host-takatei.com"],
},
size: 1,
glyphs: [{ image: Japan, position: "ne" }],
},
"host-www.hanoiguidedtours.com": {
label: [{ text: "Host\nwww.hanoiguidedtours.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "USA",
},
size: 1,
times: [{ time: 1456226760000 }],
},
"104.131.43.146": {
label: [{ text: "104.131.43.146", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-www.hanoiguidedtours.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-www.rippedknees.co.uk": {
label: [{ text: "Host\nwww.rippedknees.co.uk", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Britain",
},
size: 1,
times: [{ time: 1456226760000 }],
},
"212.48.68.63": {
label: [{ text: "212.48.68.63", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Britain",
country: "Britain",
host: ["host-www.rippedknees.co.uk"],
},
size: 1,
glyphs: [{ image: Britain, position: "ne" }],
},
"host-salaeigroup.com": {
label: [{ text: "Host\nsalaeigroup.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1456207620000 }],
},
"107.180.2.115": {
label: [{ text: "107.180.2.115", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-salaeigroup.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-ecolux-comfort.com": {
label: [{ text: "Host\necolux-comfort.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Russia",
},
size: 1,
times: [{ time: 1456184580000 }],
},
"188.127.249.243": {
label: [{ text: "188.127.249.243", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Russia",
country: "Russia",
host: ["host-ecolux-comfort.com"],
},
size: 1,
glyphs: [{ image: Russia, position: "ne" }],
},
"host-abdal.com.ua": {
label: [{ text: "Host\nabdal.com.ua", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Ukraine",
},
size: 1,
times: [{ time: 1456177140000 }],
},
"185.68.16.196": {
label: [{ text: "185.68.16.196", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Ukraine",
country: "Ukraine",
host: ["host-abdal.com.ua"],
},
size: 1,
glyphs: [{ image: Ukraine, position: "ne" }],
},
"host-building.msu.ac.th": {
label: [{ text: "Host\nbuilding.msu.ac.th", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Thailand",
},
size: 1,
times: [{ time: 1456177140000 }],
},
"202.28.32.20": {
label: [{ text: "202.28.32.20", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Thailand",
country: "Thailand",
host: ["host-building.msu.ac.th"],
},
size: 1,
glyphs: [{ image: Thailand, position: "ne" }],
},
"host-konyavakfi.nl": {
label: [{ text: "Host\nkonyavakfi.nl", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Netherlands",
},
size: 1,
times: [{ time: 1456177140000 }],
},
"91.208.60.158": {
label: [{ text: "91.208.60.158", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Netherlands",
country: "Netherlands",
host: ["host-konyavakfi.nl"],
},
size: 1,
glyphs: [{ image: Netherlands, position: "ne" }],
},
"host-www.granmarquise.com.br": {
label: [{ text: "Host\nwww.granmarquise.com.br", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Brazil",
},
size: 1,
times: [{ time: 1456177140000 }],
},
"187.18.184.70": {
label: [{ text: "187.18.184.70", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Brazil",
country: "Brazil",
host: ["host-www.granmarquise.com.br"],
},
size: 1,
glyphs: [{ image: Brazil, position: "ne" }],
},
"host-188.138.88.184": {
label: [{ text: "Host\n188.138.88.184", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Germany",
},
size: 1,
times: [{ time: 1456068180000 }],
},
"188.138.88.184": {
label: [{ text: "188.138.88.184", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Germany",
country: "Germany",
host: ["host-188.138.88.184"],
},
size: 1,
glyphs: [{ image: Germany, position: "ne" }],
},
"host-31.184.233.106": {
label: [{ text: "Host\n31.184.233.106", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Russia",
},
size: 1,
times: [{ time: 1456061820000 }],
},
"31.184.233.106": {
label: [{ text: "31.184.233.106", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Russia",
country: "Russia",
host: ["host-31.184.233.106"],
},
size: 1,
glyphs: [{ image: Russia, position: "ne" }],
},
"host-frame3d.de": {
label: [{ text: "Host\nframe3d.de", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Germany",
},
size: 1,
times: [{ time: 1455975420000 }],
},
"178.254.10.169": {
label: [{ text: "178.254.10.169", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Germany",
country: "Germany",
host: ["host-frame3d.de"],
},
size: 1,
glyphs: [{ image: Germany, position: "ne" }],
},
"host-autohaus-seevetal.com": {
label: [{ text: "Host\nautohaus-seevetal.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Germany",
},
size: 1,
times: [{ time: 1455967260000 }],
},
"81.169.145.162": {
label: [{ text: "81.169.145.162", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Germany",
country: "Germany",
host: ["host-autohaus-seevetal.com"],
},
size: 1,
glyphs: [{ image: Germany, position: "ne" }],
},
"host-bisofit.com": {
label: [{ text: "Host\nbisofit.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Ukraine",
},
size: 1,
times: [{ time: 1455967260000 }],
},
"185.68.16.111": {
label: [{ text: "185.68.16.111", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Ukraine",
country: "Ukraine",
host: ["host-bisofit.com"],
},
size: 1,
glyphs: [{ image: Ukraine, position: "ne" }],
},
"host-www.healthstafftravel.com.au": {
label: [{ text: "Host\nwww.healthstafftravel.com.au", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "USA",
},
size: 1,
times: [{ time: 1455967260000 }],
},
"64.207.186.229": {
label: [{ text: "64.207.186.229", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-www.healthstafftravel.com.au"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-31.41.47.37": {
label: [{ text: "Host\n31.41.47.37", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Russia",
},
size: 1,
times: [{ time: 1455964740000 }],
},
"31.41.47.37": {
label: [{ text: "31.41.47.37", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Russia",
country: "Russia",
host: ["host-31.41.47.37"],
},
size: 1,
glyphs: [{ image: Russia, position: "ne" }],
},
"host-gitybdjgbxd.nl": {
label: [{ text: "Host\ngitybdjgbxd.nl", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "USA",
},
size: 1,
times: [{ time: 1455964740000 }],
},
"host-svkjhguk.ru": {
label: [{ text: "Host\nsvkjhguk.ru", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Portugal",
},
size: 1,
times: [{ time: 1455964740000 }],
},
"host-pvwinlrmwvccuo.eu": {
label: [{ text: "Host\npvwinlrmwvccuo.eu", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Russia",
},
size: 1,
times: [{ time: 1455905940000 }],
},
"host-iglesiaelrenacer.com": {
label: [{ text: "Host\niglesiaelrenacer.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1455902340000 }],
},
"160.153.76.161": {
label: [{ text: "160.153.76.161", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-iglesiaelrenacer.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-aditaborai.com.br": {
label: [{ text: "Host\naditaborai.com.br", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "USA",
},
size: 1,
times: [{ time: 1455898380000 }],
},
"108.179.192.88": {
label: [{ text: "108.179.192.88", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-aditaborai.com.br"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-85.25.138.187": {
label: [{ text: "Host\n85.25.138.187", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Germany",
},
size: 1,
times: [{ time: 1455890580000 }],
},
"85.25.138.187": {
label: [{ text: "85.25.138.187", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Germany",
country: "Germany",
host: ["host-85.25.138.187"],
},
size: 1,
glyphs: [{ image: Germany, position: "ne" }],
},
"host-theassemblyguy.co.nz": {
label: [{ text: "Host\ntheassemblyguy.co.nz", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "New Zealand",
},
size: 1,
times: [{ time: 1455858780000 }],
},
"103.40.81.47": {
label: [{ text: "103.40.81.47", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "New Zealand",
country: "New Zealand",
host: ["host-theassemblyguy.co.nz"],
},
size: 1,
glyphs: [{ image: NewZealand, position: "ne" }],
},
"host-www.001edizioni.com": {
label: [{ text: "Host\nwww.001edizioni.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Italy",
},
size: 1,
times: [{ time: 1455858780000 }],
},
"95.110.230.190": {
label: [{ text: "95.110.230.190", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Italy",
country: "Italy",
host: ["host-www.001edizioni.com"],
},
size: 1,
glyphs: [{ image: Italy, position: "ne" }],
},
"host-94.242.57.45": {
label: [{ text: "Host\n94.242.57.45", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Russia",
},
size: 1,
times: [{ time: 1455820380000 }],
},
"94.242.57.45": {
label: [{ text: "94.242.57.45", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Russia",
country: "Russia",
host: ["host-94.242.57.45"],
},
size: 1,
glyphs: [{ image: Russia, position: "ne" }],
},
"host-46.4.239.76": {
label: [{ text: "Host\n46.4.239.76", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Germany",
},
size: 1,
times: [{ time: 1455803280000 }],
},
"46.4.239.76": {
label: [{ text: "46.4.239.76", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Germany",
country: "Germany",
host: ["host-46.4.239.76"],
},
size: 1,
glyphs: [{ image: Germany, position: "ne" }],
},
"host-185.14.30.97": {
label: [{ text: "Host\n185.14.30.97", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Netherlands",
},
size: 1,
times: [{ time: 1455802620000 }],
},
"185.14.30.97": {
label: [{ text: "185.14.30.97", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Netherlands",
country: "Netherlands",
host: ["host-185.14.30.97"],
},
size: 1,
glyphs: [{ image: Netherlands, position: "ne" }],
},
"host-dltvwp.it": {
label: [{ text: "Host\ndltvwp.it", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Britain",
},
size: 1,
times: [{ time: 1455798720000 }],
},
"104.238.173.18": {
label: [{ text: "104.238.173.18", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Britain",
country: "Britain",
host: ["host-dltvwp.it", "host-xfyubqmldwvuyar.yt"],
},
size: 1,
glyphs: [{ image: Britain, position: "ne" }],
},
"host-uxvvm.us": {
label: [{ text: "Host\nuxvvm.us", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "USA",
},
size: 1,
times: [{ time: 1455798720000 }],
},
"host-dongxinh.com": {
label: [{ text: "Host\ndongxinh.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "Vietnam",
},
size: 1,
times: [{ time: 1455795060000 }],
},
"103.27.60.14": {
label: [{ text: "103.27.60.14", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Vietnam",
country: "Vietnam",
host: ["host-dongxinh.com"],
},
size: 1,
glyphs: [{ image: Vietnam, position: "ne" }],
},
"host-dustywinslow.com": {
label: [{ text: "Host\ndustywinslow.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1455792240000 }],
},
"108.174.112.194": {
label: [{ text: "108.174.112.194", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-dustywinslow.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-95.181.171.58": {
label: [{ text: "Host\n95.181.171.58", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Russia",
},
size: 1,
times: [{ time: 1455792240000 }],
},
"95.181.171.58": {
label: [{ text: "95.181.171.58", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Russia",
country: "Russia",
host: ["host-95.181.171.58"],
},
size: 1,
glyphs: [{ image: Russia, position: "ne" }],
},
"host-kqlxtqptsmys.in": {
label: [{ text: "Host\nkqlxtqptsmys.in", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Portugal",
},
size: 1,
times: [{ time: 1455792240000 }],
},
"host-195.154.241.208": {
label: [{ text: "Host\n195.154.241.208", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "France",
},
size: 1,
times: [{ time: 1455762960000 }],
},
"195.154.241.208": {
label: [{ text: "195.154.241.208", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "France",
country: "France",
host: ["host-195.154.241.208"],
},
size: 1,
glyphs: [{ image: France, position: "ne" }],
},
"host-fnarsipfqe.pw": {
label: [{ text: "Host\nfnarsipfqe.pw", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "USA",
},
size: 1,
times: [{ time: 1455731820000 }],
},
"host-sdwempsovemtr.yt": {
label: [{ text: "Host\nsdwempsovemtr.yt", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "USA",
},
size: 1,
times: [{ time: 1455731820000 }],
},
"host-luvenxj.uk": {
label: [{ text: "Host\nluvenxj.uk", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "USA",
},
size: 1,
times: [{ time: 1455721140000 }],
},
"host-xfyubqmldwvuyar.yt": {
label: [{ text: "Host\nxfyubqmldwvuyar.yt", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Britain",
},
size: 1,
times: [{ time: 1455721140000 }],
},
"host-lovemydress.pl": {
label: [{ text: "Host\nlovemydress.pl", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "Poland",
},
size: 1,
times: [{ time: 1455710820000 }],
},
"79.96.7.15": {
label: [{ text: "79.96.7.15", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Poland",
country: "Poland",
host: ["host-lovemydress.pl"],
},
size: 1,
glyphs: [{ image: Poland, position: "ne" }],
},
"host-195.64.154.14": {
label: [{ text: "Host\n195.64.154.14", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Ukraine",
},
size: 1,
times: [{ time: 1455629340000 }],
},
"195.64.154.14": {
label: [{ text: "195.64.154.14", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Ukraine",
country: "Ukraine",
host: ["host-195.64.154.14"],
},
size: 1,
glyphs: [{ image: Ukraine, position: "ne" }],
},
"host-86.104.134.144": {
label: [{ text: "Host\n86.104.134.144", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "Locky",
ransomware: "Locky",
from: "Moldova",
},
size: 1,
times: [{ time: 1455611520000 }],
},
"86.104.134.144": {
label: [{ text: "86.104.134.144", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Moldova",
country: "Moldova",
host: ["host-86.104.134.144"],
},
size: 1,
glyphs: [{ image: Moldova, position: "ne" }],
},
"host-ekop.org": {
label: [{ text: "Host\nekop.org", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "Turkey",
},
size: 1,
times: [{ time: 1455543660000 }],
},
"94.73.150.60": {
label: [{ text: "94.73.150.60", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Turkey",
country: "Turkey",
host: ["host-ekop.org"],
},
size: 1,
glyphs: [{ image: Turkey, position: "ne" }],
},
"host-mosaudit.com": {
label: [{ text: "Host\nmosaudit.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "Russia",
},
size: 1,
times: [{ time: 1455531600000 }],
},
"81.177.140.144": {
label: [{ text: "81.177.140.144", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Russia",
country: "Russia",
host: ["host-mosaudit.com"],
},
size: 1,
glyphs: [{ image: Russia, position: "ne" }],
},
"host-yoyoeventos.com": {
label: [{ text: "Host\nyoyoeventos.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "Brazil",
},
size: 1,
times: [{ time: 1455419760000 }],
},
"187.45.240.67": {
label: [{ text: "187.45.240.67", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Brazil",
country: "Brazil",
host: ["host-yoyoeventos.com"],
},
size: 1,
glyphs: [{ image: Brazil, position: "ne" }],
},
"host-madisonbootcamps.com": {
label: [{ text: "Host\nmadisonbootcamps.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "USA",
},
size: 1,
times: [{ time: 1455393180000 }],
},
"50.63.64.23": {
label: [{ text: "50.63.64.23", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-madisonbootcamps.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-millsmanagement.nl": {
label: [{ text: "Host\nmillsmanagement.nl", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Netherlands",
},
size: 1,
times: [{ time: 1455354720000 }],
},
"83.137.194.38": {
label: [{ text: "83.137.194.38", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Netherlands",
country: "Netherlands",
host: ["host-millsmanagement.nl"],
},
size: 1,
glyphs: [{ image: Netherlands, position: "ne" }],
},
"host-nonnuoccaobang.com": {
label: [{ text: "Host\nnonnuoccaobang.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Vietnam",
},
size: 1,
times: [{ time: 1455326100000 }],
},
"113.52.45.94": {
label: [{ text: "113.52.45.94", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Vietnam",
country: "Vietnam",
host: ["host-nonnuoccaobang.com"],
},
size: 1,
glyphs: [{ image: Vietnam, position: "ne" }],
},
"host-italyprego.com": {
label: [{ text: "Host\nitalyprego.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Russia",
},
size: 1,
times: [{ time: 1455129960000 }],
},
"78.110.50.154": {
label: [{ text: "78.110.50.154", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Russia",
country: "Russia",
host: ["host-italyprego.com"],
},
size: 1,
glyphs: [{ image: Russia, position: "ne" }],
},
"host-www.kadinweb.net": {
label: [{ text: "Host\nwww.kadinweb.net", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Turkey",
},
size: 1,
times: [{ time: 1455070680000 }],
},
"185.8.33.117": {
label: [{ text: "185.8.33.117", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Turkey",
country: "Turkey",
host: ["host-www.kadinweb.net"],
},
size: 1,
glyphs: [{ image: Turkey, position: "ne" }],
},
"host-dunyamuzelerimuzesi.com": {
label: [{ text: "Host\ndunyamuzelerimuzesi.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "Turkey",
},
size: 1,
times: [{ time: 1455012480000 }],
},
"94.73.148.60": {
label: [{ text: "94.73.148.60", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Turkey",
country: "Turkey",
host: ["host-dunyamuzelerimuzesi.com"],
},
size: 1,
glyphs: [{ image: Turkey, position: "ne" }],
},
"host-iicsdrd.com": {
label: [{ text: "Host\niicsdrd.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1455012480000 }],
},
"205.144.171.9": {
label: [{ text: "205.144.171.9", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-iicsdrd.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-www.plexipr.com": {
label: [{ text: "Host\nwww.plexipr.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "USA",
},
size: 1,
times: [{ time: 1454970720000 }],
},
"65.98.35.114": {
label: [{ text: "65.98.35.114", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-www.plexipr.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-www.bishopbell.co.uk": {
label: [{ text: "Host\nwww.bishopbell.co.uk", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Britain",
},
size: 1,
times: [{ time: 1454911740000 }],
},
"217.177.8.89": {
label: [{ text: "217.177.8.89", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Britain",
country: "Britain",
host: ["host-www.bishopbell.co.uk"],
},
size: 1,
glyphs: [{ image: Britain, position: "ne" }],
},
"host-studiolegalecsb.it": {
label: [{ text: "Host\nstudiolegalecsb.it", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "USA",
},
size: 1,
times: [{ time: 1454910960000 }],
},
"104.47.161.9": {
label: [{ text: "104.47.161.9", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-studiolegalecsb.it"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-smartnote.co": {
label: [{ text: "Host\nsmartnote.co", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "USA",
},
size: 1,
times: [{ time: 1454910840000 }],
},
"184.168.68.65": {
label: [{ text: "184.168.68.65", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-smartnote.co"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-dechehang.com": {
label: [{ text: "Host\ndechehang.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "China",
},
size: 1,
times: [{ time: 1454789100000 }],
},
"112.124.96.107": {
label: [{ text: "112.124.96.107", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "China",
country: "China",
host: ["host-dechehang.com"],
},
size: 1,
glyphs: [{ image: China, position: "ne" }],
},
"host-www.feddoctor.com": {
label: [{ text: "Host\nwww.feddoctor.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "USA",
},
size: 1,
times: [{ time: 1454746920000 }],
},
"192.163.206.61": {
label: [{ text: "192.163.206.61", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-www.feddoctor.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-portret-tekening.nl": {
label: [{ text: "Host\nportret-tekening.nl", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Netherlands",
},
size: 1,
times: [{ time: 1454691540000 }],
},
"83.137.194.115": {
label: [{ text: "83.137.194.115", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Netherlands",
country: "Netherlands",
host: ["host-portret-tekening.nl"],
},
size: 1,
glyphs: [{ image: Netherlands, position: "ne" }],
},
"host-ascortimisoara.ro": {
label: [{ text: "Host\nascortimisoara.ro", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Romania",
},
size: 1,
times: [{ time: 1454650500000 }],
},
"86.105.207.51": {
label: [{ text: "86.105.207.51", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Romania",
country: "Romania",
host: ["host-ascortimisoara.ro"],
},
size: 1,
glyphs: [{ image: Romania, position: "ne" }],
},
"host-zavidovodom.com": {
label: [{ text: "Host\nzavidovodom.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "Russia",
},
size: 1,
times: [{ time: 1454626140000 }],
},
"78.110.50.137": {
label: [{ text: "78.110.50.137", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Russia",
country: "Russia",
host: ["host-zavidovodom.com"],
},
size: 1,
glyphs: [{ image: Russia, position: "ne" }],
},
"host-southinstrument.org": {
label: [{ text: "Host\nsouthinstrument.org", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "Poland",
},
size: 1,
times: [{ time: 1454512020000 }],
},
"212.85.98.241": {
label: [{ text: "212.85.98.241", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Poland",
country: "Poland",
host: ["host-southinstrument.org"],
},
size: 1,
glyphs: [{ image: Poland, position: "ne" }],
},
"host-wefindco.com": {
label: [{ text: "Host\nwefindco.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1454357820000 }],
},
"107.182.238.196": {
label: [{ text: "107.182.238.196", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-wefindco.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-westhollywooddentaloffice.com": {
label: [{ text: "Host\nwesthollywooddentaloffice.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1454357820000 }],
},
"184.168.24.1": {
label: [{ text: "184.168.24.1", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-westhollywooddentaloffice.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-surusegitimmerkezi.com": {
label: [{ text: "Host\nsurusegitimmerkezi.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "Turkey",
},
size: 1,
times: [{ time: 1454306820000 }],
},
"94.73.151.173": {
label: [{ text: "94.73.151.173", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Turkey",
country: "Turkey",
host: ["host-surusegitimmerkezi.com"],
},
size: 1,
glyphs: [{ image: Turkey, position: "ne" }],
},
"host-8vs.com": {
label: [{ text: "Host\n8vs.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "USA",
},
size: 1,
times: [{ time: 1454194860000 }],
},
"162.212.35.42": {
label: [{ text: "162.212.35.42", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-8vs.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-glitchygaming.com": {
label: [{ text: "Host\nglitchygaming.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "USA",
},
size: 1,
times: [{ time: 1454194740000 }],
},
"72.51.43.203": {
label: [{ text: "72.51.43.203", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-glitchygaming.com"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-grochowina.net": {
label: [{ text: "Host\ngrochowina.net", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Poland",
},
size: 1,
times: [{ time: 1454158020000 }],
},
"188.116.35.23": {
label: [{ text: "188.116.35.23", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Poland",
country: "Poland",
host: ["host-grochowina.net"],
},
size: 1,
glyphs: [{ image: Poland, position: "ne" }],
},
"host-tcblog.de": {
label: [{ text: "Host\ntcblog.de", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Germany",
},
size: 1,
times: [{ time: 1454153640000 }],
},
"212.90.148.111": {
label: [{ text: "212.90.148.111", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Germany",
country: "Germany",
host: ["host-tcblog.de"],
},
size: 1,
glyphs: [{ image: Germany, position: "ne" }],
},
"host-toysfortheneedyandaid.org": {
label: [{ text: "Host\ntoysfortheneedyandaid.org", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "TeslaCrypt",
ransomware: "TeslaCrypt",
from: "USA",
},
size: 1,
times: [{ time: 1453931400000 }],
},
"97.107.141.123": {
label: [{ text: "97.107.141.123", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-toysfortheneedyandaid.org"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-dining-bar.com": {
label: [{ text: "Host\ndining-bar.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Japan",
},
size: 1,
times: [{ time: 1453890480000 }],
},
"203.189.109.152": {
label: [{ text: "203.189.109.152", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Japan",
country: "Japan",
host: ["host-dining-bar.com"],
},
size: 1,
glyphs: [{ image: Japan, position: "ne" }],
},
"host-london-escorts-agency.org.uk": {
label: [{ text: "Host\nlondon-escorts-agency.org.uk", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "France",
},
size: 1,
times: [{ time: 1453885080000 }],
},
"178.32.72.112": {
label: [{ text: "178.32.72.112", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "France",
country: "France",
host: ["host-london-escorts-agency.org.uk"],
},
size: 1,
glyphs: [{ image: France, position: "ne" }],
},
"host-event-travel.co.uk": {
label: [{ text: "Host\nevent-travel.co.uk", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "France",
},
size: 1,
times: [{ time: 1453789020000 }],
},
"178.32.72.113": {
label: [{ text: "178.32.72.113", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "France",
country: "France",
host: ["host-event-travel.co.uk"],
},
size: 1,
glyphs: [{ image: France, position: "ne" }],
},
"host-jadwalpialadunia.in": {
label: [{ text: "Host\njadwalpialadunia.in", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "USA",
},
size: 1,
times: [{ time: 1453764420000 }],
},
"104.219.251.2": {
label: [{ text: "104.219.251.2", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-jadwalpialadunia.in"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-aspectdesigns.com.au": {
label: [{ text: "Host\naspectdesigns.com.au", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Australia",
},
size: 1,
times: [{ time: 1453751640000 }],
},
"101.2.169.10": {
label: [{ text: "101.2.169.10", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Australia",
country: "Australia",
host: ["host-aspectdesigns.com.au"],
},
size: 1,
glyphs: [{ image: Australia, position: "ne" }],
},
"host-inspirenetworks.in": {
label: [{ text: "Host\ninspirenetworks.in", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "India",
},
size: 1,
times: [{ time: 1453509480000 }],
},
"103.10.191.39": {
label: [{ text: "103.10.191.39", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "India",
country: "India",
host: ["host-inspirenetworks.in"],
},
size: 1,
glyphs: [{ image: India, position: "ne" }],
},
"host-cheapshirts.us": {
label: [{ text: "Host\ncheapshirts.us", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Vietnam",
},
size: 1,
times: [{ time: 1453344420000 }],
},
"123.30.187.106": {
label: [{ text: "123.30.187.106", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Vietnam",
country: "Vietnam",
host: ["host-cheapshirts.us"],
},
size: 1,
glyphs: [{ image: Vietnam, position: "ne" }],
},
"host-patrianossa.com.br": {
label: [{ text: "Host\npatrianossa.com.br", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "USA",
},
size: 1,
times: [{ time: 1453257000000 }],
},
"23.89.198.195": {
label: [{ text: "23.89.198.195", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-patrianossa.com.br"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-silstop.pl": {
label: [{ text: "Host\nsilstop.pl", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Poland",
},
size: 1,
times: [{ time: 1453255560000 }],
},
"46.41.144.45": {
label: [{ text: "46.41.144.45", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Poland",
country: "Poland",
host: ["host-silstop.pl"],
},
size: 1,
glyphs: [{ image: Poland, position: "ne" }],
},
"host-portalmaismidia.com.br": {
label: [{ text: "Host\nportalmaismidia.com.br", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "USA",
},
size: 1,
times: [{ time: 1453111260000 }],
},
"69.162.96.195": {
label: [{ text: "69.162.96.195", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "USA",
country: "USA",
host: ["host-portalmaismidia.com.br"],
},
size: 1,
glyphs: [{ image: USA, position: "ne" }],
},
"host-procrediti.com.ua": {
label: [{ text: "Host\nprocrediti.com.ua", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Russia",
},
size: 1,
times: [{ time: 1452770220000 }],
},
"62.109.23.126": {
label: [{ text: "62.109.23.126", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Russia",
country: "Russia",
host: ["host-procrediti.com.ua"],
},
size: 1,
glyphs: [{ image: Russia, position: "ne" }],
},
"host-www.gjscomputerservices.com.au": {
label: [{ text: "Host\nwww.gjscomputerservices.com.au", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Australia",
},
size: 1,
times: [{ time: 1452770220000 }],
},
"125.214.74.70": {
label: [{ text: "125.214.74.70", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Australia",
country: "Australia",
host: ["host-www.gjscomputerservices.com.au"],
},
size: 1,
glyphs: [{ image: Australia, position: "ne" }],
},
"host-ilovesport.kiev.ua": {
label: [{ text: "Host\nilovesport.kiev.ua", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Ukraine",
},
size: 1,
times: [{ time: 1452761940000 }],
},
"185.68.16.13": {
label: [{ text: "185.68.16.13", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Ukraine",
country: "Ukraine",
host: ["host-ilovesport.kiev.ua"],
},
size: 1,
glyphs: [{ image: Ukraine, position: "ne" }],
},
"host-babylicious.ie": {
label: [{ text: "Host\nbabylicious.ie", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Romania",
},
size: 1,
times: [{ time: 1452678360000 }],
},
"89.36.25.168": {
label: [{ text: "89.36.25.168", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Romania",
country: "Romania",
host: ["host-babylicious.ie"],
},
size: 1,
glyphs: [{ image: Romania, position: "ne" }],
},
"host-fun-pop.com": {
label: [{ text: "Host\nfun-pop.com", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "China",
},
size: 1,
times: [{ time: 1452539520000 }],
},
"121.40.201.95": {
label: [{ text: "121.40.201.95", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "China",
country: "China",
host: ["host-fun-pop.com"],
},
size: 1,
glyphs: [{ image: China, position: "ne" }],
},
"host-d3mpd.fe.uns.ac.id": {
label: [{ text: "Host\nd3mpd.fe.uns.ac.id", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Indonesia",
},
size: 1,
times: [{ time: 1452319980000 }],
},
"203.6.149.68": {
label: [{ text: "203.6.149.68", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Indonesia",
country: "Indonesia",
host: ["host-d3mpd.fe.uns.ac.id"],
},
size: 1,
glyphs: [{ image: Indonesia, position: "ne" }],
},
"host-icsot.na.its.ac.id": {
label: [{ text: "Host\nicsot.na.its.ac.id", ...style.darkLabelLow }],
...style.trans,
fontIcon: { text: "fas fa-server", color: "#444" },
data: {
type: "host",
group: "CryptoWall",
ransomware: "CryptoWall",
from: "Indonesia",
},
size: 1,
times: [{ time: 1451687940000 }],
},
"202.46.129.104": {
label: [{ text: "202.46.129.104", ...style.darkLabelLow }],
image: IPAddress,
...style.trans,
data: {
type: "ip",
group: "Indonesia",
country: "Indonesia",
host: ["host-icsot.na.its.ac.id"],
},
size: 1,
glyphs: [{ image: Indonesia, position: "ne" }],
},
"host-cwprfpjtmjb.biz-69.195.129.70": {
id1: "host-cwprfpjtmjb.biz",
id2: "69.195.129.70",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-83.217.8.155-83.217.8.155": {
id1: "host-83.217.8.155",
id2: "83.217.8.155",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-89.108.84.155-89.108.84.155": {
id1: "host-89.108.84.155",
id2: "89.108.84.155",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-gmtuae.com-182.50.158.108": {
id1: "host-gmtuae.com",
id2: "182.50.158.108",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-91.234.32.19-91.234.32.19": {
id1: "host-91.234.32.19",
id2: "91.234.32.19",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-faenzabike.makkie.com-213.26.174.81": {
id1: "host-faenzabike.makkie.com",
id2: "213.26.174.81",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-51.254.240.60-51.254.240.60": {
id1: "host-51.254.240.60",
id2: "51.254.240.60",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-axnemuevqnstqyflb.work-31.148.99.188": {
id1: "host-axnemuevqnstqyflb.work",
id2: "31.148.99.188",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-83.217.26.168-83.217.26.168": {
id1: "host-83.217.26.168",
id2: "83.217.26.168",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-bestinghana.com-184.168.51.1": {
id1: "host-bestinghana.com",
id2: "184.168.51.1",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-coolcases.info-72.167.232.144": {
id1: "host-coolcases.info",
id2: "72.167.232.144",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-htankds.info-91.219.31.18": {
id1: "host-htankds.info",
id2: "91.219.31.18",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-107.170.20.33-107.170.20.33": {
id1: "host-107.170.20.33",
id2: "107.170.20.33",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-runescape-autominer.info-192.185.46.61": {
id1: "host-runescape-autominer.info",
id2: "192.185.46.61",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-www.teacherassist.info-94.124.120.61": {
id1: "host-www.teacherassist.info",
id2: "94.124.120.61",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-kortingcodes.be-108.167.181.253": {
id1: "host-kortingcodes.be",
id2: "108.167.181.253",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-custommerchandisingservices.com-45.79.161.27": {
id1: "host-custommerchandisingservices.com",
id2: "45.79.161.27",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-bonjourtablier.com-212.227.247.229": {
id1: "host-bonjourtablier.com",
id2: "212.227.247.229",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-blackroom.club-81.177.135.232": {
id1: "host-blackroom.club",
id2: "81.177.135.232",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-artsabc.com-204.12.208.74": {
id1: "host-artsabc.com",
id2: "204.12.208.74",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-blessingshealthuk.com-107.180.50.165": {
id1: "host-blessingshealthuk.com",
id2: "107.180.50.165",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-anybug.net-78.217.205.113": {
id1: "host-anybug.net",
id2: "78.217.205.113",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-alushtadom.com-81.177.140.186": {
id1: "host-alushtadom.com",
id2: "81.177.140.186",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-blxbymhjva.info-69.195.129.70": {
id1: "host-blxbymhjva.info",
id2: "69.195.129.70",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-ahsqbeospcdrngfv.info-195.22.28.198": {
id1: "host-ahsqbeospcdrngfv.info",
id2: "195.22.28.198",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-cxlgwofgrjfoaa.info-195.22.28.197": {
id1: "host-cxlgwofgrjfoaa.info",
id2: "195.22.28.197",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-91.234.35.243-91.234.35.243": {
id1: "host-91.234.35.243",
id2: "91.234.35.243",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-4turka.com-185.12.108.138": {
id1: "host-4turka.com",
id2: "185.12.108.138",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-185.14.28.30-185.14.28.30": {
id1: "host-185.14.28.30",
id2: "185.14.28.30",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-31.184.196.74-31.184.196.74": {
id1: "host-31.184.196.74",
id2: "31.184.196.74",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-91.230.211.103-91.230.211.103": {
id1: "host-91.230.211.103",
id2: "91.230.211.103",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-91.219.29.81-91.219.29.81": {
id1: "host-91.219.29.81",
id2: "91.219.29.81",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-jghbktqepe.pw-195.22.28.198": {
id1: "host-jghbktqepe.pw",
id2: "195.22.28.198",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-lorangeriedelareine.fr-62.210.116.247": {
id1: "host-lorangeriedelareine.fr",
id2: "62.210.116.247",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-gfcuxnaek.ru-195.22.28.199": {
id1: "host-gfcuxnaek.ru",
id2: "195.22.28.199",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-uhhvhjqowpgopq.xyz-208.100.26.234": {
id1: "host-uhhvhjqowpgopq.xyz",
id2: "208.100.26.234",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-ampjsppmftmfdblpt.info-195.22.28.199": {
id1: "host-ampjsppmftmfdblpt.info",
id2: "195.22.28.199",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-207.244.97.230-207.244.97.230": {
id1: "host-207.244.97.230",
id2: "207.244.97.230",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-46.165.253.93-46.165.253.93": {
id1: "host-46.165.253.93",
id2: "46.165.253.93",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-thinktrimbebeautiful.com.au-182.50.149.1": {
id1: "host-thinktrimbebeautiful.com.au",
id2: "182.50.149.1",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-baby.teasso.com-162.210.102.32": {
id1: "host-baby.teasso.com",
id2: "162.210.102.32",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-helcel.com-72.41.18.2": {
id1: "host-helcel.com",
id2: "72.41.18.2",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-loseweightwithmysite.com-74.220.207.112": {
id1: "host-loseweightwithmysite.com",
id2: "74.220.207.112",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-nhhyxorxbxarxe.org-195.22.28.196": {
id1: "host-nhhyxorxbxarxe.org",
id2: "195.22.28.196",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-gsebqsi.ru-195.22.28.198": {
id1: "host-gsebqsi.ru",
id2: "195.22.28.198",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-onguso.com-72.41.18.2": {
id1: "host-onguso.com",
id2: "72.41.18.2",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-ywjgjvpuyitnbiw.info-195.22.28.198": {
id1: "host-ywjgjvpuyitnbiw.info",
id2: "195.22.28.198",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-kcdfajaxngiff.info-195.22.28.199": {
id1: "host-kcdfajaxngiff.info",
id2: "195.22.28.199",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-omeaswslhgdw.xyz-208.100.26.234": {
id1: "host-omeaswslhgdw.xyz",
id2: "208.100.26.234",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-91.219.31.15-91.219.31.15": {
id1: "host-91.219.31.15",
id2: "91.219.31.15",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-silocot.com-62.210.88.33": {
id1: "host-silocot.com",
id2: "62.210.88.33",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-gooseart.com-195.128.174.143": {
id1: "host-gooseart.com",
id2: "195.128.174.143",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-88.214.237.57-88.214.237.57": {
id1: "host-88.214.237.57",
id2: "88.214.237.57",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-91.219.28.44-91.219.28.44": {
id1: "host-91.219.28.44",
id2: "91.219.28.44",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-bluedreambd.com-192.185.174.198": {
id1: "host-bluedreambd.com",
id2: "192.185.174.198",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-colinmccarthynfl.com-50.62.250.1": {
id1: "host-colinmccarthynfl.com",
id2: "50.62.250.1",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-193.9.28.49-193.9.28.49": {
id1: "host-193.9.28.49",
id2: "193.9.28.49",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-37.139.2.214-37.139.2.214": {
id1: "host-37.139.2.214",
id2: "37.139.2.214",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-43nutrientes.com-50.87.149.41": {
id1: "host-43nutrientes.com",
id2: "50.87.149.41",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-getdiscounts.org-205.144.171.76": {
id1: "host-getdiscounts.org",
id2: "205.144.171.76",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-naomihawkins.com-50.63.97.1": {
id1: "host-naomihawkins.com",
id2: "50.63.97.1",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-traditions-and-custom.com-72.41.18.212": {
id1: "host-traditions-and-custom.com",
id2: "72.41.18.212",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-closerdaybyday.info-192.185.151.39": {
id1: "host-closerdaybyday.info",
id2: "192.185.151.39",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-coldheartedny.com-107.180.26.75": {
id1: "host-coldheartedny.com",
id2: "107.180.26.75",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-31.148.99.241-31.148.99.241": {
id1: "host-31.148.99.241",
id2: "31.148.99.241",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-helpdesk.keldon.info-194.228.3.204": {
id1: "host-helpdesk.keldon.info",
id2: "194.228.3.204",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-addagapublicschool.com-23.229.239.227": {
id1: "host-addagapublicschool.com",
id2: "23.229.239.227",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-thejonesact.com-192.186.220.8": {
id1: "host-thejonesact.com",
id2: "192.186.220.8",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-studiosundaytv.com-76.162.168.113": {
id1: "host-studiosundaytv.com",
id2: "76.162.168.113",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-theoneflooring.com-107.180.4.122": {
id1: "host-theoneflooring.com",
id2: "107.180.4.122",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-goldberg-share.com-107.180.43.132": {
id1: "host-goldberg-share.com",
id2: "107.180.43.132",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-91.223.180.240-91.223.180.240": {
id1: "host-91.223.180.240",
id2: "91.223.180.240",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-45.55.192.133-45.55.192.133": {
id1: "host-45.55.192.133",
id2: "45.55.192.133",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-hotcasinogames.org-217.70.180.150": {
id1: "host-hotcasinogames.org",
id2: "217.70.180.150",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-91.209.77.86-91.209.77.86": {
id1: "host-91.209.77.86",
id2: "91.209.77.86",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-88.198.119.177-88.198.119.177": {
id1: "host-88.198.119.177",
id2: "88.198.119.177",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-forms.net.in-160.153.51.192": {
id1: "host-forms.net.in",
id2: "160.153.51.192",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-kknk-shop.dev.onnetdigital.com-176.9.2.244": {
id1: "host-kknk-shop.dev.onnetdigital.com",
id2: "176.9.2.244",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-mahmutersan.com.tr-160.153.18.235": {
id1: "host-mahmutersan.com.tr",
id2: "160.153.18.235",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-barjhxoye.info-195.22.28.197": {
id1: "host-barjhxoye.info",
id2: "195.22.28.197",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-sqrgvbgfyya.org-69.195.129.70": {
id1: "host-sqrgvbgfyya.org",
id2: "69.195.129.70",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-81.177.181.164-81.177.181.164": {
id1: "host-81.177.181.164",
id2: "81.177.181.164",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-casasembargada.com-23.229.166.194": {
id1: "host-casasembargada.com",
id2: "23.229.166.194",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-dwytqrgblrynsgtew.org-69.195.129.70": {
id1: "host-dwytqrgblrynsgtew.org",
id2: "69.195.129.70",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-csskol.org-160.153.51.192": {
id1: "host-csskol.org",
id2: "160.153.51.192",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-31.41.44.130-31.41.44.130": {
id1: "host-31.41.44.130",
id2: "31.41.44.130",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-51.254.240.45-51.254.240.45": {
id1: "host-51.254.240.45",
id2: "51.254.240.45",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-82.146.37.200-82.146.37.200": {
id1: "host-82.146.37.200",
id2: "82.146.37.200",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-grosirkecantikan.com-192.185.51.87": {
id1: "host-grosirkecantikan.com",
id2: "192.185.51.87",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-93.170.131.108-93.170.131.108": {
id1: "host-93.170.131.108",
id2: "93.170.131.108",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-naturstein-schubert.de-91.250.80.97": {
id1: "host-naturstein-schubert.de",
id2: "91.250.80.97",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-83.217.25.239-83.217.25.239": {
id1: "host-83.217.25.239",
id2: "83.217.25.239",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-vtc360.com-107.180.34.199": {
id1: "host-vtc360.com",
id2: "107.180.34.199",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-estudiobarco.com.ar-50.22.11.55": {
id1: "host-estudiobarco.com.ar",
id2: "50.22.11.55",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-5.135.76.18-5.135.76.18": {
id1: "host-5.135.76.18",
id2: "5.135.76.18",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-109.234.35.128-109.234.35.128": {
id1: "host-109.234.35.128",
id2: "109.234.35.128",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-starsoftheworld.org-166.62.28.102": {
id1: "host-starsoftheworld.org",
id2: "166.62.28.102",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-185.75.46.4-185.75.46.4": {
id1: "host-185.75.46.4",
id2: "185.75.46.4",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-83.217.8.127-83.217.8.127": {
id1: "host-83.217.8.127",
id2: "83.217.8.127",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-78.46.170.79-78.46.170.79": {
id1: "host-78.46.170.79",
id2: "78.46.170.79",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-185.141.25.150-185.141.25.150": {
id1: "host-185.141.25.150",
id2: "185.141.25.150",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-holishit.in-160.153.63.4": {
id1: "host-holishit.in",
id2: "160.153.63.4",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-91.200.14.73-91.200.14.73": {
id1: "host-91.200.14.73",
id2: "91.200.14.73",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-92.63.87.134-92.63.87.134": {
id1: "host-92.63.87.134",
id2: "92.63.87.134",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-minteee.com-178.254.0.121": {
id1: "host-minteee.com",
id2: "178.254.0.121",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-84.19.170.249-84.19.170.249": {
id1: "host-84.19.170.249",
id2: "84.19.170.249",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-176.31.47.100-176.31.47.100": {
id1: "host-176.31.47.100",
id2: "176.31.47.100",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-185.117.72.94-185.117.72.94": {
id1: "host-185.117.72.94",
id2: "185.117.72.94",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-asianbooty.net-107.180.50.230": {
id1: "host-asianbooty.net",
id2: "107.180.50.230",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-89.108.84.132-89.108.84.132": {
id1: "host-89.108.84.132",
id2: "89.108.84.132",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-strategicdisaster.info-192.186.197.161": {
id1: "host-strategicdisaster.info",
id2: "192.186.197.161",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-www.affiliateproductes.com-107.180.4.124": {
id1: "host-www.affiliateproductes.com",
id2: "107.180.4.124",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-affiliateproductes.com-107.180.4.124": {
id1: "host-affiliateproductes.com",
id2: "107.180.4.124",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-bwpegsfa.info-45.56.77.175": {
id1: "host-bwpegsfa.info",
id2: "45.56.77.175",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-swfqg.in-208.100.26.234": {
id1: "host-swfqg.in",
id2: "208.100.26.234",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-xyhhuxa.be-195.22.28.196": {
id1: "host-xyhhuxa.be",
id2: "195.22.28.196",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-hmndhdbscgru.pw-69.195.129.70": {
id1: "host-hmndhdbscgru.pw",
id2: "69.195.129.70",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-uhgmnigjpf.biz-93.170.104.127": {
id1: "host-uhgmnigjpf.biz",
id2: "93.170.104.127",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-videoaminproduktion.de-87.238.192.67": {
id1: "host-videoaminproduktion.de",
id2: "87.238.192.67",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-mcgroupuae.com-166.62.28.147": {
id1: "host-mcgroupuae.com",
id2: "166.62.28.147",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-46.8.44.39-46.8.44.39": {
id1: "host-46.8.44.39",
id2: "46.8.44.39",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-pilfingr.com-192.186.208.225": {
id1: "host-pilfingr.com",
id2: "192.186.208.225",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-setprosports.info-198.12.157.163": {
id1: "host-setprosports.info",
id2: "198.12.157.163",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-marvel-games.com-167.160.162.182": {
id1: "host-marvel-games.com",
id2: "167.160.162.182",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-217.12.218.158-217.12.218.158": {
id1: "host-217.12.218.158",
id2: "217.12.218.158",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-84.19.170.244-84.19.170.244": {
id1: "host-84.19.170.244",
id2: "84.19.170.244",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-maxmpl.com-103.27.87.88": {
id1: "host-maxmpl.com",
id2: "103.27.87.88",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-samuday.org-50.31.14.17": {
id1: "host-samuday.org",
id2: "50.31.14.17",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-diwali2k15.in-64.20.35.186": {
id1: "host-diwali2k15.in",
id2: "64.20.35.186",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-195.64.154.126-195.64.154.126": {
id1: "host-195.64.154.126",
id2: "195.64.154.126",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-masterlegue.com-62.210.83.56": {
id1: "host-masterlegue.com",
id2: "62.210.83.56",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-toolaria.com-160.153.49.102": {
id1: "host-toolaria.com",
id2: "160.153.49.102",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-92.63.87.106-92.63.87.106": {
id1: "host-92.63.87.106",
id2: "92.63.87.106",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-tradinbow.com-213.186.33.104": {
id1: "host-tradinbow.com",
id2: "213.186.33.104",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-217.12.199.90-217.12.199.90": {
id1: "host-217.12.199.90",
id2: "217.12.199.90",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-nwcpgymgh.work-5.34.183.21": {
id1: "host-nwcpgymgh.work",
id2: "5.34.183.21",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-mkis.org-50.87.127.96": {
id1: "host-mkis.org",
id2: "50.87.127.96",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-46.148.20.46-46.148.20.46": {
id1: "host-46.148.20.46",
id2: "46.148.20.46",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-commonsenseprotection.com-50.116.109.230": {
id1: "host-commonsenseprotection.com",
id2: "50.116.109.230",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-classemgmt.testbada.com-115.94.157.252": {
id1: "host-classemgmt.testbada.com",
id2: "115.94.157.252",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-exaltation.info-46.235.47.104": {
id1: "host-exaltation.info",
id2: "46.235.47.104",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-resumosdenovela.net-108.167.185.237": {
id1: "host-resumosdenovela.net",
id2: "108.167.185.237",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-plfbvdrpvsm.pw-208.100.26.234": {
id1: "host-plfbvdrpvsm.pw",
id2: "208.100.26.234",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-shampooherbal.com-104.128.239.91": {
id1: "host-shampooherbal.com",
id2: "104.128.239.91",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-joshsawyerdesign.com-107.180.4.11": {
id1: "host-joshsawyerdesign.com",
id2: "107.180.4.11",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-51.254.181.122-51.254.181.122": {
id1: "host-51.254.181.122",
id2: "51.254.181.122",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-hmgame.net-66.147.244.86": {
id1: "host-hmgame.net",
id2: "66.147.244.86",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-51.255.107.8-51.255.107.8": {
id1: "host-51.255.107.8",
id2: "51.255.107.8",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-marketathart.com-192.185.35.88": {
id1: "host-marketathart.com",
id2: "192.185.35.88",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-91.195.12.187-91.195.12.187": {
id1: "host-91.195.12.187",
id2: "91.195.12.187",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-prodocument.co.uk-67.23.226.169": {
id1: "host-prodocument.co.uk",
id2: "67.23.226.169",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-188.127.231.116-188.127.231.116": {
id1: "host-188.127.231.116",
id2: "188.127.231.116",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-37.139.27.52-37.139.27.52": {
id1: "host-37.139.27.52",
id2: "37.139.27.52",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-51.255.107.10-51.255.107.10": {
id1: "host-51.255.107.10",
id2: "51.255.107.10",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-esbook.com-174.136.12.119": {
id1: "host-esbook.com",
id2: "174.136.12.119",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-nlhomegarden.com-107.180.50.210": {
id1: "host-nlhomegarden.com",
id2: "107.180.50.210",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-emmy2015.com-107.180.50.183": {
id1: "host-emmy2015.com",
id2: "107.180.50.183",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-kel52.com-108.167.141.20": {
id1: "host-kel52.com",
id2: "108.167.141.20",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-controlfreaknetworks.com-97.74.249.1": {
id1: "host-controlfreaknetworks.com",
id2: "97.74.249.1",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-jambola.com-208.109.189.88": {
id1: "host-jambola.com",
id2: "208.109.189.88",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-oregonreversemortgage.com-198.143.138.43": {
id1: "host-oregonreversemortgage.com",
id2: "198.143.138.43",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-shirongfeng.cn-103.254.148.121": {
id1: "host-shirongfeng.cn",
id2: "103.254.148.121",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-91.234.32.192-91.234.32.192": {
id1: "host-91.234.32.192",
id2: "91.234.32.192",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-91.219.30.254-91.219.30.254": {
id1: "host-91.219.30.254",
id2: "91.219.30.254",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-31.184.196.75-31.184.196.75": {
id1: "host-31.184.196.75",
id2: "31.184.196.75",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-sappmtraining.com-166.62.4.223": {
id1: "host-sappmtraining.com",
id2: "166.62.4.223",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-vtechshop.net-203.124.115.1": {
id1: "host-vtechshop.net",
id2: "203.124.115.1",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-31.184.196.78-31.184.196.78": {
id1: "host-31.184.196.78",
id2: "31.184.196.78",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-multibrandphone.com-162.208.8.165": {
id1: "host-multibrandphone.com",
id2: "162.208.8.165",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-tele-channel.com-178.162.214.146": {
id1: "host-tele-channel.com",
id2: "178.162.214.146",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-91.234.33.149-91.234.33.149": {
id1: "host-91.234.33.149",
id2: "91.234.33.149",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-anoukdelecluse.nl-83.137.194.20": {
id1: "host-anoukdelecluse.nl",
id2: "83.137.194.20",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-gibdd.ws-178.208.83.11": {
id1: "host-gibdd.ws",
id2: "178.208.83.11",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-specializedaccess.co.uk-85.233.160.146": {
id1: "host-specializedaccess.co.uk",
id2: "85.233.160.146",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-151.236.14.51-151.236.14.51": {
id1: "host-151.236.14.51",
id2: "151.236.14.51",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-78.40.108.39-78.40.108.39": {
id1: "host-78.40.108.39",
id2: "78.40.108.39",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-bqbbsfdw.be-195.22.28.199": {
id1: "host-bqbbsfdw.be",
id2: "195.22.28.199",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-egovrxvuspxck.be-195.22.26.248": {
id1: "host-egovrxvuspxck.be",
id2: "195.22.26.248",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-marciogerhardtsouza.com.br-186.202.153.14": {
id1: "host-marciogerhardtsouza.com.br",
id2: "186.202.153.14",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-ahlanmedicalcentre.com-184.168.47.225": {
id1: "host-ahlanmedicalcentre.com",
id2: "184.168.47.225",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-cam-itour.info-188.40.132.132": {
id1: "host-cam-itour.info",
id2: "188.40.132.132",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-91.195.12.131-91.195.12.131": {
id1: "host-91.195.12.131",
id2: "91.195.12.131",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-37.235.53.18-37.235.53.18": {
id1: "host-37.235.53.18",
id2: "37.235.53.18",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-www.informaticauno.net-50.87.28.241": {
id1: "host-www.informaticauno.net",
id2: "50.87.28.241",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-89.108.85.163-89.108.85.163": {
id1: "host-89.108.85.163",
id2: "89.108.85.163",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-149.154.157.14-149.154.157.14": {
id1: "host-149.154.157.14",
id2: "149.154.157.14",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-drcordoba.com-50.62.125.1": {
id1: "host-drcordoba.com",
id2: "50.62.125.1",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-192.121.16.196-192.121.16.196": {
id1: "host-192.121.16.196",
id2: "192.121.16.196",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-iheartshop.net-128.199.187.47": {
id1: "host-iheartshop.net",
id2: "128.199.187.47",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-glhxgchhfemcjgr.pw-195.22.28.197": {
id1: "host-glhxgchhfemcjgr.pw",
id2: "195.22.28.197",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-csucanuevo.csuca.org-186.151.199.5": {
id1: "host-csucanuevo.csuca.org",
id2: "186.151.199.5",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-185.92.220.35-185.92.220.35": {
id1: "host-185.92.220.35",
id2: "185.92.220.35",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-newculturemediablog.com-50.63.50.75": {
id1: "host-newculturemediablog.com",
id2: "50.63.50.75",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-saludaonline.com-184.168.53.1": {
id1: "host-saludaonline.com",
id2: "184.168.53.1",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-109.237.111.168-109.237.111.168": {
id1: "host-109.237.111.168",
id2: "109.237.111.168",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-46.108.39.18-46.108.39.18": {
id1: "host-46.108.39.18",
id2: "46.108.39.18",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-212.47.223.19-212.47.223.19": {
id1: "host-212.47.223.19",
id2: "212.47.223.19",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-tmfilms.net-50.62.122.1": {
id1: "host-tmfilms.net",
id2: "50.62.122.1",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-openroadsolutions.com-208.109.243.37": {
id1: "host-openroadsolutions.com",
id2: "208.109.243.37",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-www.decorandoimoveis.com-198.154.250.33": {
id1: "host-www.decorandoimoveis.com",
id2: "198.154.250.33",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-185.82.216.213-185.82.216.213": {
id1: "host-185.82.216.213",
id2: "185.82.216.213",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-conspec.us-50.62.245.1": {
id1: "host-conspec.us",
id2: "50.62.245.1",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-tusrecetas.net-69.162.104.22": {
id1: "host-tusrecetas.net",
id2: "69.162.104.22",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-trion.com.ph-104.238.111.90": {
id1: "host-trion.com.ph",
id2: "104.238.111.90",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-fitga.ru-195.22.28.197": {
id1: "host-fitga.ru",
id2: "195.22.28.197",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-cudcfybkk.pw-195.22.28.196": {
id1: "host-cudcfybkk.pw",
id2: "195.22.28.196",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-wdvxeval.ru-195.22.28.197": {
id1: "host-wdvxeval.ru",
id2: "195.22.28.197",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-gvludcvhcrjwmgq.in-195.22.28.196": {
id1: "host-gvludcvhcrjwmgq.in",
id2: "195.22.28.196",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-goktugyeli.com-185.22.184.156": {
id1: "host-goktugyeli.com",
id2: "185.22.184.156",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-iqinternal.com-107.180.44.212": {
id1: "host-iqinternal.com",
id2: "107.180.44.212",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-hamilton150.co.nz-167.88.167.10": {
id1: "host-hamilton150.co.nz",
id2: "167.88.167.10",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-fisioactivo.com-160.153.79.168": {
id1: "host-fisioactivo.com",
id2: "160.153.79.168",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-serbiotecnicos.com-198.252.78.160": {
id1: "host-serbiotecnicos.com",
id2: "198.252.78.160",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-onegiantstore.com-50.62.66.1": {
id1: "host-onegiantstore.com",
id2: "50.62.66.1",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-takaram.ir-82.102.8.142": {
id1: "host-takaram.ir",
id2: "82.102.8.142",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-dustinhansenbook.com-173.201.145.1": {
id1: "host-dustinhansenbook.com",
id2: "173.201.145.1",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-95.213.184.10-95.213.184.10": {
id1: "host-95.213.184.10",
id2: "95.213.184.10",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-192.71.213.69-192.71.213.69": {
id1: "host-192.71.213.69",
id2: "192.71.213.69",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-americancorner.udp.cl-200.14.85.32": {
id1: "host-americancorner.udp.cl",
id2: "200.14.85.32",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-ptlchemicaltrading.com-119.59.120.21": {
id1: "host-ptlchemicaltrading.com",
id2: "119.59.120.21",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-opravnatramvaji.cz-194.228.3.204": {
id1: "host-opravnatramvaji.cz",
id2: "194.228.3.204",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-5.34.183.195-5.34.183.195": {
id1: "host-5.34.183.195",
id2: "5.34.183.195",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-kypsuw.pw-195.22.28.198": {
id1: "host-kypsuw.pw",
id2: "195.22.28.198",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-185.14.29.188-185.14.29.188": {
id1: "host-185.14.29.188",
id2: "185.14.29.188",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-challengestrata.com.au-175.107.181.167": {
id1: "host-challengestrata.com.au",
id2: "175.107.181.167",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-dichiro.com-206.188.193.93": {
id1: "host-dichiro.com",
id2: "206.188.193.93",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-beyondthedog.net-184.168.47.225": {
id1: "host-beyondthedog.net",
id2: "184.168.47.225",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-91.219.29.55-91.219.29.55": {
id1: "host-91.219.29.55",
id2: "91.219.29.55",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-music.mbsaeger.com-76.125.213.205": {
id1: "host-music.mbsaeger.com",
id2: "76.125.213.205",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-stacon.eu-188.116.9.2": {
id1: "host-stacon.eu",
id2: "188.116.9.2",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-worldisonefamily.info-23.229.4.214": {
id1: "host-worldisonefamily.info",
id2: "23.229.4.214",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-imagescroll.com-62.210.141.228": {
id1: "host-imagescroll.com",
id2: "62.210.141.228",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-lazymoosestamping.com-173.225.189.5": {
id1: "host-lazymoosestamping.com",
id2: "173.225.189.5",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-maternalserenity.co.uk-69.10.56.10": {
id1: "host-maternalserenity.co.uk",
id2: "69.10.56.10",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-hongsi.com-110.45.144.173": {
id1: "host-hongsi.com",
id2: "110.45.144.173",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-biocarbon.com.ec-192.185.39.66": {
id1: "host-biocarbon.com.ec",
id2: "192.185.39.66",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-cursos.feyda.net-198.154.228.128": {
id1: "host-cursos.feyda.net",
id2: "198.154.228.128",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-igatha.com-217.23.12.215": {
id1: "host-igatha.com",
id2: "217.23.12.215",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-www.vishvagujarat.com-104.27.142.99": {
id1: "host-www.vishvagujarat.com",
id2: "104.27.142.99",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-heizhuangym.com-103.254.148.129": {
id1: "host-heizhuangym.com",
id2: "103.254.148.129",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-best-service.jp-203.145.230.194": {
id1: "host-best-service.jp",
id2: "203.145.230.194",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-surrogacyandadoption.com-185.26.122.59": {
id1: "host-surrogacyandadoption.com",
id2: "185.26.122.59",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-jessforkicks.com-96.226.119.251": {
id1: "host-jessforkicks.com",
id2: "96.226.119.251",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-viralcrazies.com-46.166.187.64": {
id1: "host-viralcrazies.com",
id2: "46.166.187.64",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-domaine-cassillac.com-213.186.33.87": {
id1: "host-domaine-cassillac.com",
id2: "213.186.33.87",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-double-wing.de-217.119.54.152": {
id1: "host-double-wing.de",
id2: "217.119.54.152",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-eatside.es-134.0.15.35": {
id1: "host-eatside.es",
id2: "134.0.15.35",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-185.22.67.27-185.22.67.27": {
id1: "host-185.22.67.27",
id2: "185.22.67.27",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-91.121.97.170-91.121.97.170": {
id1: "host-91.121.97.170",
id2: "91.121.97.170",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-definitionen.de-136.243.69.220": {
id1: "host-definitionen.de",
id2: "136.243.69.220",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-ecocalsots.com-37.247.125.42": {
id1: "host-ecocalsots.com",
id2: "37.247.125.42",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-recaswine.ro-93.118.36.235": {
id1: "host-recaswine.ro",
id2: "93.118.36.235",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-nupleta.com.br-186.202.127.236": {
id1: "host-nupleta.com.br",
id2: "186.202.127.236",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-bnjhx.eu-195.22.28.197": {
id1: "host-bnjhx.eu",
id2: "195.22.28.197",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-jxqdry.ru-195.22.28.199": {
id1: "host-jxqdry.ru",
id2: "195.22.28.199",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-odgtnkmq.pw-98.143.148.173": {
id1: "host-odgtnkmq.pw",
id2: "98.143.148.173",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-lutheranph.com-107.180.41.49": {
id1: "host-lutheranph.com",
id2: "107.180.41.49",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-5.34.183.136-5.34.183.136": {
id1: "host-5.34.183.136",
id2: "5.34.183.136",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-51.254.19.227-51.254.19.227": {
id1: "host-51.254.19.227",
id2: "51.254.19.227",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-national-drafting.com-166.62.93.187": {
id1: "host-national-drafting.com",
id2: "166.62.93.187",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-31.184.197.119-31.184.197.119": {
id1: "host-31.184.197.119",
id2: "31.184.197.119",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-snibi.se-212.16.182.196": {
id1: "host-snibi.se",
id2: "212.16.182.196",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-haarsaloncindy.nl-5.178.65.43": {
id1: "host-haarsaloncindy.nl",
id2: "5.178.65.43",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-www.big-cola.com-77.73.81.35": {
id1: "host-www.big-cola.com",
id2: "77.73.81.35",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-salesandmarketing101.net-23.229.172.137": {
id1: "host-salesandmarketing101.net",
id2: "23.229.172.137",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-ikstrade.co.kr-110.45.144.173": {
id1: "host-ikstrade.co.kr",
id2: "110.45.144.173",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-185.46.11.239-185.46.11.239": {
id1: "host-185.46.11.239",
id2: "185.46.11.239",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-feuerwehr-stadt-riesa.de-178.254.50.156": {
id1: "host-feuerwehr-stadt-riesa.de",
id2: "178.254.50.156",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-paintituppottery.com-208.117.38.143": {
id1: "host-paintituppottery.com",
id2: "208.117.38.143",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-takatei.com-203.189.109.240": {
id1: "host-takatei.com",
id2: "203.189.109.240",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-www.hanoiguidedtours.com-104.131.43.146": {
id1: "host-www.hanoiguidedtours.com",
id2: "104.131.43.146",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-www.rippedknees.co.uk-212.48.68.63": {
id1: "host-www.rippedknees.co.uk",
id2: "212.48.68.63",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-salaeigroup.com-107.180.2.115": {
id1: "host-salaeigroup.com",
id2: "107.180.2.115",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-ecolux-comfort.com-188.127.249.243": {
id1: "host-ecolux-comfort.com",
id2: "188.127.249.243",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-abdal.com.ua-185.68.16.196": {
id1: "host-abdal.com.ua",
id2: "185.68.16.196",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-building.msu.ac.th-202.28.32.20": {
id1: "host-building.msu.ac.th",
id2: "202.28.32.20",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-konyavakfi.nl-91.208.60.158": {
id1: "host-konyavakfi.nl",
id2: "91.208.60.158",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-www.granmarquise.com.br-187.18.184.70": {
id1: "host-www.granmarquise.com.br",
id2: "187.18.184.70",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-188.138.88.184-188.138.88.184": {
id1: "host-188.138.88.184",
id2: "188.138.88.184",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-31.184.233.106-31.184.233.106": {
id1: "host-31.184.233.106",
id2: "31.184.233.106",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-frame3d.de-178.254.10.169": {
id1: "host-frame3d.de",
id2: "178.254.10.169",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-autohaus-seevetal.com-81.169.145.162": {
id1: "host-autohaus-seevetal.com",
id2: "81.169.145.162",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-bisofit.com-185.68.16.111": {
id1: "host-bisofit.com",
id2: "185.68.16.111",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-www.healthstafftravel.com.au-64.207.186.229": {
id1: "host-www.healthstafftravel.com.au",
id2: "64.207.186.229",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-31.41.47.37-31.41.47.37": {
id1: "host-31.41.47.37",
id2: "31.41.47.37",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-gitybdjgbxd.nl-98.143.148.173": {
id1: "host-gitybdjgbxd.nl",
id2: "98.143.148.173",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-svkjhguk.ru-195.22.28.199": {
id1: "host-svkjhguk.ru",
id2: "195.22.28.199",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-pvwinlrmwvccuo.eu-185.46.11.239": {
id1: "host-pvwinlrmwvccuo.eu",
id2: "185.46.11.239",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-iglesiaelrenacer.com-160.153.76.161": {
id1: "host-iglesiaelrenacer.com",
id2: "160.153.76.161",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-aditaborai.com.br-108.179.192.88": {
id1: "host-aditaborai.com.br",
id2: "108.179.192.88",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-85.25.138.187-85.25.138.187": {
id1: "host-85.25.138.187",
id2: "85.25.138.187",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-theassemblyguy.co.nz-103.40.81.47": {
id1: "host-theassemblyguy.co.nz",
id2: "103.40.81.47",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-www.001edizioni.com-95.110.230.190": {
id1: "host-www.001edizioni.com",
id2: "95.110.230.190",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-94.242.57.45-94.242.57.45": {
id1: "host-94.242.57.45",
id2: "94.242.57.45",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-46.4.239.76-46.4.239.76": {
id1: "host-46.4.239.76",
id2: "46.4.239.76",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-185.14.30.97-185.14.30.97": {
id1: "host-185.14.30.97",
id2: "185.14.30.97",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-dltvwp.it-104.238.173.18": {
id1: "host-dltvwp.it",
id2: "104.238.173.18",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-uxvvm.us-69.195.129.70": {
id1: "host-uxvvm.us",
id2: "69.195.129.70",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-dongxinh.com-103.27.60.14": {
id1: "host-dongxinh.com",
id2: "103.27.60.14",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-dustywinslow.com-108.174.112.194": {
id1: "host-dustywinslow.com",
id2: "108.174.112.194",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-95.181.171.58-95.181.171.58": {
id1: "host-95.181.171.58",
id2: "95.181.171.58",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-kqlxtqptsmys.in-195.22.28.198": {
id1: "host-kqlxtqptsmys.in",
id2: "195.22.28.198",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-195.154.241.208-195.154.241.208": {
id1: "host-195.154.241.208",
id2: "195.154.241.208",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-fnarsipfqe.pw-45.56.77.175": {
id1: "host-fnarsipfqe.pw",
id2: "45.56.77.175",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-sdwempsovemtr.yt-45.56.77.175": {
id1: "host-sdwempsovemtr.yt",
id2: "45.56.77.175",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-luvenxj.uk-69.195.129.70": {
id1: "host-luvenxj.uk",
id2: "69.195.129.70",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-xfyubqmldwvuyar.yt-104.238.173.18": {
id1: "host-xfyubqmldwvuyar.yt",
id2: "104.238.173.18",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-lovemydress.pl-79.96.7.15": {
id1: "host-lovemydress.pl",
id2: "79.96.7.15",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-195.64.154.14-195.64.154.14": {
id1: "host-195.64.154.14",
id2: "195.64.154.14",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-86.104.134.144-86.104.134.144": {
id1: "host-86.104.134.144",
id2: "86.104.134.144",
width: 1,
color: style.primary2.color,
data: { group: "Locky", ransomware: "Locky", type: "Host2IP" },
},
"host-ekop.org-94.73.150.60": {
id1: "host-ekop.org",
id2: "94.73.150.60",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-mosaudit.com-81.177.140.144": {
id1: "host-mosaudit.com",
id2: "81.177.140.144",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-yoyoeventos.com-187.45.240.67": {
id1: "host-yoyoeventos.com",
id2: "187.45.240.67",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-madisonbootcamps.com-50.63.64.23": {
id1: "host-madisonbootcamps.com",
id2: "50.63.64.23",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-millsmanagement.nl-83.137.194.38": {
id1: "host-millsmanagement.nl",
id2: "83.137.194.38",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-nonnuoccaobang.com-113.52.45.94": {
id1: "host-nonnuoccaobang.com",
id2: "113.52.45.94",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-italyprego.com-78.110.50.154": {
id1: "host-italyprego.com",
id2: "78.110.50.154",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-www.kadinweb.net-185.8.33.117": {
id1: "host-www.kadinweb.net",
id2: "185.8.33.117",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-dunyamuzelerimuzesi.com-94.73.148.60": {
id1: "host-dunyamuzelerimuzesi.com",
id2: "94.73.148.60",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-iicsdrd.com-205.144.171.9": {
id1: "host-iicsdrd.com",
id2: "205.144.171.9",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-www.plexipr.com-65.98.35.114": {
id1: "host-www.plexipr.com",
id2: "65.98.35.114",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-www.bishopbell.co.uk-217.177.8.89": {
id1: "host-www.bishopbell.co.uk",
id2: "217.177.8.89",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-studiolegalecsb.it-104.47.161.9": {
id1: "host-studiolegalecsb.it",
id2: "104.47.161.9",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-smartnote.co-184.168.68.65": {
id1: "host-smartnote.co",
id2: "184.168.68.65",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-dechehang.com-112.124.96.107": {
id1: "host-dechehang.com",
id2: "112.124.96.107",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-www.feddoctor.com-192.163.206.61": {
id1: "host-www.feddoctor.com",
id2: "192.163.206.61",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-portret-tekening.nl-83.137.194.115": {
id1: "host-portret-tekening.nl",
id2: "83.137.194.115",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-ascortimisoara.ro-86.105.207.51": {
id1: "host-ascortimisoara.ro",
id2: "86.105.207.51",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-zavidovodom.com-78.110.50.137": {
id1: "host-zavidovodom.com",
id2: "78.110.50.137",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-southinstrument.org-212.85.98.241": {
id1: "host-southinstrument.org",
id2: "212.85.98.241",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-wefindco.com-107.182.238.196": {
id1: "host-wefindco.com",
id2: "107.182.238.196",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-westhollywooddentaloffice.com-184.168.24.1": {
id1: "host-westhollywooddentaloffice.com",
id2: "184.168.24.1",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-surusegitimmerkezi.com-94.73.151.173": {
id1: "host-surusegitimmerkezi.com",
id2: "94.73.151.173",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-8vs.com-162.212.35.42": {
id1: "host-8vs.com",
id2: "162.212.35.42",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-glitchygaming.com-72.51.43.203": {
id1: "host-glitchygaming.com",
id2: "72.51.43.203",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-grochowina.net-188.116.35.23": {
id1: "host-grochowina.net",
id2: "188.116.35.23",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-tcblog.de-212.90.148.111": {
id1: "host-tcblog.de",
id2: "212.90.148.111",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-toysfortheneedyandaid.org-97.107.141.123": {
id1: "host-toysfortheneedyandaid.org",
id2: "97.107.141.123",
width: 1,
color: style.secondary1.color,
data: { group: "TeslaCrypt", ransomware: "TeslaCrypt", type: "Host2IP" },
},
"host-dining-bar.com-203.189.109.152": {
id1: "host-dining-bar.com",
id2: "203.189.109.152",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-london-escorts-agency.org.uk-178.32.72.112": {
id1: "host-london-escorts-agency.org.uk",
id2: "178.32.72.112",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-event-travel.co.uk-178.32.72.113": {
id1: "host-event-travel.co.uk",
id2: "178.32.72.113",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-jadwalpialadunia.in-104.219.251.2": {
id1: "host-jadwalpialadunia.in",
id2: "104.219.251.2",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-aspectdesigns.com.au-101.2.169.10": {
id1: "host-aspectdesigns.com.au",
id2: "101.2.169.10",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-inspirenetworks.in-103.10.191.39": {
id1: "host-inspirenetworks.in",
id2: "103.10.191.39",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-cheapshirts.us-123.30.187.106": {
id1: "host-cheapshirts.us",
id2: "123.30.187.106",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-patrianossa.com.br-23.89.198.195": {
id1: "host-patrianossa.com.br",
id2: "23.89.198.195",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-silstop.pl-46.41.144.45": {
id1: "host-silstop.pl",
id2: "46.41.144.45",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-portalmaismidia.com.br-69.162.96.195": {
id1: "host-portalmaismidia.com.br",
id2: "69.162.96.195",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-procrediti.com.ua-62.109.23.126": {
id1: "host-procrediti.com.ua",
id2: "62.109.23.126",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-www.gjscomputerservices.com.au-125.214.74.70": {
id1: "host-www.gjscomputerservices.com.au",
id2: "125.214.74.70",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-ilovesport.kiev.ua-185.68.16.13": {
id1: "host-ilovesport.kiev.ua",
id2: "185.68.16.13",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-babylicious.ie-89.36.25.168": {
id1: "host-babylicious.ie",
id2: "89.36.25.168",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-fun-pop.com-121.40.201.95": {
id1: "host-fun-pop.com",
id2: "121.40.201.95",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-d3mpd.fe.uns.ac.id-203.6.149.68": {
id1: "host-d3mpd.fe.uns.ac.id",
id2: "203.6.149.68",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
"host-icsot.na.its.ac.id-202.46.129.104": {
id1: "host-icsot.na.its.ac.id",
id2: "202.46.129.104",
width: 1,
color: style.tertiary1.color,
data: { group: "CryptoWall", ransomware: "CryptoWall", type: "Host2IP" },
},
};
return items;
}
export default data; <!doctype html>
<html>
<body>
<div id="regraph" style="height: 100vh"></div>
<script type="module" src="./code.jsx"></script>
</body>
</html>