id
stringlengths 1
4
| tokens
sequencelengths 3
478
| ner_tags
sequencelengths 3
478
|
---|---|---|
2200 | [
"Then",
"the",
"app",
"finds",
"a",
"process",
"id",
"value",
"for",
"the",
"process",
"it",
"wants",
"to",
"inject",
"with",
"code",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2201 | [
"This",
"is",
"done",
"using",
"a",
"series",
"of",
"syscalls",
"as",
"outlined",
"below",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2202 | [
"The",
"\"",
"source",
"process",
"''",
"refers",
"to",
"the",
"Zen",
"trojan",
"running",
"as",
"root",
",",
"while",
"the",
"\"",
"target",
"process",
"''",
"refers",
"to",
"the",
"process",
"to",
"which",
"the",
"code",
"is",
"injected",
"and",
"[",
"pid",
"]",
"refers",
"to",
"the",
"target",
"process",
"pid",
"value",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
1,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2203 | [
"The",
"source",
"process",
"checks",
"the",
"mapping",
"between",
"a",
"process",
"id",
"and",
"a",
"process",
"name",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2204 | [
"This",
"is",
"done",
"by",
"reading",
"the",
"/proc/",
"[",
"pid",
"]",
"/cmdline",
"file",
"."
] | [
10,
10,
10,
10,
10,
10,
0,
5,
5,
5,
5,
10,
10
] |
2205 | [
"This",
"very",
"first",
"step",
"fails",
"in",
"Android",
"7.0",
"and",
"higher",
",",
"even",
"with",
"a",
"root",
"permission",
"."
] | [
10,
10,
10,
10,
10,
10,
3,
8,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2206 | [
"The",
"/proc",
"filesystem",
"is",
"now",
"mounted",
"with",
"a",
"hidepid=2",
"parameter",
",",
"which",
"means",
"that",
"the",
"process",
"can",
"not",
"access",
"other",
"process",
"/proc/",
"[",
"pid",
"]",
"directory",
"."
] | [
10,
0,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
0,
5,
5,
5,
10,
10
] |
2207 | [
"A",
"ptrace_attach",
"syscall",
"is",
"called",
"."
] | [
10,
10,
10,
10,
10,
10
] |
2208 | [
"This",
"allows",
"the",
"source",
"process",
"to",
"trace",
"the",
"target",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2209 | [
"The",
"source",
"process",
"looks",
"at",
"its",
"own",
"memory",
"to",
"calculate",
"the",
"offset",
"between",
"the",
"beginning",
"of",
"the",
"libc",
"library",
"and",
"the",
"mmap",
"address",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2210 | [
"The",
"source",
"process",
"reads",
"/proc/",
"[",
"pid",
"]",
"/maps",
"to",
"find",
"where",
"libc",
"is",
"located",
"in",
"the",
"target",
"process",
"memory",
"."
] | [
10,
10,
10,
10,
0,
5,
5,
5,
5,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2211 | [
"By",
"adding",
"the",
"previously",
"calculated",
"offset",
",",
"it",
"can",
"get",
"the",
"address",
"of",
"the",
"mmap",
"function",
"in",
"the",
"target",
"process",
"memory",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2212 | [
"The",
"source",
"process",
"tries",
"to",
"determine",
"the",
"location",
"of",
"dlopen",
",",
"dlsym",
",",
"and",
"dlclose",
"functions",
"in",
"the",
"target",
"process",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2213 | [
"It",
"uses",
"the",
"same",
"technique",
"as",
"it",
"used",
"to",
"determine",
"the",
"offset",
"to",
"the",
"mmap",
"function",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2214 | [
"The",
"source",
"process",
"writes",
"the",
"native",
"shellcode",
"into",
"the",
"memory",
"region",
"allocated",
"by",
"mmap",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2215 | [
"Additionally",
",",
"it",
"also",
"writes",
"addresses",
"of",
"dlopen",
",",
"dlsym",
",",
"and",
"dlclose",
"into",
"the",
"same",
"region",
",",
"so",
"that",
"they",
"can",
"be",
"used",
"by",
"the",
"shellcode",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2216 | [
"Shellcode",
"simply",
"uses",
"dlopen",
"to",
"open",
"a",
".so",
"file",
"within",
"the",
"target",
"process",
"and",
"then",
"dlsym",
"to",
"find",
"a",
"symbol",
"in",
"that",
"file",
"and",
"run",
"it",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
2,
10,
10,
10,
10,
10,
10,
10
] |
2217 | [
"The",
"source",
"process",
"changes",
"the",
"registers",
"in",
"the",
"target",
"process",
"so",
"that",
"PC",
"register",
"points",
"directly",
"to",
"the",
"shellcode",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2218 | [
"This",
"is",
"done",
"using",
"the",
"ptrace",
"syscall",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10
] |
2219 | [
"This",
"diagram",
"illustrates",
"the",
"whole",
"process",
"."
] | [
10,
10,
10,
10,
10,
10,
10
] |
2220 | [
"Summary",
"PHA",
"authors",
"go",
"to",
"great",
"lengths",
"to",
"come",
"up",
"with",
"increasingly",
"clever",
"ways",
"to",
"monetize",
"their",
"apps",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2221 | [
"Zen",
"family",
"PHA",
"authors",
"exhibit",
"a",
"wide",
"range",
"of",
"techniques",
",",
"from",
"simply",
"inserting",
"an",
"advertising",
"SDK",
"to",
"a",
"sophisticated",
"trojan",
"."
] | [
1,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2222 | [
"The",
"app",
"that",
"resulted",
"in",
"the",
"largest",
"number",
"of",
"affected",
"users",
"was",
"the",
"click",
"fraud",
"version",
",",
"which",
"was",
"installed",
"over",
"170,000",
"times",
"at",
"its",
"peak",
"in",
"February",
"2018",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2223 | [
"The",
"most",
"affected",
"countries",
"were",
"India",
",",
"Brazil",
",",
"and",
"Indonesia",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2224 | [
"In",
"most",
"cases",
",",
"these",
"click",
"fraud",
"apps",
"were",
"uninstalled",
"by",
"the",
"users",
",",
"probably",
"due",
"to",
"the",
"low",
"quality",
"of",
"the",
"apps",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2225 | [
"If",
"Google",
"Play",
"Protect",
"detects",
"one",
"of",
"these",
"apps",
",",
"Google",
"Play",
"Protect",
"will",
"show",
"a",
"warning",
"to",
"users",
"."
] | [
10,
3,
8,
8,
10,
10,
10,
10,
10,
10,
3,
8,
8,
10,
10,
10,
10,
10,
10,
10
] |
2226 | [
"We",
"are",
"constantly",
"on",
"the",
"lookout",
"for",
"new",
"threats",
"and",
"we",
"are",
"expanding",
"our",
"protections",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2227 | [
"Every",
"device",
"with",
"Google",
"Play",
"includes",
"Google",
"Play",
"Protect",
"and",
"all",
"apps",
"on",
"Google",
"Play",
"are",
"automatically",
"and",
"periodically",
"scanned",
"by",
"our",
"solutions",
"."
] | [
10,
10,
10,
3,
8,
10,
3,
8,
8,
10,
10,
10,
10,
3,
8,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2228 | [
"You",
"can",
"check",
"the",
"status",
"of",
"Google",
"Play",
"Protect",
"on",
"your",
"device",
":",
"Open",
"your",
"Android",
"device",
"'s",
"Google",
"Play",
"Store",
"app",
"."
] | [
10,
10,
10,
10,
10,
10,
3,
8,
8,
10,
10,
10,
10,
10,
10,
10,
10,
10,
3,
8,
8,
10,
10
] |
2229 | [
"Tap",
"Menu",
">",
"Play",
"Protect",
"."
] | [
10,
10,
10,
10,
10,
10
] |
2230 | [
"Look",
"for",
"information",
"about",
"the",
"status",
"of",
"your",
"device",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2231 | [
"Hashes",
"of",
"samples",
"Type",
"Package",
"name",
"SHA256",
"digest",
"Custom",
"ads",
"com.targetshoot.zombieapocalypse.sniper.zombieshootinggame",
"5d98d8a7a012a858f0fa4cf8d2ed3d5a82937b1a98ea2703d440307c63c6c928",
"Click",
"fraud",
"com.counterterrorist.cs.elite.combat.shootinggame",
"84672fb2f228ec749d3c3c1cb168a1c31f544970fd29136bea2a5b2cefac6d04",
"Rooting",
"trojan",
"com.android.world.news",
"bd233c1f5c477b0cc15d7f84392dab3a7a598243efa3154304327ff4580ae213",
"Zen",
"trojan",
"com.lmt.register",
"eb12cd65589cbc6f9d3563576c304273cb6a78072b0c20a155a0951370476d8d",
"Mobile",
"Campaign",
"β",
"Bouncing",
"Golf",
"β",
"Affects",
"Middle",
"East",
"We",
"uncovered",
"a",
"cyberespionage",
"campaign",
"targeting",
"Middle",
"Eastern",
"countries",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
0,
0,
10,
10,
0,
0,
10,
10,
10,
0,
1,
10,
0,
0,
10,
10,
10,
1,
6,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2232 | [
"We",
"named",
"this",
"campaign",
"β",
"Bouncing",
"Golf",
"β",
"based",
"on",
"the",
"malware",
"β",
"s",
"code",
"in",
"the",
"package",
"named",
"β",
"golf.",
"β",
"June",
"18",
",",
"2019",
"We",
"uncovered",
"a",
"cyberespionage",
"campaign",
"targeting",
"Middle",
"Eastern",
"countries",
"."
] | [
10,
10,
10,
10,
10,
1,
6,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2233 | [
"We",
"named",
"this",
"campaign",
"β",
"Bouncing",
"Golf",
"β",
"based",
"on",
"the",
"malware",
"β",
"s",
"code",
"in",
"the",
"package",
"named",
"β",
"golf.",
"β",
"The",
"malware",
"involved",
",",
"which",
"Trend",
"Micro",
"detects",
"as",
"AndroidOS_GolfSpy.HRX",
",",
"is",
"notable",
"for",
"its",
"wide",
"range",
"of",
"cyberespionage",
"capabilities",
"."
] | [
10,
10,
10,
10,
10,
1,
6,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
2,
7,
10,
10,
1,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2234 | [
"Malicious",
"codes",
"are",
"embedded",
"in",
"apps",
"that",
"the",
"operators",
"repackaged",
"from",
"legitimate",
"applications",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2235 | [
"Monitoring",
"the",
"command",
"and",
"control",
"(",
"C",
"&",
"C",
")",
"servers",
"used",
"by",
"Bouncing",
"Golf",
",",
"we",
"β",
"ve",
"so",
"far",
"observed",
"more",
"than",
"660",
"Android",
"devices",
"infected",
"with",
"GolfSpy",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
1,
6,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
3,
10,
10,
10,
1,
10
] |
2236 | [
"Much",
"of",
"the",
"information",
"being",
"stolen",
"appear",
"to",
"be",
"military-related",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2237 | [
"The",
"campaign",
"β",
"s",
"attack",
"vector",
"is",
"also",
"interesting",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2238 | [
"These",
"repackaged",
",",
"malware-laden",
"apps",
"are",
"neither",
"on",
"Google",
"Play",
"nor",
"popular",
"third-party",
"app",
"marketplaces",
",",
"and",
"we",
"only",
"saw",
"the",
"website",
"hosting",
"the",
"malicious",
"apps",
"being",
"promoted",
"on",
"social",
"media",
"when",
"we",
"followed",
"GolfSpy",
"β",
"s",
"trail",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
3,
8,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
1,
10,
10,
10,
10
] |
2239 | [
"We",
"were",
"also",
"able",
"to",
"analyze",
"some",
"GolfSpy",
"samples",
"sourced",
"from",
"the",
"Trend",
"Micro",
"mobile",
"app",
"reputation",
"service",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
1,
10,
10,
10,
10,
2,
7,
10,
10,
10,
10,
10
] |
2240 | [
"Also",
"of",
"note",
"is",
"Bouncing",
"Golf",
"β",
"s",
"possible",
"connection",
"to",
"a",
"previously",
"reported",
"mobile",
"cyberespionage",
"campaign",
"that",
"researchers",
"named",
"Domestic",
"Kitten",
"."
] | [
10,
10,
10,
10,
1,
6,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
1,
6,
10
] |
2241 | [
"The",
"strings",
"of",
"code",
",",
"for",
"one",
",",
"are",
"similarly",
"structured",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2242 | [
"The",
"data",
"targeted",
"for",
"theft",
"also",
"have",
"similar",
"formats",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2243 | [
"Figure",
"1",
"."
] | [
10,
10,
10
] |
2244 | [
"GolfSpy",
"β",
"s",
"infection",
"chain",
"GolfSpy",
"'s",
"Potential",
"Impact",
"Given",
"GolfSpy",
"β",
"s",
"information-stealing",
"capabilities",
",",
"this",
"malware",
"can",
"effectively",
"hijack",
"an",
"infected",
"Android",
"device",
"."
] | [
1,
10,
10,
10,
10,
1,
10,
10,
10,
10,
1,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
3,
10,
10
] |
2245 | [
"Here",
"is",
"a",
"list",
"of",
"information",
"that",
"GolfSpy",
"steals",
":",
"Device",
"accounts",
"List",
"of",
"applications",
"installed",
"in",
"the",
"device",
"Device",
"β",
"s",
"current",
"running",
"processes",
"Battery",
"status",
"Bookmarks/Histories",
"of",
"the",
"device",
"β",
"s",
"default",
"browser",
"Call",
"logs",
"and",
"records",
"Clipboard",
"contents",
"Contacts",
",",
"including",
"those",
"in",
"VCard",
"format",
"Mobile",
"operator",
"information",
"Files",
"stored",
"on",
"SDcard",
"Device",
"location",
"List",
"of",
"image",
",",
"audio",
",",
"and",
"video",
"files",
"stored",
"on",
"the",
"device",
"Storage",
"and",
"memory",
"information",
"Connection",
"information",
"Sensor",
"information",
"SMS",
"messages",
"Pictures",
"GolfSpy",
"also",
"has",
"a",
"function",
"that",
"lets",
"it",
"connect",
"to",
"a",
"remote",
"server",
"to",
"fetch",
"and",
"perform",
"commands",
",",
"including",
":",
"searching",
"for",
",",
"listing",
",",
"deleting",
",",
"and",
"renaming",
"files",
"as",
"well",
"as",
"downloading",
"a",
"file",
"into",
"and",
"retrieving",
"a",
"file",
"from",
"the",
"device",
";",
"taking",
"screenshots",
";",
"installing",
"other",
"application",
"packages",
"(",
"APK",
")",
";",
"recording",
"audio",
"and",
"video",
";",
"and",
"updating",
"the",
"malware",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
1,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
1,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2246 | [
"Technical",
"Analysis",
"The",
"repackaged",
"applications",
"are",
"embedded",
"with",
"malicious",
"code",
",",
"which",
"can",
"be",
"found",
"in",
"the",
"com.golf",
"package",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
0,
10,
10
] |
2247 | [
"These",
"repackaged",
"apps",
"pose",
"as",
"communication",
",",
"news",
",",
"lifestyle",
",",
"book",
",",
"and",
"reference",
"apps",
"popularly",
"used",
"in",
"the",
"Middle",
"East",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2248 | [
"The",
"GolfSpy",
"malware",
"embedded",
"in",
"the",
"apps",
"is",
"hardcoded",
"with",
"an",
"internal",
"name",
"used",
"by",
"the",
"attacker",
"."
] | [
10,
1,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2249 | [
"Figure",
"2",
"."
] | [
10,
10,
10
] |
2250 | [
"Icons",
"of",
"the",
"apps",
"that",
"Bouncing",
"Golf",
"β",
"s",
"operators",
"repackaged",
"(",
"top",
")",
"and",
"a",
"comparison",
"of",
"packages",
"between",
"the",
"original",
"legitimate",
"app",
"(",
"bottom",
"left",
")",
"and",
"GolfSpy",
"(",
"bottom",
"right",
")",
"Figure",
"3",
"."
] | [
10,
10,
10,
10,
10,
1,
6,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
1,
10,
10,
10,
10,
10,
10,
10
] |
2251 | [
"GolfSpy",
"β",
"s",
"configurations",
"encoded",
"by",
"a",
"custom",
"algorithm",
"(",
"right",
")",
"and",
"its",
"decoded",
"version",
"(",
"left",
")",
"As",
"shown",
"in",
"Figure",
"3",
",",
"GolfSpy",
"β",
"s",
"configurations",
"(",
"e.g.",
",",
"C",
"&",
"C",
"server",
",",
"secret",
"keys",
")",
"are",
"encoded",
"by",
"a",
"customized",
"algorithm",
"."
] | [
1,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
1,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2252 | [
"After",
"it",
"is",
"launched",
",",
"GolfSpy",
"will",
"generate",
"a",
"unique",
"ID",
"for",
"the",
"affected",
"device",
"and",
"then",
"collect",
"its",
"data",
"such",
"as",
"SMS",
",",
"contact",
"list",
",",
"location",
",",
"and",
"accounts",
"in",
"this",
"format",
":",
"β",
"%",
",",
"[",
"]",
",",
"time",
"β",
"(",
"shown",
"in",
"Figure",
"4",
")",
"."
] | [
10,
10,
10,
10,
10,
1,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2253 | [
"The",
"information",
"is",
"written",
"into",
"a",
"file",
"on",
"the",
"device",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2254 | [
"The",
"attacker",
"can",
"choose",
"the",
"data",
"types",
"to",
"collect",
",",
"which",
"are",
"written",
"in",
"a",
"certain",
"format",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2255 | [
"Figure",
"4",
"."
] | [
10,
10,
10
] |
2256 | [
"Code",
"snippet",
"showing",
"GolfSpy",
"generating",
"UUID",
"The",
"value",
"of",
"%",
"is",
"in",
"the",
"range",
"of",
"1-9",
"or",
"a-j",
"."
] | [
10,
10,
10,
1,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2257 | [
"Each",
"value",
"represents",
"a",
"different",
"type",
"of",
"data",
"to",
"steal",
"from",
"the",
"device",
":",
"Value",
"Data",
"Type",
"1",
"Accounts",
"2",
"Installed",
"APP",
"list",
"3",
"Running",
"processes",
"list",
"4",
"Battery",
"status",
"5",
"Browser",
"bookmarks",
"and",
"histories",
"6",
"Call",
"logs",
"7",
"Clipboard",
"8",
"Contacts",
"9",
"Mobile",
"operator",
"information",
"a",
"File",
"list",
"on",
"SD",
"card",
"b",
"Location",
"c",
"Image",
"list",
"d",
"Audio",
"list",
"e",
"Video",
"list",
"f",
"Storage",
"and",
"memory",
"information",
"g",
"Connection",
"information",
"h",
"Sensors",
"information",
"i",
"SMS",
"messages",
"j",
"VCard",
"format",
"contacts",
"Table",
"1",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2258 | [
"The",
"type",
"of",
"data",
"corresponding",
"to",
"the",
"value",
"coded",
"in",
"GolfSpy",
"Figure",
"5",
"shows",
"the",
"code",
"snippets",
"that",
"are",
"involved",
"in",
"monitoring",
"and",
"recording",
"the",
"device",
"β",
"s",
"phone",
"call",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
1,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2259 | [
"It",
"will",
"also",
"take",
"a",
"photo",
"using",
"the",
"device",
"β",
"s",
"front",
"camera",
"when",
"the",
"user",
"wakes",
"the",
"device",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2260 | [
"Apart",
"from",
"collecting",
"the",
"above",
"data",
",",
"the",
"spyware",
"monitors",
"users",
"β",
"phone",
"calls",
",",
"records",
"them",
",",
"and",
"saves",
"the",
"recorded",
"file",
"on",
"the",
"device",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2261 | [
"GolfSpy",
"encrypts",
"all",
"the",
"stolen",
"data",
"using",
"a",
"simple",
"XOR",
"operation",
"with",
"a",
"pre-configured",
"key",
"before",
"sending",
"it",
"to",
"the",
"C",
"&",
"C",
"server",
"using",
"the",
"HTTP",
"POST",
"method",
"."
] | [
1,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2262 | [
"Figure",
"5",
"."
] | [
10,
10,
10
] |
2263 | [
"Code",
"snippets",
"showing",
"how",
"GolfSpy",
"monitors",
"phone",
"calls",
"via",
"register",
"receiver",
"(",
"top",
"left",
")",
",",
"its",
"actions",
"when",
"the",
"device",
"is",
"woken",
"up",
"(",
"top",
"right",
")",
",",
"and",
"how",
"it",
"encrypts",
"the",
"stolen",
"data",
"(",
"bottom",
")",
"The",
"malware",
"retrieves",
"commands",
"from",
"the",
"C",
"&",
"C",
"server",
"via",
"HTTP",
",",
"and",
"attackers",
"can",
"steal",
"specific",
"files",
"on",
"the",
"infected",
"device",
"."
] | [
10,
10,
10,
10,
1,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2264 | [
"The",
"command",
"is",
"a",
"constructed",
"string",
"split",
"into",
"three",
"parts",
"using",
"\"",
"\"",
"as",
"a",
"separator",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2265 | [
"The",
"first",
"part",
"is",
"the",
"target",
"directory",
",",
"the",
"second",
"is",
"a",
"regular",
"expression",
"used",
"to",
"match",
"specific",
"files",
",",
"while",
"the",
"last",
"part",
"is",
"an",
"ID",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2266 | [
"Figure",
"6",
"."
] | [
10,
10,
10
] |
2267 | [
"Example",
"of",
"a",
"command",
"that",
"steals",
"specific",
"files",
"from",
"an",
"infected",
"device",
"β",
"s",
"application",
"(",
"top",
")",
",",
"and",
"GolfSpy",
"β",
"s",
"parse-and-perform",
"command",
"(",
"bottom",
")",
"Apart",
"from",
"the",
"HTTP",
"POST",
"method",
",",
"GolfSpy",
"also",
"creates",
"a",
"socket",
"connection",
"to",
"the",
"remote",
"C",
"&",
"C",
"server",
"in",
"order",
"to",
"receive",
"and",
"perform",
"additional",
"commands",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
1,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
1,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2268 | [
"Stolen",
"data",
"will",
"also",
"be",
"encrypted",
"and",
"sent",
"to",
"the",
"C",
"&",
"C",
"server",
"via",
"the",
"socket",
"connection",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2269 | [
"The",
"encryption",
"key",
"is",
"different",
"from",
"the",
"one",
"used",
"for",
"sending",
"stolen",
"data",
"via",
"HTTP",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2270 | [
"Figure",
"7",
"."
] | [
10,
10,
10
] |
2271 | [
"The",
"additional",
"commands",
"that",
"attackers",
"can",
"carry",
"out",
"via",
"a",
"socket",
"connection",
"(",
"top",
")",
"and",
"the",
"key",
"used",
"to",
"encrypt",
"the",
"stolen",
"data",
"(",
"bottom",
")",
"Correlating",
"Bouncing",
"Golf",
"'s",
"Activities",
"We",
"monitored",
"Bouncing",
"Golf",
"β",
"s",
"C",
"&",
"C-related",
"activities",
"and",
"saw",
"that",
"the",
"campaign",
"has",
"affected",
"more",
"than",
"660",
"devices",
"as",
"of",
"this",
"writing",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
1,
6,
10,
10,
10,
10,
1,
6,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2272 | [
"The",
"small",
"or",
"limited",
"number",
"is",
"understandable",
"given",
"the",
"nature",
"of",
"this",
"campaign",
",",
"but",
"we",
"also",
"expect",
"it",
"to",
"increase",
"or",
"even",
"diversify",
"in",
"terms",
"of",
"distribution",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2273 | [
"Most",
"of",
"the",
"affected",
"devices",
"were",
"located",
"in",
"the",
"Middle",
"East",
",",
"and",
"many",
"of",
"the",
"stolen",
"data",
"we",
"saw",
"is",
"military-related",
"(",
"e.g.",
",",
"images",
",",
"documents",
")",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2274 | [
"Bouncing",
"Golf",
"β",
"s",
"operators",
"also",
"try",
"to",
"cover",
"their",
"tracks",
"."
] | [
1,
6,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2275 | [
"The",
"registrant",
"contact",
"details",
"of",
"the",
"C",
"&",
"C",
"domains",
"used",
"in",
"the",
"campaign",
",",
"for",
"instance",
",",
"were",
"masked",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2276 | [
"The",
"C",
"&",
"C",
"server",
"IP",
"addresses",
"used",
"also",
"appear",
"to",
"be",
"disparate",
",",
"as",
"they",
"were",
"located",
"in",
"many",
"European",
"countries",
"like",
"Russia",
",",
"France",
",",
"Holland",
",",
"and",
"Germany",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2277 | [
"It",
"β",
"s",
"not",
"a",
"definite",
"correlation",
",",
"but",
"Bouncing",
"Golf",
"also",
"seems",
"to",
"have",
"a",
"connection",
"with",
"Domestic",
"Kitten",
"due",
"to",
"similarities",
"we",
"found",
"in",
"their",
"code",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
1,
6,
10,
10,
10,
10,
10,
10,
10,
1,
6,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2278 | [
"For",
"example",
",",
"the",
"Android",
"malware",
"that",
"both",
"deploy",
"share",
"the",
"same",
"strings",
"of",
"code",
"for",
"their",
"decoding",
"algorithm",
"."
] | [
10,
10,
10,
10,
3,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2279 | [
"The",
"data",
"that",
"Domestic",
"Kitten",
"steals",
"follows",
"a",
"similar",
"format",
"with",
"Bouncing",
"Golf",
"β",
"s",
",",
"with",
"each",
"type",
"of",
"data",
"having",
"a",
"unique",
"identifying",
"character",
"."
] | [
10,
10,
10,
1,
6,
10,
10,
10,
10,
10,
10,
1,
6,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2280 | [
"It",
"β",
"s",
"also",
"worth",
"noting",
"that",
"both",
"campaigns",
"repackage",
"apps",
"that",
"are",
"commonly",
"used",
"in",
"their",
"target",
"β",
"s",
"countries",
",",
"such",
"as",
"Telegram",
",",
"Kik",
",",
"and",
"Plus",
"messaging",
"apps",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
3,
10,
3,
10,
10,
3,
10,
10,
10
] |
2281 | [
"Figure",
"8",
"."
] | [
10,
10,
10
] |
2282 | [
"Code",
"snippets",
"showing",
":",
"the",
"decoding",
"algorithm",
"shared",
"by",
"both",
"Bouncing",
"Golf",
"and",
"Domestic",
"Kitten",
"(",
"top",
")",
",",
"the",
"format",
"of",
"data",
"that",
"Domestic",
"Kitten",
"β",
"s",
"malware",
"targets",
"to",
"steal",
"(",
"center",
")",
",",
"and",
"how",
"both",
"Bouncing",
"Golf",
"(",
"bottom",
"left",
")",
"and",
"Domestic",
"Kitten",
"(",
"bottom",
"right",
")",
"use",
"\"",
"\"",
"as",
"a",
"separator",
"in",
"their",
"command",
"strings",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
1,
6,
10,
1,
6,
10,
10,
10,
10,
10,
10,
10,
10,
10,
1,
6,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
1,
6,
10,
10,
10,
10,
10,
1,
6,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2283 | [
"As",
"we",
"β",
"ve",
"seen",
"in",
"last",
"year",
"β",
"s",
"mobile",
"threat",
"landscape",
",",
"we",
"expect",
"more",
"cyberespionage",
"campaigns",
"targeting",
"the",
"mobile",
"platform",
"given",
"its",
"ubiquity",
",",
"employing",
"tried-and-tested",
"techniques",
"to",
"lure",
"unwitting",
"users",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2284 | [
"The",
"extent",
"of",
"information",
"that",
"these",
"kinds",
"of",
"threats",
"can",
"steal",
"is",
"also",
"significant",
",",
"as",
"it",
"lets",
"attackers",
"virtually",
"take",
"over",
"a",
"compromised",
"device",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2285 | [
"Users",
"should",
"adopt",
"best",
"practices",
",",
"while",
"organizations",
"should",
"ensure",
"that",
"they",
"balance",
"the",
"need",
"for",
"mobility",
"and",
"the",
"importance",
"of",
"security",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2286 | [
"End",
"users",
"and",
"enterprises",
"can",
"also",
"benefit",
"from",
"multilayered",
"mobile",
"security",
"solutions",
"such",
"as",
"Trend",
"Microβ’",
"Mobile",
"Securityβ’",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
2,
7,
10,
10,
10
] |
2287 | [
"Trend",
"Microβ’",
"Mobile",
"Security",
"for",
"Enterprise",
"provides",
"device",
",",
"compliance",
"and",
"application",
"management",
",",
"data",
"protection",
",",
"and",
"configuration",
"provisioning",
",",
"as",
"well",
"as",
"protects",
"devices",
"from",
"attacks",
"that",
"exploit",
"vulnerabilities",
",",
"preventing",
"unauthorized",
"access",
"to",
"apps",
",",
"and",
"detecting",
"and",
"blocking",
"malware",
"and",
"fraudulent",
"websites",
"."
] | [
2,
7,
3,
8,
8,
8,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2288 | [
"Trend",
"Micro",
"β",
"s",
"Mobile",
"App",
"Reputation",
"Service",
"(",
"MARS",
")",
"covers",
"Android",
"and",
"iOS",
"threats",
"using",
"leading",
"sandbox",
"and",
"machine",
"learning",
"technologies",
",",
"protecting",
"devices",
"against",
"malware",
",",
"zero-day",
"and",
"known",
"exploits",
",",
"privacy",
"leaks",
",",
"and",
"application",
"vulnerabilities",
"."
] | [
2,
7,
10,
10,
3,
8,
8,
8,
10,
10,
10,
10,
3,
10,
3,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2289 | [
"Several",
"weeks",
"ago",
",",
"Check",
"Point",
"Mobile",
"Threat",
"Prevention",
"detected",
"and",
"quarantined",
"the",
"Android",
"device",
"of",
"an",
"unsuspecting",
"customer",
"employee",
"who",
"downloaded",
"and",
"installed",
"a",
"0day",
"mobile",
"ransomware",
"from",
"Google",
"Play",
"dubbed",
"β",
"Charger.",
"β",
"This",
"incident",
"demonstrates",
"how",
"malware",
"can",
"be",
"a",
"dangerous",
"threat",
"to",
"your",
"business",
",",
"and",
"how",
"advanced",
"behavioral",
"detection",
"fills",
"mobile",
"security",
"gaps",
"attackers",
"use",
"to",
"penetrate",
"entire",
"networks",
"."
] | [
10,
10,
10,
10,
2,
7,
10,
10,
10,
10,
10,
10,
10,
3,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
3,
8,
10,
10,
1,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2290 | [
"Charger",
"was",
"found",
"embedded",
"in",
"an",
"app",
"called",
"EnergyRescue",
"."
] | [
1,
10,
10,
10,
10,
10,
10,
10,
1,
10
] |
2291 | [
"The",
"infected",
"app",
"steals",
"contacts",
"and",
"SMS",
"messages",
"from",
"the",
"user",
"β",
"s",
"device",
"and",
"asks",
"for",
"admin",
"permissions",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2292 | [
"If",
"granted",
",",
"the",
"ransomware",
"locks",
"the",
"device",
"and",
"displays",
"a",
"message",
"demanding",
"payment",
":",
"You",
"need",
"to",
"pay",
"for",
"us",
",",
"otherwise",
"we",
"will",
"sell",
"portion",
"of",
"your",
"personal",
"information",
"on",
"black",
"market",
"every",
"30",
"minutes",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2293 | [
"WE",
"GIVE",
"100",
"%",
"GUARANTEE",
"THAT",
"ALL",
"FILES",
"WILL",
"RESTORE",
"AFTER",
"WE",
"RECEIVE",
"PAYMENT",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2294 | [
"WE",
"WILL",
"UNLOCK",
"THE",
"MOBILE",
"DEVICE",
"AND",
"DELETE",
"ALL",
"YOUR",
"DATA",
"FROM",
"OUR",
"SERVER",
"!",
"TURNING",
"OFF",
"YOUR",
"PHONE",
"IS",
"MEANINGLESS",
",",
"ALL",
"YOUR",
"DATA",
"IS",
"ALREADY",
"STORED",
"ON",
"OUR",
"SERVERS",
"!",
"WE",
"STILL",
"CAN",
"SELLING",
"IT",
"FOR",
"SPAM",
",",
"FAKE",
",",
"BANK",
"CRIME",
"etcβ¦",
"We",
"collect",
"and",
"download",
"all",
"of",
"your",
"personal",
"data",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2295 | [
"All",
"information",
"about",
"your",
"social",
"networks",
",",
"Bank",
"accounts",
",",
"Credit",
"Cards",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2296 | [
"We",
"collect",
"all",
"data",
"about",
"your",
"friends",
"and",
"family",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2297 | [
"The",
"ransom",
"demand",
"for",
"0.2",
"Bitcoins",
"(",
"roughly",
"$",
"180",
")",
"is",
"a",
"much",
"higher",
"ransom",
"demand",
"than",
"has",
"been",
"seen",
"in",
"mobile",
"ransomware",
"so",
"far",
"."
] | [
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
2298 | [
"By",
"comparison",
",",
"the",
"DataLust",
"ransomware",
"demanded",
"merely",
"$",
"15",
"."
] | [
10,
10,
10,
10,
1,
10,
10,
10,
10,
10,
10
] |
2299 | [
"Payments",
"are",
"made",
"to",
"a",
"specific",
"Bitcoin",
"account",
",",
"but",
"we",
"haven",
"β",
"t",
"identified",
"any",
"payments",
"so",
"far",
"."
] | [
10,
10,
10,
10,
10,
10,
3,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10,
10
] |
Subsets and Splits