feat(sources): Wayback pass, automatic trimming, detention rule, ten cases re-sourced

Second and third rounds on the dossier pipeline, reviewed locally before commit.

Retrieval
- wayback_pass.py: retries every BLOCKED/DEAD/THIN/ERROR linked source through
  the Wayback Machine; blocks carry the snapshot date, archive URL and the live
  verdict. 143 slots retried: 93 fetched, 37 no snapshot, 12 script shells, 1 PDF.
- fetch_sources.py: fetch_wayback() helper.
- add_extra_sources.py: files staged extra_* finds (web search, not on the DB
  record) into the store with a provenance note.
- Cases re-sourced by web search: 248 (Oslo: Document.no, Avisa Oslo, NRK; the
  linked Le Parisien piece is case 242 and is marked OFF-CASE), 258 Kharkiv,
  260 Singapore, 358 Bangkok, 365 Las Vegas, 388 Verneuil-sur-Seine, 390 Zoersel,
  430 Homestead. 341 of 364 cases now hold a fetched article; 11, 66 and 399
  have no public text source (podcast, police video, direct victim report).

Trimming
- auto_trim.py: case-anchored furniture cut for UNTRIMMED blocks. Finds the body
  run that mentions the case, merges across subheadings and short furniture
  gaps, drops teasers, share bars, date/URL/caption lines and subscription
  pitches; refuses pages with no record term or almost no body. 302 blocks
  trimmed; 16 left on auto-trim-review.md (7 OFF-CASE suspects). Every cut is
  labelled AUTO-TRIMMED, UNREVIEWED in the dossier; the full extract stays in
  staging/. Decisions with anchors in trim-decisions-auto.json.
- build_cases.py / verify_all.py: banners for auto-trimmed and archived blocks,
  staged-file check extended to Wayback blocks, flag legend under the record.

Detention rule
- README "Definitions": the DB field `kidnappings` is the DETENTION violence
  type (victim, guard, staff or relative held to force submission or execute
  the theft), distinct from the Kidnapping scenario (taken away and held).
- detention-flag-review.md / detention-flag-corrections.json: 40 records
  reviewed with evidence; 30 set-to-1 proposals accepted by the owner on
  2026-09-06 (listed in corrections-approved.md), 10 still open.
- apply_detention_wording.py: "Violence Used" in the 70 reviewed summaries now
  names detention explicitly (62 of 70 labelled), supported by the summary's
  own text; idempotent; supersedes the batch scripts' wording.

Worklist and docs
- sofia-worklist.md: 248 decisions, detention rule item replacing the old
  "no abduction" item, fresh-search section for the textless cases.
- README-START-HERE.md: progress notes, run commands, next steps.
- Bug fixed in passing: Wayback blocks stored in-memory text with carriage
  returns; now stored as read back from disk.

verify_all.py PASSES (2321 checks).

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01GZZENdTLzNGsbNy4DyF1yt
This commit is contained in:
StellarCrow
2026-09-06 19:36:45 +02:00
co-authored by Claude Fable 5.1
parent 499fd61f79
commit 439e83a4cb
588 changed files with 24800 additions and 13190 deletions
+64 -4
View File
@@ -67,6 +67,42 @@ tests - just Python scripts that regenerate the .txt files, plus Markdown notes.
sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding="utf-8", errors="replace")
Put that inside main() if another script imports the file.
--------------------------------------------------------------------------------
## Definitions: detention (violence type) vs Kidnapping (scenario)
Added 2026-09-06 after the flag turned out to be mislabelled. The rule for every file,
summary and correction from now on:
**Detention** is a VIOLENCE TYPE. The DB flag `kidnappings` (sheet column "Kidnappings") is
the detention flag and should be renamed `detention` on the DB side. It is 1 when the
attackers had physical control of the victim at any point, in any place, for any length of
time: tied, taped, handcuffed or zip-tied; locked in a room or vehicle; held at gunpoint
while forced to unlock or transfer; taken away in a car; held under a fake arrest; kept for
hours or days. It is 0 when control was never gained: a snatch or mugging in passing, a
break-in of empty premises, threats or extortion at a distance, a plot foiled before contact,
an attempt the victim fled or fought off before being restrained. Judgment line: a victim
held at gunpoint for the minutes it takes to force a transfer counts as detained; a victim
punched and left within seconds does not. Who was held does not change the flag: if detention
was used on anyone to force submission or to execute the theft (guards, staff, a concierge, a
relative), the flag is 1 even when the record's named victim was absent (owner's rule, 2026-09-06).
**Kidnapping** is a SCENARIO, one of eleven attack patterns. It means the victim was taken
from where they were to a place under the attackers' control and held there, usually for a
ransom or a forced transfer. Express Kidnapping is the short, ATM-style variant. A Kidnapping
scenario always involves detention, and usually other violence types too: weapon threats,
assault, torture, drugging. Detention also occurs in other scenarios without making them
kidnappings: a family tied up in a Home Invasion, a P2P buyer handcuffed in a hotel room, a
fake arrest under Authority Misuse, a victim zip-tied in a Dodged Attack that was interrupted.
**Wording in summaries.** "Violence Used" names the violence types, and names detention
explicitly whenever it occurred ("Detention — held at gunpoint for about an hour"). The
words kidnapped / abducted are reserved for a victim being taken away; a victim held where
they were is "held", "detained", "tied up", not "kidnapped". Foiled attempts say
"No detention — the attempt was foiled" only when the source says so.
Per-case flag review against this rule: merge-output/detention-flag-review.md (proposals for
Sofia, with the evidence line for each). The DB export stays untouched.
--------------------------------------------------------------------------------
## The deliverable, and what still needs the human
@@ -120,6 +156,8 @@ than 4 categories). These are the targets, worked in descending ID order.
- Round-up articles (one article, several incidents): use ONLY the passage about THIS case;
drop the other incidents and any trend-commentary tail.
- Foiled / "dodged" attacks with no one harmed: "Violence Used: None - the attempt was foiled."
- Name detention explicitly in "Violence Used" whenever the victim was held (see Definitions);
use kidnapped / abducted only for a victim taken away.
### Workflow per batch (about 10 cases)
1. Write build_overrides_batchN.py (copy an existing one; it does existing.update(B) then writes
@@ -189,10 +227,32 @@ Result of the run (all 252 cases processed):
paste, which is kept. Trimming is still to do, same as for cases 357+.
- verify_all.py PASSES (1836 checks).
Next step for the 73 cases with no fetched article: wayback-availability.json lists a
Wayback Machine snapshot for 73 of the 98 failed URL slots (about 70 cases). fetch_sources.py
has no archive path yet; add one that labels the block as an archived snapshot with its
timestamp, so provenance stays honest.
Second pass, same day: Wayback Machine retrieval and automatic trimming.
- wayback_pass.py retries every linked source the live fetch could not read (BLOCKED,
DEAD, THIN, ERROR) through the Wayback Machine. Run from merge-output/:
python wayback_pass.py
Result over 143 failed slots: 93 FETCHED, 37 no snapshot, 12 THIN (script shell), 1 PDF.
Every archived block is labelled with the snapshot date and archive URL in the dossier
and keeps the live verdict in its note. 341 of 364 cases now hold a fetched article;
3 cases still have no article text at all: 11 (podcast only), 66 (police Facebook video only),
399 (direct victim report to Gart Research, no public source). The other seven were sourced by
web search on 2026-09-06; add_extra_sources.py files such finds into the store.
- auto_trim.py cuts site furniture from UNTRIMMED blocks: it finds the paragraph run that
mentions the case (terms from the DB record), widens it across short gaps so ledes and
closing sentences survive, and drops teasers, share bars, date/URL/caption lines and
subscription pitches. Run from merge-output/:
python auto_trim.py (add --reset to redo every automatic cut from staging/)
Result: 288 blocks in 252 cases trimmed, 1.44M -> 0.99M chars. These are MACHINE cuts:
the dossier banner says AUTO-TRIMMED, UNREVIEWED, and the full extract stays in staging/.
Decisions with anchors are in trim-decisions-auto.json.
- auto-trim-review.md lists the 16 blocks left UNTRIMMED and the 15 trimmed on a weak
anchor. The 7 OFF-CASE entries (no record term on the page) are wrong-source candidates;
case 248 is on it, which matches the known Le Parisien mismatch.
- The trimmer removes furniture only. It does NOT separate other incidents inside a
round-up article; that is still a read-through job (see the round-up bucket on the
worklist).
- Case 248: Oslo sources found by web search on 2026-09-05 and filed as extra_1..5 (see the worklist entry). verify_all.py PASSES (2321 checks). Not committed yet; review before pushing.
--------------------------------------------------------------------------------
## Quick-start checklist for the next AI
+69
View File
@@ -0,0 +1,69 @@
"""
File staged extra_* sources (found by web search, NOT on the DB record) into the article
store as UNTRIMMED blocks, so build_cases.py renders them and auto_trim.py can cut them.
Reads staging/<case>/index.json; every extra_N entry that is not yet in the store becomes
a block. FETCHED entries carry the staged text, hashed; anything else (THIN, BLOCKED, DEAD,
NOT AN ARTICLE) is filed as a reference with its verdict. Each block says in its note that
the URL is not on the record and when it was found, so provenance stays visible.
Usage: python add_extra_sources.py 258 260 ... then auto_trim.py <cases>, build, verify.
"""
import hashlib
import json
import sys
from datetime import date
from pathlib import Path
BASE = Path(__file__).resolve().parent
STAGING = BASE / "staging"
STORE = BASE / "sourced-articles.json"
NAMES = {"document.no": "Document.no", "alt.no": "Avisa Oslo (alt.no)", "nrk.no": "NRK", "ao.no": "Avisa Oslo",
"mothership.sg": "Mothership", "khaosodenglish.com": "Khaosod English", "8newsnow.com": "8 News Now (KLAS)",
"thedefiant.io": "The Defiant", "actu17.fr": "Actu17", "lagazette-yvelines.fr": "La Gazette en Yvelines",
"mantes-actu.net": "Mantes Actu", "vrt.be": "VRT NWS", "nnieuws.be": "NNieuws", "indegazette.be": "In de Gazette",
"justice.gov": "US Department of Justice", "decrypt.co": "Decrypt", "fortune.com": "Fortune",
"ukrinform.ua": "Ukrinform", "hromadske.radio": "Hromadske Radio", "sud.ua": "Sud.ua", "atn.ua": "ATN"}
def main():
cases = [int(a) for a in sys.argv[1:]]
store = json.loads(STORE.read_text(encoding="utf-8"))
today = date.today().isoformat()
added = 0
for cid in cases:
idx_path = STAGING / f"{cid:03d}" / "index.json"
if not idx_path.exists():
print(f"case {cid}: no staging index"); continue
blocks = store.setdefault(str(cid), [])
have = {b.get("field") for b in blocks}
for e in json.loads(idx_path.read_text(encoding="utf-8")):
if not e["field"].startswith("extra_") or e["field"] in have:
continue
src = NAMES.get(e["host"], e["host"])
note = f"NOT on the DB record. Found {today} by web search because the linked source(s) gave no usable text."
if e["verdict"] != "FETCHED":
blocks.append({"field": e["field"], "verdict": e["verdict"], "url": e["url"], "source": src,
"note": note + (" " + e["note"] if e.get("note") else "")})
added += 1
continue
path = next(STAGING.joinpath(f"{cid:03d}").glob(f"{e['n']:02d}_*.txt"))
text = path.read_text(encoding="utf-8")
blocks.append({"field": e["field"], "verdict": "UNTRIMMED", "url": e["url"], "source": src,
"language": "unknown", "text": text, "chars": len(text),
"sha256": hashlib.sha256(text.encode("utf-8")).hexdigest(),
"staged_file": path.name,
"paragraphs_kept": f"ALL {len(text.split(chr(10) * 2))} paragraphs, untrimmed",
"method": "raw HTTP retrieval, deterministic extraction",
"fetched_at": e.get("fetched_at"), "http": e.get("http"), "note": note,
"cut_note": "NOT TRIMMED. Full page extract; trim on read-through."})
added += 1
print(f"case {cid}: + {e['field']} {src} {len(text):,} chars")
STORE.write_text(json.dumps(store, ensure_ascii=False, indent=2), encoding="utf-8")
print(f"added {added} block(s)")
if __name__ == "__main__":
main()
+131
View File
@@ -0,0 +1,131 @@
"""
Rewrite the "Violence Used" line of every reviewed summary in summary-overrides.json so
that it names DETENTION explicitly where the victim was held, and says "No detention"
where the summary already states the attack was foiled, a snatch, or a hit-and-run.
Rule: README-START-HERE.md, "Definitions". Nothing is added that the summary does not
already say: a line gets the "Detention —" label only when that same summary (any
category) already describes the victim being held, tied, handcuffed, locked in, taken
away or abducted; the supporting phrase is checked before the edit. Idempotent.
Supersedes the Violence Used wording in build_overrides_batch1..7.py; summary-overrides.json
is the authoritative store. Run build_cases.py --all and verify_all.py afterwards.
"""
import json
import re
import sys
from pathlib import Path
BASE = Path(__file__).resolve().parent
STORE = BASE / "summary-overrides.json"
HELD = re.compile(r"(held (him|her|them|the|at|for|in|with|captive|hostage|against|under)|tied|bound|taped|handcuff|"
r"zip.?tie|cable tie|captiv|hostage|locked|restrain|confine|shackle|abduct|kidnapp|"
r"seized (him|her|them)|forced (him|her|them|the \w+) (into|inside|back)|drove (him|her|them)|"
r"took (him|her|them)|taken (away|to|from)|driven|put a sack|bag over|hooded)", re.I)
FOILED = re.compile(r"(none|no one was harmed|foiled|snatched|not a violent|no physical violence|"
r"unoccupied|no confrontation)", re.I)
# Per-case hand rewrites where the mechanical label would read badly. Each value is the
# full new Violence Used line (without the bold label). "support" must occur in the summary.
HAND = {
"218": ("Detention — she was held at gunpoint in her home and suffered a scalp laceration that needed stitches; she said she shot one of the intruders during the confrontation.", "held at gunpoint"),
"219": ("No detention and no assault reported — the bag was snatched from behind. (The database description's \"beaten with a stick\" is not supported by the linked article.)", "snatched from behind"),
"221": ("Detention — held for five days tied to a bed in a makeshift prison; he was kept drugged with sleeping pills, restrained and harassed throughout.", "tied to a bed"),
"222": ("No detention — a street attack from behind. He was slashed, suffering a 10-centimetre knife wound to the forehead (with no damage to his eyes or vital organs), and fell to the ground.", "from behind"),
"224": ("Detention — abducted and held by an armed group that accused him of illegal Hundi/Hawala dealing and threatened him.", "abducted"),
"229": ("Possible detention — by his own account he was drugged and became docile in the car; as he was made to get out in a residential area near Golders Green the car drove off and struck his leg, leaving him unable to walk.", "drugged"),
"230": ("No detention — the attempt to force her into the van was fought off. The child's father intervened and was struck by the attackers as the victim cried out and many passers-by looked on.", "force the mother into"),
"242": ("No detention — she was punched in the face roughly ten times in front of her family and taken to hospital; the attackers fled.", "punched"),
"253": ("Detention — forced into a van and driven off; inside the van he was physically assaulted and threatened with a firearm, and he was later taken to hospital with serious but non-life-threatening injuries.", "forced into"),
"256": ("No detention — the intruders were armed (one with a switchblade, another with a fake firearm) but the attempt was foiled at the fence and no one was harmed.", "foiled"),
"273": ("No detention — he was stabbed during the robbery, describing the scene afterwards as looking \"like a massacre\".", "stabbed"),
"292": ("Detention — threatened with a gun-like object and forced back inside his home.", "forced back"),
"298": ("He was assaulted during the robbery; the source on file does not say whether anyone was restrained.", "assaulted"),
"299": ("No detention beyond the moment of the mugging — physical force and coercion: forced phone handovers, being held against a wall and forced biometric unlocks.", "held against a wall"),
"322": ("Detention — abducted and held for two days; one of his fingers was severed.", "held for two days"),
"349": ("None — no detention and no confrontation: an unoccupied-premises break-in (the wider wave included violent, armed raids elsewhere, but not here).", "unoccupied"),
"364": ("No detention — a daylight snatch: he was hit across the head and face as he waited in his car.", "waited in his car"),
"301": ("Detention — the on-duty security personnel were tied up to carry out the theft; no injuries were reported.", "tied up"),
"372": ("Detention — taken and tied to a chair; she was stripped naked, struck in the legs with a hammer, and burned.", "tied to a chair"),
}
# Lead clause + original sentence (first letter lowercased). "support" must occur in the summary.
LEAD = {
"228": ("Detention — bound and held for about 17 days at the townhouse;", "held for about 17 days"),
"237": ("Detention — forced into a stolen vehicle and held until the next day;", "released the next day"),
"238": ("Detention — the man was held and later released in Créteil;", "released in Créteil"),
"240": ("Detention — the gang locked the victims in the shop before fleeing (they escaped through the shutters);", "locked them in the shop"),
"244": ("Detention — the pair were driven to a police station and held until about 8:30 p.m.;", "released around 8:30"),
"245": ("Detention — forced into a car and moved between locations through the night;", "moved between locations"),
"247": ("Detention — forcibly taken to the area of the Arc de Triomphe;", "forcibly took him"),
"272": ("Detention — a sack over his head, forced into a car and driven out of the city;", "sack over his head"),
"279": ("Detention — the family was held in the attackers' cars over a two-hour drive;", "two-hour drive"),
"317": ("Detention — seized outside his home and held until the ransom was paid;", "released after the ransom"),
"334": ("Detention — subdued at gunpoint inside the car;", "subdued him at gunpoint"),
"340": ("Detention — forced into a car, taken to a house in Jimbaran and released several hours later;", "released several hours later"),
"369": ("Detention — trapped in the bedsit;", "trap"),
"370": ("Detention — all three family members were bound with zip ties for about 13 hours;", "13 hours"),
"371": ("Detention — hooded, handcuffed and held blindfolded for six days;", "six days"),
"285": ("No detention, no violence —", "sleight-of-hand"),
}
def relabel(cid, summary):
m = re.search(r"(\*\*Violence Used:\*\*\s*)(.+)", summary)
if not m:
return summary, "no Violence Used line"
label, old = m.group(1), m.group(2)
if cid in HAND:
new, support = HAND[cid]
if support.lower() not in summary.lower():
raise SystemExit(f"ABORT case {cid}: support phrase {support!r} not in summary")
elif cid in LEAD:
lead, support = LEAD[cid]
if support.lower() not in summary.lower():
raise SystemExit(f"ABORT case {cid}: support phrase {support!r} not in summary")
body = old
while body.lower().startswith(lead.lower()): # idempotent: strip any lead already applied
body = body[len(lead):].lstrip()
body = body[0].lower() + body[1:]
if cid == "285":
body = body[len("none — "):] if body.startswith("none — ") else body
new = lead + " " + body
if new == old:
return summary, "already labelled"
elif re.match(r"(Detention|No detention|Possible detention)", old):
fixed = re.sub(r"^No detention — none — ", "No detention — ", old)
if fixed != old:
return summary.replace(label + old, label + fixed, 1), fixed[:90]
return summary, "already labelled"
elif HELD.search(old):
new = "Detention — " + old[0].lower() + old[1:]
elif FOILED.search(old):
body = re.sub(r"^None\s*[—-]\s*", "", old)
new = "No detention — " + body[0].lower() + body[1:]
elif HELD.search(summary):
new = "Detention (see Attack Method). " + old
else:
return summary, "UNLABELLED (no holding cue and not foiled)"
return summary.replace(label + old, label + new, 1), new[:90]
def main():
dry = "--dry-run" in sys.argv
store = json.loads(STORE.read_text(encoding="utf-8"))
changed = 0
for cid in sorted(store, key=int):
new, note = relabel(cid, store[cid])
print(f"{cid}: {note}")
if new != store[cid]:
store[cid] = new
changed += 1
if not dry:
STORE.write_text(json.dumps(store, ensure_ascii=False, indent=2), encoding="utf-8")
print(f"\n{'would change' if dry else 'changed'} {changed} of {len(store)} summaries")
if __name__ == "__main__":
main()
+16
View File
@@ -0,0 +1,16 @@
# Auto-trim review list
Three kinds of entry. TOO SMALL blocks were left UNTRIMMED because the trimmer found
almost no body text on a large page. OFF-CASE? blocks were left UNTRIMMED because no term from the
record appears on the page; the linked URL may be the wrong source. WEAK blocks were
trimmed but on one or two hits only, usually because the record is thin; confirm the
page is about this case. The full extract stays in staging/ either way.
- **case 258** `extra_1` Ukrinform: WEAK anchor: trimmed on only 1 case-term hit(s); confirm the page is about this case
<https://www.ukrinform.ua/rubric-regions/4048428-trimali-colovika-u-pidvali-j-vidibrali-97-tisac-u-harkovi-zatrimali-troh-vikradaciv.html>
- **case 258** `extra_2` Hromadske Radio: WEAK anchor: trimmed on only 1 case-term hit(s); confirm the page is about this case
<https://hromadske.radio/news/2025/10/17/v-tsentri-kharkova-troie-napadnykiv-vykraly-cholovika-y-vidibraly-u-noho-mayzhe-100-tysiach-dolariv>
- **case 258** `extra_4` ATN: WEAK anchor: trimmed on only 1 case-term hit(s); confirm the page is about this case
<https://atn.ua/kharkiv/kharkiv-ianyna-trymaly-v-pidvali-ta-vybyvaly-hroshi-sered-napadnykiv-vijskovyj-490170>
- **case 390** `extra_2` NNieuws: WEAK anchor: trimmed on only 2 case-term hit(s); confirm the page is about this case
<https://nnieuws.be/artikel/inbraak-met-geweld-zoersel-vrouw-van-60-vastgebonden-eigen-huis>
+294
View File
@@ -0,0 +1,294 @@
"""
Automatic first-pass trim of UNTRIMMED fetched blocks.
Uses propose_cuts.py (the case-anchored proposer) to find the paragraph run that talks
about this case, then widens it backwards across short non-junk gaps so a lede is not
lost to a one-line subhead, and drops interior lines that are plainly site furniture
(ALSO READ teasers, share prompts, advertisements). Every kept piece is verified as a
verbatim substring of the staged file before it is written. The full extract stays on
disk in staging/, so any cut can be revisited.
This is a machine cut, not a review. Blocks trimmed here are marked
trimmed_by = "auto (propose_cuts, unreviewed)" and the dossier prints a banner saying
so. Pages where the proposer cannot find the case (fewer than MIN_HITS case-term hits)
are left UNTRIMMED and listed in auto-trim-review.md; they are candidates for a
wrong-source verdict and need a human.
Run build_cases.py --all and verify_all.py afterwards.
"""
import argparse
import hashlib
import io
import json
import re
import sys
from pathlib import Path
from propose_cuts import JUNK, PAYWALL, case_terms, score
from trim import slice_paras
BASE = Path(__file__).resolve().parent
STORE = BASE / "sourced-articles.json"
STAGING = BASE / "staging"
JSONF = BASE.parent / "attacks-export-Gart-website.json"
DECISIONS_OUT = BASE / "trim-decisions-auto.json"
REVIEW_OUT = BASE / "auto-trim-review.md"
MIN_HITS = 3 # at or above this the page is confidently about the case
# 1-2 hits: trimmed, but listed as WEAK on the review list (thin records such as
# "30 y/o man, Sweden" cannot score higher). 0 hits: left UNTRIMMED as possible OFF-CASE.
BACK_GAP = 4 # merge an earlier run if separated by at most this many short lines
# Interior furniture: short lines that sit inside an article body on many news sites.
# Anchored and short-only so a real sentence that happens to contain "share" survives.
INTERIOR = re.compile(
r"^(also read|read (more|also|next)|related( (articles?|stories|news|coverage))?|"
r"see also|more (on|from) |advertisement|advertising|publicidade|publicit\u00e9|"
r"a lire aussi|\u00e0 lire aussi|lire aussi|leia tamb\u00e9m|lea tambi\u00e9n|siehe auch|"
r"sign up|subscribe|share( this| via)?|loading|image[: ]|photo[: ]|picture[: ]|"
r"illustration( of|:)|file photo|getty images|\(image|credit[: ]|source[: ]|"
r"watch[: ]|listen[: ]|video[: ]|"
r"recommended|trending|most read|top stories|editor'?s picks|popular|"
r"follow us|join us|download the app|click here|tap here|"
r"this article (is|was)|this story (is|was)|updated at|published (on|at)|"
r"(mon|tue|wed|thu|fri|sat|sun)[a-z]*, [a-z]+\.? \d{1,2}, \d{4}|"
r"editorial process|trusted editorial|ad disclosure|"
r"let us know|got an opinion|email your thoughts|story tips|"
r"poster sur|tweeter|envoyer via|partager|accueil \u00bb|compartilh|compartir|teilen|"
r"by registering|for signing up|thank you for (signing|subscribing)|"
r"copyright|all rights reserved|\u00a9)", re.I)
# Teaser headline with a date suffix: "Some headline - 4. september 2025" / "- May 3, 2024"
DATED_TEASER = re.compile(r" [-\u2013] (\d{1,2}\.? [A-Za-z\u00e6\u00f8\u00e5]+ \d{4}|[A-Z][a-z]+ \d{1,2}, \d{4})$")
TAIL_WORDS = re.compile(r"(inbox|newsletter|briefing|unsubscribe|privacy policy|terms of (use|service)|"
r"retningslinjer|debattskikk|^vi i document|^kj\u00f8p .* fra document|"
r"cookie|comments? below|in the comments|support local news|pay what you want|"
r"starting at us\$|join a community|become a member|donate|"
r"^every (mon|tues|wednes|thurs|fri|satur|sun)day)", re.I)
def listy(p):
"""A newline-packed paragraph of short fragments is a nav bar or a tag list."""
segs = [x for x in p.split("\n") if x.strip()]
return len(segs) >= 4 and sum(len(x) for x in segs) / len(segs) < 30
def is_furniture(p):
p = p.strip()
if not p or listy(p) or p.startswith(("http://", "https://", "www.")) or DATED_TEASER.search(p):
return True
return len(p) <= 400 and bool(INTERIOR.match(p) or JUNK.search(p) or TAIL_WORDS.search(p))
MIN_KEEP = 600 # a cut that keeps less than this from a page 3x larger is refused
GAP = 4 # furniture lines tolerated between two body runs
def bodyish(p):
"""Body text, relaxed from propose_cuts: a short sentence is still a sentence.
A 70-char line ending in a full stop is a closing sentence far more often than
furniture (teasers are headlines and headlines do not end in full stops); the
furniture that does end in a full stop is caught by JUNK / INTERIOR.
"""
p = p.strip()
if not p or is_furniture(p):
return False
if len(p) >= 140:
return True
return len(p) >= 40 and bool(re.search(r"[.!?;:\u201d\u00bb\"')]$", p))
def gap_ok(p):
p = p.strip()
return len(p) <= 200 and not JUNK.search(p)
def find_range(paras, terms):
"""Choose the body run that talks about this case and widen it across short gaps.
Runs are maximal stretches of body paragraphs. The best run is the one with the
most distinct case terms (density, then length, break ties), as in propose_cuts.
It is then merged with neighbouring runs when the gap between them is at most
GAP short non-junk lines: backwards unconditionally (a lede sits before a subhead),
forwards only when the next run mentions the case or is short (a closing sentence
or two), so a trailing block of sentence-shaped teasers is not absorbed.
"""
body = [bodyish(p) for p in paras]
runs, cur = [], []
for i, b in enumerate(body):
if b:
cur.append(i)
elif cur:
runs.append(cur)
cur = []
if cur:
runs.append(cur)
if not runs:
return None, None
def run_score(r):
text = " ".join(paras[i] for i in r).lower()
distinct = sum(1 for t in terms if t in text)
chars = sum(len(paras[i]) for i in r) or 1
# Distinct terms first, then LENGTH. propose_cuts used density as the tie-break,
# which let a six-line teaser list carrying one "Oslo" beat the 18-paragraph
# article carrying the same one "Oslo" (Document.no, case 248).
return (distinct, chars)
k = max(range(len(runs)), key=lambda i: run_score(runs[i]))
start, end = runs[k][0], runs[k][-1]
def gap_between(a_end, b_start):
between = list(range(a_end + 1, b_start))
return between if len(between) <= GAP and all(gap_ok(paras[i]) for i in between) else None
j = k
while j - 1 >= 0 and gap_between(runs[j - 1][-1], runs[j][0]) is not None:
j -= 1
start = runs[j][0]
j = k
while j + 1 < len(runs) and gap_between(runs[j][-1], runs[j + 1][0]) is not None:
nxt = runs[j + 1]
gap = gap_between(runs[j][-1], nxt[0])
hits = sum(score(paras[i], terms) for i in nxt)
# A one- or two-line gap is a subheading or a pull quote inside the article;
# merge regardless of hits (later sections often carry no record term). A
# longer gap looks like a teaser block, so the next run must earn its place.
if len(gap) > 2 and hits == 0 and len(nxt) > 3:
break
j += 1
end = nxt[-1]
while end > start and not bodyish(paras[end]):
end -= 1
while start < end and not bodyish(paras[start]):
start += 1
return start, end
def reset_auto(store, only=()):
"""Put every auto-trimmed block back to UNTRIMMED from its staged file."""
n = 0
for cid, blocks in store.items():
if only and int(cid) not in only:
continue
for b in blocks:
if b.get("verdict") == "KEEP" and str(b.get("trimmed_by", "")).startswith("auto"):
path = STAGING / f"{int(cid):03d}" / b["staged_file"]
text = path.read_text(encoding="utf-8")
b.update(verdict="UNTRIMMED", text=text, chars=len(text),
sha256=hashlib.sha256(text.encode("utf-8")).hexdigest(),
paragraphs_kept=f"ALL {len(text.split(chr(10) * 2))} paragraphs, untrimmed",
cut_note="NOT TRIMMED. Full page extract; trim on read-through.")
b.pop("trimmed_by", None)
n += 1
return n
def main():
sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding="utf-8", errors="replace")
ap = argparse.ArgumentParser()
ap.add_argument("cases", nargs="*", type=int)
ap.add_argument("--dry-run", action="store_true")
ap.add_argument("--reset", action="store_true",
help="first restore every auto-trimmed block to UNTRIMMED from staging/")
args = ap.parse_args()
records = {r["id"]: r for r in json.loads(JSONF.read_text(encoding="utf-8"))}
store = json.loads(STORE.read_text(encoding="utf-8"))
decisions, review, applied, skipped = {}, [], 0, 0
if args.reset:
print(f"reset {reset_auto(store, args.cases)} auto-trimmed block(s) to UNTRIMMED")
for cid_s, blocks in store.items():
cid = int(cid_s)
if args.cases and cid not in args.cases:
continue
terms = case_terms(records[cid])
for b in blocks:
if b.get("verdict") != "UNTRIMMED" or not b.get("staged_file"):
continue
path = STAGING / f"{cid:03d}" / b["staged_file"]
full = path.read_text(encoding="utf-8")
paras = full.split("\n\n")
hits = sum(score(p, terms) for p in paras)
start, end = find_range(paras, terms)
if start is None or hits == 0:
reason = ("no body run found" if start is None else
"OFF-CASE? no case term appears anywhere on the page")
review.append((cid, b["field"], b.get("source"), reason, b["url"]))
skipped += 1
continue
weak = hits < MIN_HITS
if weak:
review.append((cid, b["field"], b.get("source"),
f"WEAK anchor: trimmed on only {hits} case-term hit(s); confirm "
"the page is about this case", b["url"]))
exclude = [i for i in range(start, end + 1) if is_furniture(paras[i])]
title = None
t0 = paras[0].strip()
if start > 0 and 20 < len(t0) < 200 and not JUNK.search(t0):
title = 0
text, pieces = slice_paras(paras, start, end, title, exclude)
if any(p not in full for p in pieces):
review.append((cid, b["field"], b.get("source"), "slice not a substring (bug)", b["url"]))
skipped += 1
continue
if len(text) < MIN_KEEP and len(full) > 3 * len(text):
review.append((cid, b["field"], b.get("source"),
f"TOO SMALL: the only body run found is {len(text)} chars of a "
f"{len(full):,}-char page; page may be a script shell or list-form "
"article. Left UNTRIMMED.", b["url"]))
skipped += 1
continue
dropped_head = start - (1 if title is not None else 0)
dropped_tail = len(paras) - 1 - end
pay = [p.strip()[:60] for p in paras if PAYWALL.search(p)]
cut_note = (f"AUTO-TRIMMED, unreviewed: kept paragraphs {start}-{end}"
+ (f" plus headline [0]" if title is not None else "")
+ f"; dropped {dropped_head} leading and {dropped_tail} trailing paragraphs"
+ (f" and {len(exclude)} interior furniture line(s)" if exclude else "")
+ f". Case-term hits on page: {hits}"
+ (" (WEAK anchor, confirm the page is about this case)." if weak else ".")
+ (" PAYWALL marker seen on page." if pay else ""))
decisions.setdefault(cid_s, []).append({
"field": b["field"], "staged_file": b["staged_file"], "start": start, "end": end,
"title": title, "exclude": exclude, "hits": hits,
"starts_with": paras[start][:45], "ends_with": paras[end][-55:],
"chars_before": len(full), "chars_after": len(text), "paywall": bool(pay)})
if not args.dry_run:
b.update(verdict="KEEP", text=text, chars=len(text),
sha256=hashlib.sha256(text.encode("utf-8")).hexdigest(),
paragraphs_kept=(f"headline [0] + " if title is not None else "")
+ f"{start}-{end}"
+ (f" excl {exclude}" if exclude else "")
+ f" of {len(paras)}",
cut_note=cut_note, trimmed_by="auto (propose_cuts, unreviewed)")
b.pop("carried_over", None)
applied += 1
if not args.dry_run:
STORE.write_text(json.dumps(store, ensure_ascii=False, indent=2), encoding="utf-8")
DECISIONS_OUT.write_text(json.dumps(decisions, ensure_ascii=False, indent=2), encoding="utf-8")
lines = ["# Auto-trim review list", "",
"Three kinds of entry. TOO SMALL blocks were left UNTRIMMED because the trimmer found",
"almost no body text on a large page. OFF-CASE? blocks were left UNTRIMMED because no term from the",
"record appears on the page; the linked URL may be the wrong source. WEAK blocks were",
"trimmed but on one or two hits only, usually because the record is thin; confirm the",
"page is about this case. The full extract stays in staging/ either way.", ""]
for cid, field, src, reason, url in sorted(review):
lines.append(f"- **case {cid}** `{field}` {src}: {reason}\n <{url}>")
REVIEW_OUT.write_text("\n".join(lines) + "\n", encoding="utf-8")
before = sum(d["chars_before"] for ds in decisions.values() for d in ds)
after = sum(d["chars_after"] for ds in decisions.values() for d in ds)
print(f"{'would trim' if args.dry_run else 'trimmed'} {applied} block(s): "
f"{before:,} -> {after:,} chars; left UNTRIMMED for review: {skipped}")
remaining = sum(1 for c in store.values() for b in c if b.get("verdict") == "UNTRIMMED")
print(f"UNTRIMMED blocks in store now: {remaining}")
if __name__ == "__main__":
main()
+18 -2
View File
@@ -296,7 +296,14 @@ def render_fetched(entries):
for i, e in enumerate(keeps, 1):
flag = {"PARTIAL": " [PARTIAL — PAYWALLED]",
"UNTRIMMED": " [RAW EXTRACT — NOT YET TRIMMED]"}.get(e["verdict"], "")
auto = e["verdict"] == "KEEP" and str(e.get("trimmed_by", "")).startswith("auto")
if auto:
flag = " [AUTO-TRIMMED — UNREVIEWED]"
L += ["", "-" * 96, f"FETCHED ARTICLE {i}{flag}"]
if auto:
L += [" !! Furniture was cut by a script keyed on this case's record, not by a person.",
" !! It may still carry passages about OTHER cases from a round-up article.",
" !! The full page extract is kept in staging/ if a cut needs revisiting."]
if e["verdict"] == "UNTRIMMED":
L += [" !! This is the whole page as extracted. It still contains site furniture,",
" !! and may contain teaser headlines for UNRELATED cases. Trim on read-through.",
@@ -313,8 +320,14 @@ def render_fetched(entries):
L.append(f" Trimmed {e['cut_note']}")
if e.get("note"):
L.append(f" Note {e['note']}")
L += [" Caveat retrieved from a live page on the date above. Unlike text copied",
" from the spreadsheet, there is no second copy to hash it against.",
if e.get("archive_url"):
L += [f" Archive {e['archive_url']}"]
L += [" Caveat retrieved from a Wayback Machine snapshot, not the live page. The",
" snapshot date is in the method line; the live URL was unreadable."]
else:
L += [" Caveat retrieved from a live page on the date above. Unlike text copied",
" from the spreadsheet, there is no second copy to hash it against."]
L += [
"-" * 96, "",
f"ORIGINAL ({e['language']}, verbatim as retrieved)", "", e["text"]]
if e.get("translation"):
@@ -331,6 +344,9 @@ def render(rec, arts, notes, fetched=()):
L += ["=" * 96, hdr, "=" * 96, "", "DATABASE RECORD"]
for f in FIELD_ORDER:
L.append(f" {f:<20}{rec.get(f) if rec.get(f) is not None else '(null)'}")
L += [" (flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against",
" their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the",
" same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)"]
ov = SUMMARY_OVERRIDES.get(str(rec["id"]))
if ov:
File diff suppressed because it is too large Load Diff
+16
View File
@@ -73,3 +73,19 @@ Also record: **both attacker vehicles carry São Paulo plates registered to the
**"as of June 16, 2026" — REMOVE the date, keep the rest.** No article dated 16 June or
later exists; every source found is dated 11 or 12 June. The count stands as "one arrested,
seven at large", with no date attached.
---
## Detention flag (`kidnappings`) — accepted 2026-09-06
Rule: README-START-HERE.md, "Definitions". The field is the detention flag; rename it `detention`
on the website. Evidence per case: merge-output/detention-flag-review.md.
**Set `kidnappings` to 1 on these records:** 4, 19, 25, 28, 29, 41, 43, 46, 63, 64, 82, 139, 143, 147, 152, 167, 169, 171, 180, 181, 182, 183, 200, 209, 229, 253, 301, 353, 380, 419.
Rule clarified the same day: detention used on anyone (guards, staff, a concierge, a relative) to
force submission or execute the theft counts as 1, whether or not the record's named victim was
present. Case 301 (guards tied up) is therefore in the list above.
Still open, not yet decided: the 1-to-0 proposals (124, 242, 273, 413, 422, 423, and nulls 354, 355)
and the two CHECK items (215, 298).
@@ -0,0 +1,353 @@
[
{
"target": "DB id 4",
"field": "kidnappings (detention)",
"current": 0,
"proposed": 1,
"confidence": "LIKELY",
"basis": "held at gunpoint while forced to transfer: Bitcoin trader robbed of $12,000 at gunpoint forced him to transfer $8,500 worth of bitcoin.",
"status": "ACCEPTED 2026-09-06 by the database owner: set to 1 on the website"
},
{
"target": "DB id 19",
"field": "kidnappings (detention)",
"current": 0,
"proposed": 1,
"confidence": "CLEAR",
"basis": "record text itself describes the victim being taken or held: **Attack Method:** Kidnapping",
"status": "ACCEPTED 2026-09-06 by the database owner: set to 1 on the website"
},
{
"target": "DB id 25",
"field": "kidnappings (detention)",
"current": 0,
"proposed": 1,
"confidence": "CLEAR",
"basis": "article (CT): Nyashin was tied and beaten while a group of masked assailants stole a safe containing cash and “essential documents.”",
"status": "ACCEPTED 2026-09-06 by the database owner: set to 1 on the website"
},
{
"target": "DB id 28",
"field": "kidnappings (detention)",
"current": 0,
"proposed": 1,
"confidence": "CLEAR",
"basis": "article (The Hacker News): 3 armed men bound employees at Bitcoin office before fleeing empty-handed, Ottawa police say",
"status": "ACCEPTED 2026-09-06 by the database owner: set to 1 on the website"
},
{
"target": "DB id 29",
"field": "kidnappings (detention)",
"current": 0,
"proposed": 1,
"confidence": "LIKELY",
"basis": "article (Business Insider): Armed robbers broke into the family home of a city financier turned Bitcoin trader and forced him to transfer the digital currency at gunpoint, in what is believed to be the first heist of its kind in the UK.",
"status": "ACCEPTED 2026-09-06 by the database owner: set to 1 on the website"
},
{
"target": "DB id 41",
"field": "kidnappings (detention)",
"current": 0,
"proposed": 1,
"confidence": "CLEAR",
"basis": "article (Arabian Business): Once the brothers reached the office, the gang members assaulted the two and tied their hands, locked them inside the room and escaped with the money.",
"status": "ACCEPTED 2026-09-06 by the database owner: set to 1 on the website"
},
{
"target": "DB id 43",
"field": "kidnappings (detention)",
"current": 0,
"proposed": 1,
"confidence": "CLEAR",
"basis": "record text itself describes the victim being taken or held: Home invasion of Skycoin architect resulted in theft of 18.88 BTC and 6,466 SKY kidnapped at home **Victim:** \"Synth\"",
"status": "ACCEPTED 2026-09-06 by the database owner: set to 1 on the website"
},
{
"target": "DB id 46",
"field": "kidnappings (detention)",
"current": 0,
"proposed": 1,
"confidence": "LIKELY",
"basis": "article (NY post): A group of young professional men ransacked their pals luxury apartment after a night of drinking and forced him to cough up his cryptocurrency account login information, the Manhattan District Attorneys Office charges in a new complaint.",
"status": "ACCEPTED 2026-09-06 by the database owner: set to 1 on the website"
},
{
"target": "DB id 63",
"field": "kidnappings (detention)",
"current": 0,
"proposed": 1,
"confidence": "CLEAR",
"basis": "article (BBC): At Carlisle Crown Court, both men admitted two counts of robbery and two counts of false imprisonment.",
"status": "ACCEPTED 2026-09-06 by the database owner: set to 1 on the website"
},
{
"target": "DB id 64",
"field": "kidnappings (detention)",
"current": 0,
"proposed": 1,
"confidence": "LIKELY",
"basis": "article (BBC): The High Court in Glasgow heard that three men went into a home in Blantyre in Lanarkshire and forced the homeowner to transfer his Bitcoin, a form of digital cash, to D'Alfonso's account.",
"status": "ACCEPTED 2026-09-06 by the database owner: set to 1 on the website"
},
{
"target": "DB id 82",
"field": "kidnappings (detention)",
"current": 0,
"proposed": 1,
"confidence": "LIKELY",
"basis": "article (Stadt Magazin): At that moment, two other men attacked him, grabbed and restrained him, and tore the phone from his hand.",
"status": "ACCEPTED 2026-09-06 by the database owner: set to 1 on the website"
},
{
"target": "DB id 124",
"field": "kidnappings (detention)",
"current": 1,
"proposed": 0,
"confidence": "CLEAR",
"basis": "record: attempted home invasion, victim fired at the attackers, who fled; no control gained"
},
{
"target": "DB id 139",
"field": "kidnappings (detention)",
"current": 0,
"proposed": 1,
"confidence": "CLEAR",
"basis": "record text itself describes the victim being taken or held: **Attack Method:** Kidnapping",
"status": "ACCEPTED 2026-09-06 by the database owner: set to 1 on the website"
},
{
"target": "DB id 143",
"field": "kidnappings (detention)",
"current": 0,
"proposed": 1,
"confidence": "LIKELY",
"basis": "beaten and forced to transfer under control: hey beat him up, hit him in the head with a firearm, and forced him to transfer around 30,000 euros worth of his cryptocurrency **Victim:** Unidentified man",
"status": "ACCEPTED 2026-09-06 by the database owner: set to 1 on the website"
},
{
"target": "DB id 147",
"field": "kidnappings (detention)",
"current": 0,
"proposed": 1,
"confidence": "CLEAR",
"basis": "article: the concierge was gagged and had hands and feet tied with zip ties (Mossos d'Esquadra report)",
"status": "ACCEPTED 2026-09-06 by the database owner: set to 1 on the website"
},
{
"target": "DB id 152",
"field": "kidnappings (detention)",
"current": 0,
"proposed": 1,
"confidence": "CLEAR",
"basis": "record text itself describes the victim being taken or held: Gang kidnaps boyfriend of crypto trader's relative, demands $5M ransom while torturing him for 6 days.",
"status": "ACCEPTED 2026-09-06 by the database owner: set to 1 on the website"
},
{
"target": "DB id 167",
"field": "kidnappings (detention)",
"current": 0,
"proposed": 1,
"confidence": "CLEAR",
"basis": "record text itself describes the victim being taken or held: Executives lured into fake business trip, kidnapped, forced to empty wallets of $12M USDT.",
"status": "ACCEPTED 2026-09-06 by the database owner: set to 1 on the website"
},
{
"target": "DB id 169",
"field": "kidnappings (detention)",
"current": 0,
"proposed": 1,
"confidence": "CLEAR",
"basis": "record text itself describes the victim being taken or held: Victim was kidnapped from a friend's house, had bag placed over head, rescued by police after anonymous tip sent.",
"status": "ACCEPTED 2026-09-06 by the database owner: set to 1 on the website"
},
{
"target": "DB id 171",
"field": "kidnappings (detention)",
"current": 0,
"proposed": 1,
"confidence": "CLEAR",
"basis": "record text itself describes the victim being taken or held: Restaurant owner kidnapped, doused in diesel, force fed alcohol, has finger cut off, until he transferred $200K USD in crypto.",
"status": "ACCEPTED 2026-09-06 by the database owner: set to 1 on the website"
},
{
"target": "DB id 180",
"field": "kidnappings (detention)",
"current": 0,
"proposed": 1,
"confidence": "CLEAR",
"basis": "record text itself describes the victim being taken or held: 18 people kidnap 2 victims, hold them for $1.2M ransom, get in shootout with police.",
"status": "ACCEPTED 2026-09-06 by the database owner: set to 1 on the website"
},
{
"target": "DB id 181",
"field": "kidnappings (detention)",
"current": 0,
"proposed": 1,
"confidence": "CLEAR",
"basis": "article (NationThai, 2): The suspects lured the victim to a party at a Khlong Tan apartment, then tortured and tied him up, taking his valuables before releasing him.",
"status": "ACCEPTED 2026-09-06 by the database owner: set to 1 on the website"
},
{
"target": "DB id 182",
"field": "kidnappings (detention)",
"current": 0,
"proposed": 1,
"confidence": "CLEAR",
"basis": "record text itself describes the victim being taken or held: Gang of 5 kidnaps trader and robs him at knifepoint of $18,000 in USDT faked interest in stock investment advice, lured into car, took usdt **Victim:** 26 y/o Trading Coach",
"status": "ACCEPTED 2026-09-06 by the database owner: set to 1 on the website"
},
{
"target": "DB id 183",
"field": "kidnappings (detention)",
"current": 0,
"proposed": 1,
"confidence": "CLEAR",
"basis": "record text itself describes the victim being taken or held: 4 men kidnap foreigner, rob, & murder him for 3 BTC.",
"status": "ACCEPTED 2026-09-06 by the database owner: set to 1 on the website"
},
{
"target": "DB id 200",
"field": "kidnappings (detention)",
"current": 0,
"proposed": 1,
"confidence": "CLEAR",
"basis": "record text itself describes the victim being taken or held: Businessman lured to meeting, handcuffed, beaten, electrocuted for 15 hours before being rescued by police.",
"status": "ACCEPTED 2026-09-06 by the database owner: set to 1 on the website"
},
{
"target": "DB id 209",
"field": "kidnappings (detention)",
"current": 0,
"proposed": 1,
"confidence": "CLEAR",
"basis": "record text itself describes the victim being taken or held: Ledger co-founder & wife kidnapped and ransomed, his finger was severed, rescued by GIGN.",
"status": "ACCEPTED 2026-09-06 by the database owner: set to 1 on the website"
},
{
"target": "DB id 215",
"field": "kidnappings (detention)",
"current": 1,
"proposed": 0,
"confidence": "CHECK",
"basis": "lured to a hotel room and stabbed to death; no source on file shows he was held before the attack; the bulk summary's \"victim kidnapped\" is template text"
},
{
"target": "DB id 229",
"field": "kidnappings (detention)",
"current": 0,
"proposed": 1,
"confidence": "LIKELY",
"basis": "by his own account he was drugged in a fake Uber and driven around before being put out (My London); detention if the account holds",
"status": "ACCEPTED 2026-09-06 by the database owner: set to 1 on the website"
},
{
"target": "DB id 242",
"field": "kidnappings (detention)",
"current": 1,
"proposed": 0,
"confidence": "CLEAR",
"basis": "record and Le Parisien: punched about ten times at home, attackers fled when the husband appeared; no restraint"
},
{
"target": "DB id 253",
"field": "kidnappings (detention)",
"current": 0,
"proposed": 1,
"confidence": "CLEAR",
"basis": "record text itself describes the victim being taken or held: **Attack Method:** Kidnapping",
"status": "ACCEPTED 2026-09-06 by the database owner: set to 1 on the website"
},
{
"target": "DB id 273",
"field": "kidnappings (detention)",
"current": 1,
"proposed": 0,
"confidence": "CLEAR",
"basis": "record: stabbed and robbed at home; nothing shows he was held"
},
{
"target": "DB id 298",
"field": "kidnappings (detention)",
"current": 1,
"proposed": 0,
"confidence": "CHECK",
"basis": "nine robbers entered the office and attacked the owner; no source on file says anyone was restrained"
},
{
"target": "DB id 301",
"field": "kidnappings (detention)",
"current": 0,
"proposed": 1,
"confidence": "CLEAR",
"basis": "article (Vibes): Vijaya Rao (left) says the suspects, aged 20 to 40, were detained by police, following a report lodged by the owner of an aluminium factory in the West Meru industrial area, near here, after his factory was broken into and 180 bitcoin machines were stolen in t",
"status": "ACCEPTED 2026-09-06 by the database owner: set to 1 on the website",
"note": "The Vibes article says the robbers \"tied up the security personnel on duty\". Rule clarified the same day: detention used on anyone to execute the theft counts, whether or not the record's named victim was present."
},
{
"target": "DB id 353",
"field": "kidnappings (detention)",
"current": 0,
"proposed": 1,
"confidence": "CLEAR",
"basis": "article (Bits.Media): The attackers threatened with weapons, handcuffing the guards.",
"status": "ACCEPTED 2026-09-06 by the database owner: set to 1 on the website"
},
{
"target": "DB id 354",
"field": "kidnappings (detention)",
"current": null,
"proposed": 0,
"confidence": "CLEAR",
"basis": "null today; first visit of the Salford series: knock, threat, payment; the later incidents (307, 162, 169) carry the detention"
},
{
"target": "DB id 355",
"field": "kidnappings (detention)",
"current": null,
"proposed": 0,
"confidence": "CLEAR",
"basis": "null today; second visit, knife threat, payment; no restraint"
},
{
"target": "DB id 380",
"field": "kidnappings (detention)",
"current": 0,
"proposed": 1,
"confidence": "CLEAR",
"basis": "record text itself describes the victim being taken or held: **Violence Used:** Two armed suspects held victim hostage for approximately one hour.",
"status": "ACCEPTED 2026-09-06 by the database owner: set to 1 on the website"
},
{
"target": "DB id 413",
"field": "kidnappings (detention)",
"current": 1,
"proposed": 0,
"confidence": "CLEAR",
"basis": "SPD blotter: forced entry, assault, strangling; suspect arrested during the struggle; no control gained"
},
{
"target": "DB id 419",
"field": "kidnappings (detention)",
"current": 0,
"proposed": 1,
"confidence": "CLEAR",
"basis": "record: three armed men posing as police forced her into her apartment building and beat her and her husband inside; control was gained before they fled",
"status": "ACCEPTED 2026-09-06 by the database owner: set to 1 on the website"
},
{
"target": "DB id 422",
"field": "kidnappings (detention)",
"current": 1,
"proposed": 0,
"confidence": "CLEAR",
"basis": "record: hit on the back of the head by the driveway, fell; nothing shows he was held"
},
{
"target": "DB id 423",
"field": "kidnappings (detention)",
"current": 1,
"proposed": 0,
"confidence": "CLEAR",
"basis": "record: pushed inside and aimed a gun, victim pushed back, suspect fled; no control gained"
}
]
+103
View File
@@ -0,0 +1,103 @@
# Detention flag review (DB field `kidnappings`)
Rule: README-START-HERE.md, section "Definitions". The flag is 1 when the attackers had physical control
of the victim at any point (tied, locked in, held at gunpoint through a forced transfer, taken away, fake
arrest); 0 when control was never gained (snatch, break-in of empty premises, foiled or fought-off attempt).
Nothing here is applied to the DB. Every line quotes the record or an article already in the case file.
**Decision 2026-09-06 (database owner):** every 0-to-1 proposal below is ACCEPTED, 301 included after the rule was
clarified: detention used on anyone (guards, staff, a relative) to force submission or execute the
theft counts as 1, whether or not the record's named victim was present. The 1-to-0 proposals and the two CHECK items are still open. Status per case is in
detention-flag-corrections.json; the accepted set is also listed in corrections-approved.md.
Not reviewed one by one: the 219 records already at 1 in the Kidnapping, Home Invasion, Authority Misuse,
Malicious Invitation and Express Kidnapping scenarios, whose own descriptions show the victim held; only the
flag=1 records in Dodged Attack, Costly Fame, Armed Robbery and P2P were read (all 20 listed below or confirmed).
## Flag 0 or null, propose 1 (the victim was held)
- **case 4** (P2P Trade Gone Wrong, USA, February, 2015) — now `0`, propose **1** [LIKELY]: held at gunpoint while forced to transfer: Bitcoin trader robbed of $12,000 at gunpoint forced him to transfer $8,500 worth of bitcoin.
- **case 19** (Kidnapping, USA, November 4, 2017) — now `0`, propose **1** [LIKELY]: the DB's own scenario is Kidnapping (Meza case, friend lured and held); the record text itself only reads "Man robbed of $1.8M of ETH", so confirm the holding from the article before setting
- **case 25** (Costly Fame, Russia, January 14, 2018) — now `0`, propose **1** [CLEAR]: article (CT): Nyashin was tied and beaten while a group of masked assailants stole a safe containing cash and “essential documents.”
- **case 28** (Armed Robbery in Public Space, Canada, January 23, 2018) — now `0`, propose **1** [CLEAR]: article (The Hacker News): 3 armed men bound employees at Bitcoin office before fleeing empty-handed, Ottawa police say
- **case 29** (Home Invasion, UK, January 27, 2018) — now `0`, propose **1** [LIKELY]: article (Business Insider): Armed robbers broke into the family home of a city financier turned Bitcoin trader and forced him to transfer the digital currency at gunpoint, in what is believed to be the first heist of its kind in the UK.
- **case 41** (P2P Trade Gone Wrong, UAE, April 25, 2018) — now `0`, propose **1** [CLEAR]: article (Arabian Business): Once the brothers reached the office, the gang members assaulted the two and tied their hands, locked them inside the room and escaped with the money.
- **case 43** (Kidnapping, China, June 13, 2018) — now `0`, propose **1** [CLEAR]: record text itself describes the victim being taken or held: Home invasion of Skycoin architect resulted in theft of 18.88 BTC and 6,466 SKY kidnapped at home **Victim:** "Synth"
- **case 46** (Malicious Invitation - SocialEng, USA, September 7, 2018) — now `0`, propose **1** [LIKELY]: article (NY post): A group of young professional men ransacked their pals luxury apartment after a night of drinking and forced him to cough up his cryptocurrency account login information, the Manhattan District Attorneys Office charges in a new complaint.
- **case 63** (Home Invasion, UK, February 10, 2020) — now `0`, propose **1** [CLEAR]: article (BBC): At Carlisle Crown Court, both men admitted two counts of robbery and two counts of false imprisonment.
- **case 64** (Home Invasion, UK, March 18, 2020) — now `0`, propose **1** [LIKELY]: article (BBC): The High Court in Glasgow heard that three men went into a home in Blantyre in Lanarkshire and forced the homeowner to transfer his Bitcoin, a form of digital cash, to D'Alfonso's account.
- **case 82** (P2P Trade Gone Wrong, Germany, March 16, 2021) — now `0`, propose **1** [LIKELY]: article (Stadt Magazin): At that moment, two other men attacked him, grabbed and restrained him, and tore the phone from his hand.
- **case 139** (Kidnapping, Thailand, September 15, 2022) — now `0`, propose **1** [LIKELY]: the DB's own scenario is Kidnapping; the record says the couple were ambushed at a coffee shop and made to transfer $50K before the gang left, which is control under threat for the duration of the transfer
- **case 143** (P2P Trade Gone Wrong, Netherlands, December 3, 2022) — now `0`, propose **1** [LIKELY]: beaten and forced to transfer under control: hey beat him up, hit him in the head with a firearm, and forced him to transfer around 30,000 euros worth of his cryptocurrency **Victim:** Unidentified man
- **case 147** (Armed Robbery in Public Space, Spain, January 14, 2023) — now `0`, propose **1** [CLEAR]: article: the concierge was gagged and had hands and feet tied with zip ties (Mossos d'Esquadra report)
- **case 152** (Home Invasion, Australia, March 9, 2023) — now `0`, propose **1** [CLEAR]: record text itself describes the victim being taken or held: Gang kidnaps boyfriend of crypto trader's relative, demands $5M ransom while torturing him for 6 days.
- **case 167** (Malicious Invitation - SocialEng, Montenegro, November 10, 2023) — now `0`, propose **1** [CLEAR]: record text itself describes the victim being taken or held: Executives lured into fake business trip, kidnapped, forced to empty wallets of $12M USDT.
- **case 169** (Kidnapping, UK, November 30, 2023) — now `0`, propose **1** [CLEAR]: record text itself describes the victim being taken or held: Victim was kidnapped from a friend's house, had bag placed over head, rescued by police after anonymous tip sent.
- **case 171** (Kidnapping, Romania, January 16, 2024) — now `0`, propose **1** [CLEAR]: record text itself describes the victim being taken or held: Restaurant owner kidnapped, doused in diesel, force fed alcohol, has finger cut off, until he transferred $200K USD in crypto.
- **case 180** (Kidnapping, Malaysia, July 11, 2024) — now `0`, propose **1** [CLEAR]: record text itself describes the victim being taken or held: 18 people kidnap 2 victims, hold them for $1.2M ransom, get in shootout with police.
- **case 181** (Malicious Invitation - SocialEng, Thailand, July 12, 2024) — now `0`, propose **1** [CLEAR]: article (NationThai, 2): The suspects lured the victim to a party at a Khlong Tan apartment, then tortured and tied him up, taking his valuables before releasing him.
- **case 182** (Malicious Invitation - SocialEng, India, July 22, 2024) — now `0`, propose **1** [CLEAR]: record text itself describes the victim being taken or held: Gang of 5 kidnaps trader and robs him at knifepoint of $18,000 in USDT faked interest in stock investment advice, lured into car, took usdt **Victim:** 26 y/o Trading Coach
- **case 183** (Kidnapping, Ukraine, July 28, 2024) — now `0`, propose **1** [CLEAR]: record text itself describes the victim being taken or held: 4 men kidnap foreigner, rob, & murder him for 3 BTC.
- **case 200** (Kidnapping, Ghana, December 19, 2024) — now `0`, propose **1** [CLEAR]: record text itself describes the victim being taken or held: Businessman lured to meeting, handcuffed, beaten, electrocuted for 15 hours before being rescued by police.
- **case 209** (Kidnapping, France, January 21, 2025) — now `0`, propose **1** [CLEAR]: record text itself describes the victim being taken or held: Ledger co-founder & wife kidnapped and ransomed, his finger was severed, rescued by GIGN.
- **case 229** (Malicious Invitation - SocialEng, UK, May 9, 2025) — now `0`, propose **1** [LIKELY]: by his own account he was drugged in a fake Uber and driven around before being put out (My London); detention if the account holds
- **case 253** (Kidnapping, Canada, September 5, 2025) — now `0`, propose **1** [CLEAR]: record: victim forced into a van by 5 men, physically assaulted, threatened with a gun, released after a forced transfer
- **case 301** (Armed Robbery in Public Space, Malaysia, May 20, 2022) — now `0`, propose **1** [CLEAR, ACCEPTED]: article (Vibes): the robbers \"tied up the security personnel on duty\". Detention used on the guards to execute the theft; counts under the clarified rule.
- **case 353** (Armed Robbery in Public Space, Russia, July ?, 2022) — now `0`, propose **1** [CLEAR]: article (Bits.Media): The attackers threatened with weapons, handcuffing the guards.
- **case 380** (Home Invasion, Brazil, November, 2024) — now `0`, propose **1** [CLEAR]: record text itself describes the victim being taken or held: **Violence Used:** Two armed suspects held victim hostage for approximately one hour.
- **case 419** (Dodged Attack, France, March 8, 2026) — now `0`, propose **1** [CLEAR]: record: three armed men posing as police forced her into her apartment building and beat her and her husband inside; control was gained before they fled
## Flag 1, propose 0 (no control was gained)
- **case 124** (Dodged Attack, USA, March 30, 2022) — now `1`, propose **0** [CLEAR]: record: attempted home invasion, victim fired at the attackers, who fled; no control gained
- **case 215** (P2P Trade Gone Wrong, South Korea, February 24, 2025) — now `1`, propose **0** [CHECK]: lured to a hotel room and stabbed to death; no source on file shows he was held before the attack; the bulk summary's "victim kidnapped" is template text
- **case 242** (Costly Fame, France, July 7, 2025) — now `1`, propose **0** [CLEAR]: record and Le Parisien: punched about ten times at home, attackers fled when the husband appeared; no restraint
- **case 273** (Costly Fame, UK, November ?, 2018) — now `1`, propose **0** [CLEAR]: record: stabbed and robbed at home; nothing shows he was held
- **case 298** (Armed Robbery in Public Space, UAE, April ?, 2022) — now `1`, propose **0** [CHECK]: nine robbers entered the office and attacked the owner; no source on file says anyone was restrained
- **case 413** (Dodged Attack, USA, February 20, 2026) — now `1`, propose **0** [CLEAR]: SPD blotter: forced entry, assault, strangling; suspect arrested during the struggle; no control gained
- **case 422** (Dodged Attack, USA, December 17, 2025) — now `1`, propose **0** [CLEAR]: record: hit on the back of the head by the driveway, fell; nothing shows he was held
- **case 423** (Dodged Attack, USA, December 22, 2025) — now `1`, propose **0** [CLEAR]: record: pushed inside and aimed a gun, victim pushed back, suspect fled; no control gained
## Null, propose 0
- **case 354** (Home Invasion, UK, January ?, 2023) — now `None`, propose **0** [CLEAR]: null today; first visit of the Salford series: knock, threat, payment; the later incidents (307, 162, 169) carry the detention
- **case 355** (Home Invasion, UK, January ?, 2023) — now `None`, propose **0** [CLEAR]: null today; second visit, knife threat, payment; no restraint
## Flag 0 confirmed as 0 (attempts without control) — no change
- **case 30** (Dodged Attack): four men found with zip ties and duct tape; no attack took place
- **case 67** (Dodged Attack): conspiracy uncovered by the FBI; no source shows the two gained control of him
- **case 72** (Dodged Attack): arrested before the kidnapping
- **case 106** (Authority Misuse): harassment campaign; the gunpoint episode in the article concerns a different person (R.C.)
- **case 184** (Dodged Attack): fought the attackers off
- **case 230** (Dodged Attack): attempt to force her into a van, fought off by her partner and bystanders
- **case 233** (Dodged Attack): plot foiled before contact
- **case 235** (Dodged Attack): plot foiled, ten arrested in balaclavas
- **case 256** (Dodged Attack): intruders caught climbing the fence
- **case 318** (Dodged Attack): surveillance phase only
- **case 374** (Dodged Attack): attempt interrupted by police, victim escaped
- **case 416** (Dodged Attack): forced entry failed, no contact
- **case 417** (Dodged Attack): alarm scared the attackers off
- **case 421** (Dodged Attack): arrested in the courtyard before reaching the victims; the court rejected séquestration for that reason
- **case 426** (Dodged Attack): equipment seized, attackers went to the wrong address
- **case 433** (Dodged Attack): bear spray, no contact
- **case 445** (Dodged Attack): no entry, no abduction
- **case 446** (Dodged Attack): intercepted by gendarmerie before the second attempt
- **case 447** (Dodged Attack): grabbed and dragged toward the car for seconds, freed by neighbours: attempted detention, control not established (judgment call, see rule)
## Flag 1 confirmed as 1 in non-captive scenarios — no change
- **case 53** (P2P Trade Gone Wrong): abducted and tortured
- **case 68** (P2P Trade Gone Wrong): held at gunpoint and forced to transfer at the meeting point
- **case 137** (P2P Trade Gone Wrong): held at gunpoint, tied up
- **case 144** (Armed Robbery in Public Space): kidnapped and robbed
- **case 194** (P2P Trade Gone Wrong): robbed in a hotel room and forced to transfer
- **case 201** (Costly Fame): wife kidnapped by three men
- **case 237** (Costly Fame): forced into a stolen vehicle
- **case 246** (P2P Trade Gone Wrong): handcuffed and blindfolded
- **case 379** (Costly Fame): tied to a chair
- **case 424** (Dodged Attack): bound with zip ties and duct tape (Dodged Attack scenario, detention nonetheless)
- **case 425** (P2P Trade Gone Wrong): subdued with a revolver and forced to transfer
- **case 456** (Costly Fame): forced from his car at gunpoint and driven off
- **case 271** (Home Invasion): LIKELY 1 — the two forced their way in, pistol-whipped one occupant, used a cattle prod on another and chased the renter into a bathroom; no source says anyone was tied, but the occupants were under the attackers' control inside the home (was on the old worklist as "no abduction"; under the detention rule it stays 1)
- **case 293** (Home Invasion): family held at gunpoint (same)
+24
View File
@@ -115,6 +115,30 @@ def fetch_raw(url, timeout=30):
return r.status, raw.decode(charset, errors="replace"), r.geturl()
WAYBACK_AVAIL = "https://archive.org/wayback/available?url="
def fetch_wayback(url, timeout=40):
"""Fetch the closest Wayback Machine snapshot of a URL.
Returns (timestamp, snapshot_url, html) or (None, None, None) when nothing is
archived. The `id_` flag asks for the original bytes without the Wayback toolbar,
so extraction runs on the same markup a live fetch would have seen. A snapshot is
a third party's copy taken on a given date, so anything staged from it must say so.
"""
import urllib.parse
q = WAYBACK_AVAIL + urllib.parse.quote(url, safe="")
with urllib.request.urlopen(urllib.request.Request(q, headers={"User-Agent": UA}),
timeout=timeout) as r:
closest = json.loads(r.read().decode("utf-8")).get("archived_snapshots", {}).get("closest")
if not closest or not closest.get("available"):
return None, None, None
ts = closest["timestamp"]
raw_url = f"https://web.archive.org/web/{ts}id_/{url}"
status, html, final = fetch_raw(raw_url, timeout=timeout)
return ts, closest["url"], html
def stage_case(rec, extra_urls=(), new_only=False):
cid = rec["id"]
out = STAGING / f"{cid:03d}"
+46 -3
View File
@@ -155,6 +155,27 @@ portion likely contains the Gignac-la-Nerthe detail (458) and any answer on the
<https://www.laprovence.com/article/faits-divers-justice/2193885092828214/quatre-hommes-arretes-en-plein-braquage-sur-fond-de-cryptomonnaies-pres-de-marseille>
- **Case 391** (Chinese national rescue, 2 arrested) — its only linked source (abs-cbn.com) is JS-rendered and returned no article body. Needs a manual/browser fetch or a replacement source. No usable article on file otherwise.
## Cases with no article text — fresh search 2026-09-06
Seven of the ten were found by web search and filed as extra sources (marked "NOT on the DB record"
in the dossier; add the URLs to the record if you agree): 258 Kharkiv (Ukrinform, Hromadske Radio,
Sud.ua, ATN — also gives the victim's age 32, a Mercedes Vito, 14,600 EUR cash taken first, and one
active serviceman among the three), 260 Nate Geier (Mothership), 358 Bangkok (Khaosod English —
victim attacked 1 November on Mahaseth Road, not 10 November; the DB date is the first arrest),
365 Las Vegas (The Defiant; 8 News Now is the original but blocks fetches — it is already the source
on case 323, the duplicate record), 388 Verneuil-sur-Seine (Actu17, Mantes Actu), 390 Zoersel (VRT NWS,
NNieuws, In de Gazette — VRT says two intruders, firearm, facial injuries, Korte Maalstraat, 10 January),
430 Homestead (Decrypt, Fortune; the DOJ press release is the primary source but fetches as an empty
shell — copy it by hand from justice.gov/usao-mdnc, "Twelve Defendants Sentenced ... Cryptocurrency").
Still nothing on file for three cases:
- **case 11** (Josoj, London 2017): the only source is a podcast episode (ivoox, Bitcoin Uncensored).
No text article exists that I could find. Options: transcribe the episode (would be a derived
text, label it so), or link the LocalBitcoins forum thread where the victim posted, if you know it.
- **case 66** (East Lansdowne BTM, May 2020): the only source is the East Lansdowne Police Facebook
video. Search Delaware County local press (Delco Times, 6abc, NBC10) for "bitcoin ATM" "East
Lansdowne" May 2020, or ask the police department for the incident number.
- **case 399** (Dominican Republic, Oct 2025): reported directly to Gart Research by the victim; there
is no public source. File the victim's own account as the source, labelled as a first-person report.
## Round-up articles needing per-case passage isolation (Claude to do, your review)
One article covers several different cases; each case file must keep only its own passage.
- Known set: 68, 315, 422, 445, 450.
@@ -164,8 +185,23 @@ One article covers several different cases; each case file must keep only its ow
## Wrong-source / mismatched cases (the linked article does not describe this record)
- **Case 248** — the linked leparisien.fr article is a DIFFERENT incident (a woman assaulted at home in
Suresnes, France), NOT the Oslo Norwegian-family home invasion this record describes. That Suresnes
event is **case 242**, which already has the correct source — so the misfiled article belongs to 242's
story. Find a correct Oslo source for 248. (248's summary was written from its record fields only.)
event is **case 242**, which already has a BFMTV source — move the Le Parisien URL to 242.
**UPDATE 2026-09-05:** Oslo sources found by web search and filed into 248 (marked "NOT on the DB
record" in the dossier): Document.no 09.08.2025 (the detailed account: Haugerud, Foodora disguise,
parents in their 40s, children 4/8/12 taped up, mother threatened with being shot, crypto demanded,
four men from Sweden aged 18-22), Avisa Oslo 06.08.2025 (police statement, incident reported 23:53
on Tuesday 5 August), NRK 30.08.2025 (nine charged, one man in his late 20s remanded four weeks,
straw men rented a hideout flat), Document.no 04.09.2025 (nine charged for aggravated robbery and
deprivation of liberty, three adults and two minors bound, one threatened with a firearm, one
subjected to serious violence, two arrested abroad on international warrants). Decisions for you:
(a) add these URLs to the record; (b) `date` = August 6 but police log the call at 23:53 on
**5 August** — pick one and say "night of 5-6 August"; (c) the record's "Ledger wallet" search and
"handler / third-party DB leak" notes do not appear in any Oslo source found — the handler detail
is a Suresnes fact and probably leaked in from the wrong article; Document.no instead says police
suspect the job was ordered by people close to the family. Confirm or drop; (d) Document.no says
three adults were bound per police, while the record says a family with three children — the
police count (3 adults + 2 minors) and Document's (2 parents + 3 children) disagree; keep both
with attribution.
- **Case 441** — its fetched sources (url_2, url_3) actually describe case 438 (same Montreal
home-invasion cluster, wrong incident). Decide: drop them, or move to 438.
- **Case 295** — the Forbes source (url_3) predates the event it is filed under, so it cannot be
@@ -210,7 +246,14 @@ row 252 wrong URL / Phuket case). Additional items found during the summary pass
(knives + cleaver seized); 243 (tased); 245 (weapon recovered).
- **`theft` = 0 but property was taken:** 303 (Dh183k + phones/cheques); 297 (Dh1.7m cash); 273 (dog,
MacBook, jewellery); and see 218 above.
- **`kidnappings` = 1 but no abduction (attacked/robbed in place):** 293, 271, 273, 298.
- **`kidnappings` flag — RULE CHANGE 2026-09-06.** The flag is the DETENTION flag (victim held against
their will, any place, any duration), not "abduction". Please rename the DB field `kidnappings` to
`detention` and the sheet column "Kidnappings" to "Detention"; the scenario name "Kidnapping" stays.
Full rule: README-START-HERE.md, "Definitions". Per-case proposals with evidence:
`detention-flag-review.md` / `detention-flag-corrections.json` (40 records; on 2026-09-06 the owner ACCEPTED all 30 set-to-1 proposals (rule clarified: detention of
anyone, guards or staff included, counts); the 10 set-to-0 items incl. the two nulls and 2 checks are still open). This REPLACES the earlier item
"`kidnappings` = 1 but no abduction: 293, 271, 273, 298" — under the detention rule 293 and 271 stay 1
(held at gunpoint / forced back inside), 273 goes to 0 (stabbed, not held), 298 needs a source check.
- **Case 237** — `violence_torture` = 0 but the source says he was beaten; `theft` = 1 though nothing was
taken (released once found "broke").
- **Case 228** (NYC SoHo torture) — the linked ABC source withholds the victim's name; the DB `victim`
File diff suppressed because one or more lines are too long
+9 -6
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes 1 year extorsion turned into a swatting situation
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Hal Finney
@@ -70,19 +73,19 @@ Ver, who was himself sentenced to 10 months in federal prison for illegally ship
The “police have been devoting a huge amount of resources to track down peaceful people engaged in voluntary trade like Charlie Shrem and the operators of the Silk Road Market,” Ver says, “while evil hackers were busy terrorizing quadriplegic Hal Finney and his family.”
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source wired.com
URL https://www.wired.com/2014/12/finney-swat/
Field url
Retrieved 2026-09-05T12:57:14+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 36 paragraphs, untrimmed
Kept paragraphs headline [0] + 1-35 of 36
Length 6,971 chars
Integrity sha256 18f9d9c4f5d74128b1a95c4236e698e0f271ad78da78665f4d72ed3aa44d7539
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 1-35 plus headline [0]; dropped 0 leading and 0 trailing paragraphs. Case-term hits on page: 15.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
+11 -20
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes A Bitcoin ATM was stolen. Seems like the suspecs were there before, asking questions about the ATM
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Amanda McCollum
@@ -98,19 +101,19 @@ While this is the first case of a BTM robbery in the US, it is not the first. In
“We will just need to be a bit more selective on where exactly to place them,” said the owner of the General Bytes BTM, Martin Wismeijer, whos also known as Mr.Bitcoin. “On top of that, newly placed BTM's will all be insured against theft.”
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source cointelegraph.com
URL https://cointelegraph.com/news/stupidity-or-greed-why-steal-bitcoin-atm
Field url
Retrieved 2026-09-05T12:57:12+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 15 paragraphs, untrimmed
Length 3,157 chars
Integrity sha256 ad0777df2e1cea64a8881e047417d1ed188763dc476a0139187bd98d3075a9ec
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 4-11 of 15
Length 2,451 chars
Integrity sha256 860f4d241ee0eff0ae1b3f00239f515f0ca172d5eb24501968645d59171b813f
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 4-11 plus headline [0]; dropped 3 leading and 3 trailing paragraphs. Case-term hits on page: 10.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -119,12 +122,6 @@ ORIGINAL (unknown, verbatim as retrieved)
Stupidity or Greed? Why Steal Bitcoin ATM?
Written by Nina Lyonformer writerReviewed by Cyril Gilsonformer editor
On November 3, two robbers stole a Lamassu Bitcoin ATM at the Village Smoke Shop in Atlanta, Georgia, according to local news website Clatl.com.
According to Atlantas Police Detective Scott Bowers, the thieves got away with Bitcoin ATM (also called BTM) filled with about US$2,000 as it was recently emptied. Whats more is that one of the perpetrators fired a gun shot, though luckily no one was injured.
It seems that the thieves wanted to get their hands on this machine in particular. Amanda McCollum, an employee in Midtowns Village Smoke Shop, witnessed the crime. She saw that the suspects “walked in, went straight to [the Bitcoin ATM], took it and only it, and walked out.”
However, stealing a Bitcoin ATM is not a good idea. While a Lamassu Bitcoin ATM itself is valued at US$7,000, the criminals would not be able to re-sell it because it is registered to the buyer with serial numbers linking them to the original owners. Moreover, no one except the owner will be able to get any bitcoins from the machines while most BTMs dont hold a lot of cash inside as a rule.
@@ -141,12 +138,6 @@ While this is the first case of a BTM robbery in the US, it is not the first. In
Cointelegraph is committed to independent, transparent journalism. This news article is produced in accordance with Cointelegraphs Editorial Policy and aims to provide accurate and timely information. Readers are encouraged to verify information independently.
Bitcoin ETF inflows hit $3.8B in strongest three-week stretch of 2026
Bitcoin ETF inflows hit $731M, highest since January as BTC reclaims $80K
Bitcoin reclaims $80K as DXY falls amid continuing suspected yen intervention
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 002
================================================================================================
+11 -56
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes 2 Bitcoin ATMs were stolen
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Martin Wismeijer
@@ -100,19 +103,19 @@ The robbery of the ATMs leaves only two Bitcoin ATMs remaining in Amsterdam, whi
Mr.Bitcoin operates 11 crypto-currency ATMs in numerous European countries, including England, the Netherlands and the Czech Republic. This theft marks the first ATM ever stolen from the company.
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source bitcoinist.com
URL https://bitcoinist.com/two-bitcoin-atms-stolen-amsterdam/
Field url
Retrieved 2026-09-05T12:57:09+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 32 paragraphs, untrimmed
Length 3,943 chars
Integrity sha256 a010c55ee5ee28b27daf92e5caa3331692433747167ea384b1d7c25c597ba1b6
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 7-13 of 32
Length 2,340 chars
Integrity sha256 1257ded0a909059760cbb270f5a4c9774ee5125e6e051a810e66f91f0de368bb
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 7-13 plus headline [0]; dropped 6 leading and 18 trailing paragraphs. Case-term hits on page: 9.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -121,18 +124,6 @@ ORIGINAL (unknown, verbatim as retrieved)
Two Bitcoin ATMs Stolen In Amsterdam | Bitcoinist.com
Buy gift cards/mobile Top Ups with Cryptos
What Is Bitcoin?
Why Use Blockchain Technology?
What is Facebook Libra?
Breaking News: The Ethereum Indicator That Never Missed A Bottom Is Signaling Again, This Time At $700
Trusted Editorial content, reviewed by leading industry experts and seasoned editors. Ad Disclosure
Regular, cash dispensing ATMs have been a prime target for robberies since the technology was first born. But ATMs that dispense crypto-currency have had a more peaceful existence with no reported thefts. That is, until now. Late last month, two Bitcoin ATMs were stolen from two different businesses in Amsterdam.
Martijn Wismeijer, founder of the first “bitcoin atm collective,” Mr.Bitcoin, installed one of the machines that was stolen. “About two weeks ago, at Warries Thai food the door was forced and [thieves] removed the BitAccess ATM. This ATM was not owned by Mr.Bitcoin but we know the owner of the restaurant.” He went on to say, “The other ATM at Hofje van Wijs was a General Bytes unit, owned and installed by MrBitcoin. The burglars forced their way into the venue at 6:55 AM and also went for the safe, cash register and of course, the Bitcoin ATM.”
@@ -147,42 +138,6 @@ The robbery of the ATMs leaves only two Bitcoin ATMs remaining in Amsterdam, whi
Mr.Bitcoin operates 11 crypto-currency ATMs in numerous European countries, including England, the Netherlands and the Czech Republic. This theft marks the first ATM ever stolen from the company.
Are more Bitcoin ATMs in danger? Let us know your thoughts in the comments!
Editorial Process for bitcoinist is centered on delivering thoroughly researched, accurate, and unbiased content. We uphold strict sourcing standards, and each page undergoes diligent review by our team of top technology experts and seasoned editors. This process ensures the integrity, relevance, and value of our content for our readers.
Sign Up for Our Newsletter!
For updates and exclusive offers enter your email.
ENS Proposes L2 Registry Migration To Cut Domain Costs
BNB Chain Sets Lorentz Hard Fork Schedule For Mainnet
EigenLayer Restaking Deposits Cross 5M ETH
Uniswap v4 Hook Library Adds Automated Liquidity Tools
Optimism Superchain Interoperability Goes Live On Sepolia Testnet
XRP Ledger AMM Amendment Reaches 80% Validator Consensus
Axis Robotics Open-Sources One of the Largest Franka Arm...
로빈후드 체인 타고 날아오른 아티피셜...
What Building Atlas on BNB Chain Changes for Ordinary...
ConConAI ($CON) Presale Moves Closer to Phase 2 as Early...
스타크웨어, 비트코인 양자 저항 거래...
Bitcoin news portal providing breaking news, guides, price analysis about decentralized digital money & blockchain technology.
© 2026 Bitcoinist.com. All Rights Reserved.
© 2025 Bitcoinist. All Rights Reserved.
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 003
================================================================================================
+11 -16
View File
@@ -27,6 +27,9 @@ DATABASE RECORD
has_processed_date 0
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Dean Katz
@@ -82,19 +85,19 @@ New York State is currently working on controversial legislation to legitimize a
“Right now, its like the Wild West,” Mr. Katz said, “and stagecoach robberies are going to happen.”
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source observer.com
URL http://observer.com/2015/02/bitcoin-crime-wave-breaks-out-in-nyc/
Field url
Retrieved 2026-09-05T12:57:06+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 30 paragraphs, untrimmed
Length 4,967 chars
Integrity sha256 2f6a40e26ccd8a7054b20e0c51d266d0691fe0546d87a00511a3f3275c73a59e
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 1-26 excl [19] of 30
Length 4,621 chars
Integrity sha256 f7186789b2757f1f7e460e8a3d61a4ccc2f0f04ca7f2957a9e13b4506cfa0d3b
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 1-26 plus headline [0]; dropped 0 leading and 3 trailing paragraphs and 1 interior furniture line(s). Case-term hits on page: 12.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -140,8 +143,6 @@ New York State is currently working on controversial legislation to legitimize a
Filed Under:
Cryptocurrency, News & Politics, Politics, Business, Bitcoin, NYPD, New York
SEE ALSO: Why Elon Musk Is Giving Zelenskyy the Silent Treatment Over Ukraines Starlink Plea
We noticed you're using an ad blocker.
We get it: you like to have control of your own internet experience.
@@ -156,12 +157,6 @@ How Do I Whitelist Observer?
Below are steps you can take in order to whitelist Observer.com on your browser:
Click the AdBlock button on your browser and select Don't run on pages on this domain.
Click the AdBlock Plus button on your browser and select Enabled on this site.
Click the AdBlock Plus button on your browser and select Disable on Observer.com.
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 004
================================================================================================
+11 -12
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes kidnapped, robbed, and stabbed
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Dwayne Richards
@@ -88,19 +91,19 @@ Katz also told the Observer he has heard from other bitcoin traders about additi
The Observer article said that a New York City firefighter had been stabbed during a robbery of bitcoins that he had agreed to sell. But police on Friday told CNBC that that robbery, which occurred on Feb. 9, "is not bitcoin related." The firefighter's credit card and PIN number were stolen, and he was stabbed in the arm, police said.
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source cnbc.com
URL https://www.cnbc.com/2015/06/05/new-york-city-man-robbed-at-gunpoint-for-bitcoin.html
Field url
Retrieved 2026-09-05T12:57:03+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 18 paragraphs, untrimmed
Length 2,607 chars
Integrity sha256 6329ca4d532ecb01a11e8a517519bcc75875d65e0e9d4b41e9d48efdf273202a
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs 0-17 excl [7, 13] of 18
Length 2,509 chars
Integrity sha256 cc71cd682ef6839d1d1bf4f60d19df3c1a4c8c2028401dd97906dc7844d4703a
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 0-17; dropped 0 leading and 0 trailing paragraphs and 2 interior furniture line(s). Case-term hits on page: 9.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -121,8 +124,6 @@ The 28-year-old victim told police he went to a street corner there to meet a ma
The purported buyer then led the victim to a car to complete the purchase, where another man sitting in the backseat pulled a gun and ordered the victim to electronically transfer the bitcoins to the thieves, cops said.
Read MoreBitcoin needs more consumer protection
After the victim sent the bitcoins, the thugs then took the victim's cellphone, and drove off, according to police. The victim then called 911.
"It's still under investigation," said the police spokeswoman. She said there was no surveillance video footage of the virtual money stickup available.
@@ -133,8 +134,6 @@ New York police on Friday gave additional details about that Jan. 22 robbery of
"He was held at gunpoint and the suspects requested his Samsung phone and money," police said. Katz then got out of the car, and the suspects fled, cops said.
Read MoreBitcoin gets a rival—how will it fare?
No arrests have been made in Katz's case.
Katz also told the Observer he has heard from other bitcoin traders about additional strong-arm robberies of the digital currency as well as the use of counterfeit cash to buy bitcoin.
+36 -3
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes A Bitcoin ATM was stolen with 2,000 EUR in it
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Robert Nederhoed
@@ -63,9 +66,39 @@ The entrepreneur doesn't think a new ATM will be installed anytime soon. "The ma
Anyone interested in experimenting with bitcoins should keep their eyes and ears open. Nederhoed offers a reward of 10 bitcoins for a tip that leads to the recovery of the ATM.
OTHER LINKED SOURCES
[BLOCKED] url None — raw request refused; try the WebFetch path, which is a model transcription and must be labelled as such
https://www.ad.nl/binnenland/dieven-stelen-2000-euro-uit-bitcoinautomaat-in-delft~a315113e/
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source ad.nl
URL https://www.ad.nl/binnenland/dieven-stelen-2000-euro-uit-bitcoinautomaat-in-delft~a315113e/
Field url
Retrieved 2026-09-05T13:32:59+00:00 via Wayback Machine snapshot 20211002025305, deterministic extraction (HTTP None)
Language unknown
Kept paragraphs headline [0] + 3-7 of 38
Length 1,694 chars
Integrity sha256 c7cfb5df085a52df966fdd94310963fedfab2f5feffdf4d75de6744150dec3af
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 3-7 plus headline [0]; dropped 2 leading and 30 trailing paragraphs. Case-term hits on page: 7.
Note live URL was BLOCKED on the first pass; text comes from an archived copy dated 2021-10-02
Archive http://web.archive.org/web/20211002025305/https://www.ad.nl/binnenland/dieven-stelen-2000-euro-uit-bitcoinautomaat-in-delft~a315113e/
Caveat retrieved from a Wayback Machine snapshot, not the live page. The
snapshot date is in the method line; the live URL was unreadable.
------------------------------------------------------------------------------------------------
ORIGINAL (unknown, verbatim as retrieved)
Dieven stelen 2000 euro uit bitcoinautomaat in Delft | Binnenland | AD.nl
Dieven hebben maandagnacht 'zijn' bitcoin wisselautomaat ontvreemd uit stadscafé De Waag aan de Markt. Klanten van het café konden in de automaat hun bankbiljetten omwisselen voor virtuele bitcoins, waarmee onder meer aan de bar betaald kon worden. In het apparaat zat ten tijde van de diefstal zo'n 2000 euro aan bankbiljetten.
,,De dieven hebben er behoorlijk wat moeite voor moeten doen,'' zegt directeur Robert Nederhoed van leverancier Bitmymoney. ,,De automaat van 50 kilo zat verankerd aan de grond en de muur, maar dat was kennelijk geen belemmering.'' De diefstal was een gerichte slag, betoogt hij. "Uit de rest van het café is niets meegenomen. De inbrekers kwamen alleen voor de automaat.''
De ondernemer denkt niet dat er snel weer een automaat terugkomt. "Het apparaat is meer als ludiek geintje bedoeld. Wel een duur geintje, want een nieuwe kost me al gauw 4000 euro. Ik denk niet dat het die investering waard is.''
Wie zelf eens wil experimenteren met bitcoins moet zijn ogen en oren goed de kost geven. Nederhoed looft 10 bitcoins uit voor een tip die leidt naar de opsporing van de automaat.
<blockquote class="twitter-tweet" data-partner="tweetdeck"><p lang="nl" dir="ltr">Iemand onze <a href="https://twitter.com/hashtag/Bitcoin?src=hash">#Bitcoin</a> ATM al tegengekomen? Er staat een beloning oh terugvinden! <a href="https://twitter.com/hashtag/Delft?src=hash">#Delft</a> <a href="https://twitter.com/hashtag/AboutTheOtherNight?src=hash">#AboutTheOtherNight</a> <a href="https://twitter.com/hashtag/10BTC?src=hash">#10BTC</a> <a href="https://t.co/CEOxn9Ywfd">pic.twitter.com/CEOxn9Ywfd</a>
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 006
+11 -44
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes kidnapped, robbed, and threathened. Suspects were detained and investigated. A gang.
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Tadas Kasputis
@@ -84,19 +87,19 @@ Kasputis also confirmed that he and his partners established "Kaduceo LLP" throu
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source kauno.diena.lt
URL https://kauno.diena.lt/naujienos/kaunas/nusikaltimai-ir-nelaimes/ne-bernvakario-pokstas-kaune-buvo-pagrobtas-bitkoinu-prekeivis-827044
Field url
Retrieved 2026-09-05T12:56:59+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 31 paragraphs, untrimmed
Length 4,900 chars
Integrity sha256 81bc833bf7dbcca8bcd91b5ac6745a9a723586bad706a6675206257d14a8c85b
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 12-27 of 31
Length 4,227 chars
Integrity sha256 05909d404390349fe9c65c59bc50bf543839f93e7034714d085f0dcabefc1e93
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 12-27 plus headline [0]; dropped 11 leading and 3 trailing paragraphs. Case-term hits on page: 4.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -106,36 +109,6 @@ ORIGINAL (unknown, verbatim as retrieved)
Kaune pagrobtam bitkoinų prekeiviui grasinta išdurti akis
Pereiti į pagrindinį turinį
Kaune pagrobtam bitkoinų prekeiviui grasinta išdurti akis
/
Scanpix nuotr.
Kai mokėjimo kortelė peržengia banko ribas: naujas verslo santykis su klientu
„Cosmoway“ plečiasi: tarptautinė karjera dirbant Kaune
Dundulis: konkurentai pirkėjui davė signalą, kur nusipirkti šviežiausios mėsos
Vėluojančias Pigu.lt finansines ataskaitas lydi nerimą keliančios audito išvados
Europa ir JAV: kalbėtojų aljansas su darytojais
Prenumeruokite ir gaukite tik pačius įdomiausius straipsnius el. paštu!
Nepatvirtintais duomenimis, tąsyk buvo pasikėsinta į 29-erių metų kaunietį Tadą Kasputį. Kaip įtariama, kauniečiai E. J., R. G., M. Š. ir Š. P. liepos 11 d. prie Kaune, Kaunakiemio g., esančios automobilių plovyklos, panaudodami fizinį smurtą, įstūmė nukentėjusįjį į automobilį ,,Ford Transit”, surakino jam rankas ir, pavežę kiek tolėliau, persodino jį į kitą automobilį, kuriame uždėjo ant akių kepurę ir iki paryčių važiojo po Kauno apylinkes.
@@ -168,12 +141,6 @@ Kaunietis taip pat patvirtino su partneriais per "Mossack Fonseca" įsteigęs "K
Atgal į mokyklą: ką verta įsigyti prieš naujus mokslo metus?
Naujasis „Grušo3“ projektas Šilainiuose: išskirtinis dizainas ir tobula vieta
Dainavoje kyla nauji daugiabučiai namai „Du kaimynai“
Projektas „Du pušynai“: naujos statybos namai prie Kauno marių
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 007
================================================================================================
+11 -124
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes robbed
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Steve Manos
@@ -67,19 +70,19 @@ Manos gave deputies a phone number he had used to contact one of the suspects to
Deputies arrested Allen the next day. He faces armed robbery, burglary and battery charges and is being held in Palm Beach County Jail on $31,000 bond.
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source sun-sentinel.com
URL https://www.sun-sentinel.com/2016/07/27/boynton-beach-man-accused-of-robbing-28k-in-bitcoins-deal-deputies-say/
Field url
Retrieved 2026-09-05T12:56:57+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 67 paragraphs, untrimmed
Length 2,082 chars
Integrity sha256 cf40d4be0a6e7d259ff767ad786e5eb81fb3501537b8d2cb7499818178bda3f1
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 56-65 of 67
Length 1,791 chars
Integrity sha256 2c7dd5b7a2889e27f0824f45105fa2904619afd3b65f4eb80330245243e57cd0
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 56-65 plus headline [0]; dropped 55 leading and 1 trailing paragraphs. Case-term hits on page: 17.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -88,120 +91,6 @@ ORIGINAL (unknown, verbatim as retrieved)
Boynton Beach man accused of robbing $28K in Bitcoins deal, deputies say Sun Sentinel
Skip to content
PUBLISHED: July 27, 2016 at 5:02 PM EDT | UPDATED: June 10, 2018 at 2:46 PM EDT
Getting your Trinity Audio player ready...
A man thought his $28,000 business transaction around midnight in the parking lot of a West Palm Beach Boston Market would go smoothly. Instead, it ended in armed robbery, according to a Palm Beach Sheriffs arrest report.
@@ -222,8 +111,6 @@ Manos gave deputies a phone number he had used to contact one of the suspects to
Deputies arrested Allen the next day. He faces armed robbery, burglary and battery charges and is being held in Palm Beach County Jail on $31,000 bond.
asacasa@sunsentinel.com, 561-243-6607 or Twitter & Instagram @adamsacasa
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 008
================================================================================================
+3
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes 5 to 6 teenagers stabbed people, robbed cash and other belongings by setting up fake P2P transactions
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Multiple
+11 -36
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes Bitcoin ATM stolen
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Tivoli Brasserie
@@ -71,19 +74,19 @@ A similar incident occurred in India just a couple of months before. The thieves
Either the Dutch thieves were foolish too, or they were after the cash — which they could have probably stolen much easier elsewhere. These capers are reminiscent of the notorious scene in Breaking Bad, where two drug addicts haul a bank ATM to their living room but are unable to open it. It ends gruesomely.
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source web.archive.org
URL https://web.archive.org/web/20190510113124/https://bitsonline.com/bitcoin-atm-stolen-netherlands/
Field url
Retrieved 2026-09-05T12:56:50+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 30 paragraphs, untrimmed
Length 4,452 chars
Integrity sha256 31ce740d92f93b8636a4e6d12202649f143bd9ebb46db15e699dd88fbfa18922
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 5-29 excl [6, 19] of 30
Length 3,949 chars
Integrity sha256 a0d73d2d35812d243ec41df7c0a0cb9c6909d4b7d02502eef6685e726f83dee7
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 5-29 plus headline [0]; dropped 4 leading and 0 trailing paragraphs and 2 interior furniture line(s). Case-term hits on page: 40.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -92,34 +95,8 @@ ORIGINAL (unknown, verbatim as retrieved)
Dutch Bitcoin ATM Owner Laughs at Thieves Who Took His Machine - Bitsonline
Apr
MAY
Jun
10
2018
2019
2020
The Wayback Machine - https://web.archive.org/web/20190510113124/https://bitsonline.com/bitcoin-atm-stolen-netherlands/
Dutch Bitcoin ATM Owner Laughs at Thieves Who Took His Machine
November 6, 2017 by Akshay Makadiya
0 Comment
8215 Views
Thieves stole a bitcoin ATM installed in Oudenbosch, Netherlands last Wednesday by lifting and carrying it away. With bitcoins high prices attracting newcomer crooks as well as investors, its unclear if the thieves really understood what they were stealing.
Also read: Binance and QUOINE Team up for Access to Busy Digital and Fiat Markets
Join the Bitsonline Telegram channel to get the latest Bitcoin, cryptocurrency and tech news updates: https://t.me/bitsonline
Bitcoin is a virtual currency, which thieves would not be able to access simply by stealing the machine, the owner said. The ATM had operated at the Tivoli Brasserie in Oudenbosch since 2014. Thieves stole only the bitcoin machine, and nothing else.
@@ -144,8 +121,6 @@ A similar incident occurred in India just a couple of months before. The thieves
Either the Dutch thieves were foolish too, or they were after the cash — which they could have probably stolen much easier elsewhere. These capers are reminiscent of the notorious scene in Breaking Bad, where two drug addicts haul a bank ATM to their living room but are unable to open it. It ends gruesomely.
Could you actually steal a bitcoin ATM for profit, or is it not worth the trouble? Tell us what you think in the comments.
« Bitcoin Price Projected to Reach $12,000 After Earth-Shattering Rally
Demystifying Ethereum: Beyond Byzantium »
+3
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes to listen!
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Josoj
+11 -12
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes OG publicly knonw, appeared in local media, corrupted banker sold him out to kidnappers
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Rocelo Lopes' wife
@@ -240,19 +243,19 @@ In November, attackers broke into the Spanish home of the social-media entrepren
"This is still pretty niche and edge-case type of thing," Lopp said. "But you know as the space goes more mainstream, it's something that we expect to come up more and more often — just because more malicious-minded people will be testing out to see what the risk and reward is for trying to physically attack people who have bitcoin and other digital assets."
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source bitcoinworldtour.org
URL https://bitcoinworldtour.org/2017/05/11/victim-of-brazilian-bitcoin-ransom-kidnapping-plot-rescued/
Field url
Retrieved 2026-09-05T12:56:46+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 20 paragraphs, untrimmed
Length 4,093 chars
Integrity sha256 01b7f484741c187d9de542eaf3e49317a376df09b79a8d940bd2804677ad34ae
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 2-18 of 20
Length 3,982 chars
Integrity sha256 a370d1fd770706f90a3a689a0a7466ec273a585e680fa9f874431aa18890a6bb
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 2-18 plus headline [0]; dropped 1 leading and 1 trailing paragraphs. Case-term hits on page: 8.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -261,8 +264,6 @@ ORIGINAL (unknown, verbatim as retrieved)
Victim of Brazilian Bitcoin Ransom Kidnapping Plot Rescued - Bitcoin World Tour
Victim of Brazilian Bitcoin Ransom Kidnapping Plot Rescued
I just got to know this terrible case had actually happened to our friend in Sao Paulo. Luckily his wife is rescued.
The kidnappers had actually asked for ransom to be paid in Monero and Zcash! Obviously they are very much in the loop of crypto-technology with all the zero knowledge proof and stuffs.
@@ -297,8 +298,6 @@ Ruffer Is the Latest Billion-Dollar Firm to Bet on Bitcoin
The asset manager put 2.5% of its Multi-Strategies Fund in Bitcoin because its a “potent insurance policy.” In brief London-based asset manager, Ruffer Investment Company, […]
Bitcoin World Tour All Right Reserved 2013 - 2020
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 012
================================================================================================
@@ -26,6 +26,9 @@ DATABASE RECORD
notes coerced team through false authority claim
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** 3 Indian Bitcoin traders
@@ -69,19 +72,19 @@ The complainants were then taken to a remote spot where the suspects yelled at t
The trial continues on December 13.
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source khaleejtimes.com
URL https://www.khaleejtimes.com/uae/crime/3-fake-dubai-cops-kidnap-traders-to-rob-bitcoins
Field url
Retrieved 2026-09-05T12:56:44+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 22 paragraphs, untrimmed
Length 3,120 chars
Integrity sha256 65707cc37237af0f5f1c9dee93443d2bbcaae9a3d4b69c4db271b8e09a793366
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 11-18 of 22
Length 1,893 chars
Integrity sha256 d6205f165eca8604eadd488998e3928b41d0758dc4c9bae5c992b5b0b6cdfb02
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 11-18 plus headline [0]; dropped 10 leading and 3 trailing paragraphs. Case-term hits on page: 13.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -90,26 +93,6 @@ ORIGINAL (unknown, verbatim as retrieved)
3 'fake' Dubai cops kidnap traders to rob bitcoins | Khaleej Times
3 'fake' Dubai cops kidnap traders to rob bitcoins
The trio was charged with kidnap, impersonation and online misappropriation of the virtual currency.
PUBLISHED: Mon 26 Nov 2018, 10:00 PM UPDATED: Tue 27 Nov 2018, 7:26 AM
Three Emirati men were charged at the Dubai Court of First Instance on Monday for allegedly posing as cops and kidnapping three Indian traders to a desert location to rob 25 bitcoins from them.
According to public prosecution records, the trio, aged 19, 27 and 20 (student), conned the victims into riding in their car after falsely claiming that they were being wanted by authorities for dealing in the virtual currency.
UAE President pardons Abdul Rahman Yusuf Al Qaradawi after criminal conviction
Sharjah Ruler approves Dh20,000 monthly living allowance for govt employees, other groups
US VP Vance says would not 'call it a war' with Iran, on categorising hostilities
Sharjah Police arrest man accused of killing two Kazakh sisters
US military disables 3 vessels, redirects 87 in ongoing Iran blockade
They then drove to a remote desert location off Al Barsha where they used the victims' laptop to transfer 25 bitcoins from their account into the account of one of them in Japan. The trio was charged with kidnap, impersonation and online misappropriation of the virtual currency.
They had four Indian accomplices, aged between 21 and 47. Those are accused of possessing Dh250,000, under circumstances suggesting that the money was ill-gotten.
@@ -126,12 +109,6 @@ One of the victims, a 35-year-old Indian investor, told the prosecutor that he w
The complainants were then taken to a remote spot where the suspects yelled at them that they were fraudsters and would be deported. One of their laptops was then used to transfer bitcoins to an account belonging to the 27-year-old defendant.
The trial continues on December 13.
Trump says US may hit Iran's Pickaxe Mountain soon
UAE latest flight updates: Almost 20 services delayed or cancelled after renewed US-Iran attacks
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 013
================================================================================================
+11 -20
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes conference lead
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Miyuki Noda
@@ -117,19 +120,19 @@ According to the National Consumer Affairs Center of Japan, the number of victim
The schemes typically recruit attendees by claiming to provide the know-how to boost an initial investment substantially over a short period through virtual currencies, such as bitcoin. Problems arise when the returns are not realized and since attendees recruit other members to attend in exchange for remuneration, making the operations akin to pyramid schemes.
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source tokyoreporter.com
URL https://www.tokyoreporter.com/japan/nagoya/aichi-cops-accuse-pair-of-dumping-nagoya-womans-corpse-in-shiga/
Field url
Retrieved 2026-09-05T12:56:41+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 16 paragraphs, untrimmed
Length 2,299 chars
Integrity sha256 50c61594c4a92799b7bc0763f059ff13a9ec2967a60710f21493f6458a4b763d
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 3-11 of 16
Length 1,878 chars
Integrity sha256 756568d86208cf6ae794c48ce055058df8c8611a11725e218331916c4373ca1d
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 3-11 plus headline [0]; dropped 2 leading and 4 trailing paragraphs. Case-term hits on page: 13.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -139,10 +142,6 @@ ORIGINAL (unknown, verbatim as retrieved)
Aichi cops accuse pair of dumping Nagoya woman's corpse in Shiga | TokyoReporter
Press "Enter" to skip to content
Aichi cops accuse pair of dumping Nagoya womans corpse in Shiga
By Tokyo Reporter Staff on August 2, 2017
SHIGA (TR) Aichi Prefectural Police have accused two persons of abandoning the corpse of a missing woman from Nagoya in a mountainous area of Shiga Prefecture earlier this year, reports Nippon News Network (Aug. 1).
On around June 20, Ichiya Nishida, a 20-year-old resident of Ogaki City, Gifu Prefecture, and an 18-year-old boy from Shiga, allegedly buried the body of Miyuki Noda, 53, who went missing two days before, in a forested area of the town of Taga.
@@ -161,14 +160,6 @@ Published in Crime, Japan, Japan Breaking News, Nagoya and News
The editorial team at The Tokyo Reporter brings the site's readership the latest news from the under side of Japan.
Tokyo man accused of sexually assaulting matchmaking app date at his apartment
Tokyo man arrested over arson attack on elderly womans home
Fukushima bar manager accused of dumping sisters corpse hints at murder amid debt speculation
Myanmar student arrested after newborn corpse found in Saitama apartment
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 014
================================================================================================
+11 -10
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes crypto consultation lead
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Alexey Sherstne
@@ -65,19 +68,19 @@ Cleverly, Sherstnev tricked the attackers into sending an SOS signal from his ph
Previously, in Ukraine, an underground Bitcoin conversion center was reported to have embezzled 200 million hryvnias.
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source obozrevatel.com
URL https://www.obozrevatel.com/kiyany/crime/v-kieve-iz-parnya-vyibivali-bitcoin-na-summu-pochti-50-tyis-doll.htm
Field url
Retrieved 2026-09-05T12:56:38+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 14 paragraphs, untrimmed
Length 1,788 chars
Integrity sha256 32462f21d6d19fb025185f77c64f8314c6f1815a8fb8ac59e5d839d475ee06b7
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 2-13 of 14
Length 1,711 chars
Integrity sha256 2c196b36c4a5800cf5963d9e65ccda46eb047458cf6291294d7bcf54dd987d05
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 2-13 plus headline [0]; dropped 1 leading and 0 trailing paragraphs. Case-term hits on page: 3.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -86,8 +89,6 @@ ORIGINAL (unknown, verbatim as retrieved)
В Киеве из парня выбивали Bitcoin на сумму почти 50 тыс. долл. | Криминал | OBOZ.UA
Будьте первыми в курсе главного – подпишитесь на Новини на OBOZ.UA в Google
В Киеве трое мужчин выбивали Bitcoin у Алексея Шерстнева, который занимается трейдингом криптовалют и консультациями по этой теме.
Об этом пострадавший написал на своей странице в Facebook.
+56 -3
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes (null)
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Jameson Lopp
@@ -71,9 +74,59 @@ Homeowner Jameson Lopp told CBS North Carolina that he works for a software comp
“I am not intimated by this. This is actually, from my perspective evidence that the people who want to do this do not have the guts to say anything to my face. They dont have the guts to come here and actually tell me what their problem is with me,” said Lopp.
Durham police have not confirmed this to be a swatting case. At last check, police have not been able to track the caller.
OTHER LINKED SOURCES
[BLOCKED] url None — raw request refused; try the WebFetch path, which is a model transcription and must be labelled as such
https://www.cbs17.com/news/durham-man-says-enemies-called-911-to-report-false-hostage-situation/
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source cbs17.com
URL https://www.cbs17.com/news/durham-man-says-enemies-called-911-to-report-false-hostage-situation/
Field url
Retrieved 2026-09-05T13:32:50+00:00 via Wayback Machine snapshot 20201127135714, deterministic extraction (HTTP None)
Language unknown
Kept paragraphs headline [0] + 1-15 of 21
Length 2,205 chars
Integrity sha256 3125ab22077334288c7e9e97bd57027f322b9b4d0c3cd3fc2c11e69f63ec1dd3
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 1-15 plus headline [0]; dropped 0 leading and 5 trailing paragraphs. Case-term hits on page: 9.
Note live URL was BLOCKED on the first pass; text comes from an archived copy dated 2020-11-27
Archive http://web.archive.org/web/20201127135714/https://www.cbs17.com/news/durham-man-says-enemies-called-911-to-report-false-hostage-situation/
Caveat retrieved from a Wayback Machine snapshot, not the live page. The
snapshot date is in the method line; the live URL was unreadable.
------------------------------------------------------------------------------------------------
ORIGINAL (unknown, verbatim as retrieved)
Durham man says 'enemies' called 911 to report false hostage situation
DURHAM, N.C. (WNCN) A Durham man is claiming that hes the latest victim of “swatting” after someone anonymously called police to report a false hostage situation at his home on Monday morning.
Police responded to the 1300 block of Whispering Oaks Lane in response to call about a hostage situation at one of the homes on the street. The call came in around 9 a.m., police said.
The 911 caller told dispatch he had already shot someone and was holding others hostage in the house.Listen to the 911 call at the top of this story
The caller also said he had explosives by the front door.
“By my voice, you can tell Im not in a mental health state,” the caller said. “Im all over the place. I dont know what to do.”
The caller then began to make demands.
“If I dont get $60,000, Im going to blow the whole (expletive) block up,” the caller said. “If I see any police coming toward the front door who arent handling a bag full of money, Ill shoot them on sight.”
The caller also tells the dispatcher he shot the victim 15 times with an assault rifle.
Authorities staged nearby on Cardinal Lake Drive while they worked to determine what was happening.
Police, EMS, a mobile command truck and armed officers in bulletproof vests were all at the scene. When authorities approached the home, the owner came out and told them that the call was false and that they never made any call to police and there was no hostage situation at the home.
Homeowner Jameson Lopp told CBS North Carolina that he works for a software company and has made several online, anonymous “enemies” and that he believes one of them was getting “revenge.”
“I am not intimated by this. This is actually, from my perspective evidence that the people who want to do this do not have the guts to say anything to my face. They dont have the guts to come here and actually tell me what their problem is with me,” said Lopp.
Durham police have not confirmed this to be a swatting case. At last check, police have not been able to track the caller.
Could an Annuity Help Guarantee Your Lifelong Income?
When Should You Call For A Free Roof Inspection?
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 016
@@ -26,6 +26,9 @@ DATABASE RECORD
notes online ads of "discounted bitcoin"
has_processed_date 0
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Multiple victims
+9 -6
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes his "friend" betrayed him
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Unidentified
@@ -137,19 +140,19 @@ Defense lawyer Michael Barsky argued that Guzman, who runs a neighborhood charit
Attorney Rob Georges made a similar pitch for Nunez, then invoked the sex-assault case against movie mogul Harvey Weinstein.
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source nypost.com
URL https://nypost.com/2018/06/12/trio-of-crooks-busted-in-1-8m-cryptocurrency-heist/
Field url
Retrieved 2026-09-05T12:56:32+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 19 paragraphs, untrimmed
Kept paragraphs headline [0] + 1-18 of 19
Length 2,571 chars
Integrity sha256 8c2eabe934044e9335a4ae0dc41c1b1aa61264306549a58ac0f0d26ba4ad3032
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 1-18 plus headline [0]; dropped 0 leading and 0 trailing paragraphs. Case-term hits on page: 4.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
+11 -15
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes 5 people posing as policemen
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Unidentified
@@ -61,19 +64,19 @@ One of the suspects was reportedly jailed for extortion but had fled, while anot
Police investigation revealed that the suspects had also stolen bitcoin mining devices from three different people in Esenler district.
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source dailysabah.com
URL https://www.dailysabah.com/investigations/2017/11/15/turkish-police-detain-gang-who-stole-bitcoins-worth-283m
Field url
Retrieved 2026-09-05T12:56:30+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 10 paragraphs, untrimmed
Length 1,487 chars
Integrity sha256 621e7215128ddf5d43f25de13c126f544508dd98260b73be372b3b671087ab5c
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 2-7 of 10
Length 1,182 chars
Integrity sha256 89b085a512f943b8b3870654b17d3984eda95029c06efa831719aa27161cf515
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 2-7 plus headline [0]; dropped 1 leading and 2 trailing paragraphs. Case-term hits on page: 7.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -82,8 +85,6 @@ ORIGINAL (unknown, verbatim as retrieved)
Turkish police detain gang who stole bitcoins worth $2.83M | Daily Sabah
Turkish police detain gang who stole bitcoins worth $2.83M
Turkey's cybercrimes police detained a gang of thieves who robbed 450 Bitcoins worth $2.83 million from a businessman in Istanbul's Merter district, reports said Wednesday. The incident marks the first time police carried out an operation to detain criminals involved in stealing cryptocurrencies.
According to reports, the gang, consisting of five people, posed as police and stopped the businessman's car and forced him to give out his passwords of online banking accounts at gunpoint.
@@ -97,11 +98,6 @@ Police investigation revealed that the suspects had also stolen bitcoin mining d
Keep up to date with whats happening in Turkey,
its region and the world.
You can unsubscribe at any time. By signing up you are agreeing to our Terms of Use and Privacy Policy.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.
China's Communist Party marks its centenary
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 020
================================================================================================
@@ -26,6 +26,9 @@ DATABASE RECORD
notes befriended security guard to steal 600 asics. wearing jackets from the security company as to not appear out of place. They used the security codes to get inside, and worked extremely quickly. In a matter of a few hours and lots of heavy lifting, around 600 high powered crypto mining computers had been loaded into a truck by hand
has_processed_date 0
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Unidentified
+11 -10
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes they abducted him while leaving his office with a minivan and requested ransom
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Pavel Lerner
@@ -105,19 +108,19 @@ Exmo spokesman Anatoliy Larin told the BBC: "We are doing everything possible to
"Despite the situation the exchange is working as usual. We also want to stress that nature of Pavel's job at Exmo doesn't assume access either to storages or any personal data of users. All users' funds are absolutely safe."
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source bbc.com
URL https://www.bbc.com/news/business-42505261
Field url
Retrieved 2026-09-05T12:56:24+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 15 paragraphs, untrimmed
Length 1,532 chars
Integrity sha256 ad7efb5633b96ac6eefbb11377c322d35407afa68247e8e1f8078f550c797b87
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 1-13 of 15
Length 1,492 chars
Integrity sha256 e5223b31f57c34d7b47118adaf30309bbda8ea5832c135d6217416890cb3a35f
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 1-13 plus headline [0]; dropped 0 leading and 1 trailing paragraphs. Case-term hits on page: 10.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -152,8 +155,6 @@ Exmo spokesman Anatoliy Larin told the BBC: "We are doing everything possible to
"Despite the situation the exchange is working as usual. We also want to stress that nature of Pavel's job at Exmo doesn't assume access either to storages or any personal data of users. All users' funds are absolutely safe."
Would you want to get paid in Bitcoin?
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 022
================================================================================================
@@ -26,6 +26,9 @@ DATABASE RECORD
notes posed as FBI agent to enter the apartment
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** T.W. (Troy Woody Jr.)
+11 -12
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes the suspect didn't want to buy Bitcoin and got into a discussion with the victim, who was encouraging him to do it
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** "Dallas"
@@ -88,19 +91,19 @@ Royce appears to be a felon from North Dakota, according to the complaint.
Speculative investment in bitcoin has increased dramatically over the past year, with one unit of the virtual currency costing as much as $19,000 at one point last month.
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source tmj4.com
URL https://www.tmj4.com/news/local-news/north-dakota-man-arrested-in-mke-after-allegedly-firing-gun-during-bitcoin-transaction-gone-wrong
Field url
Retrieved 2026-09-05T12:56:19+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 10 paragraphs, untrimmed
Length 1,419 chars
Integrity sha256 5509d7d3560ebab1e3eb566063aa0b5b48e627afc24dd8601fa10436d2fdd42b
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 2-8 of 10
Length 1,264 chars
Integrity sha256 d820c4fefca16eee044dedca62635dc2cbc45df190a13c2838222a0e2870f3db
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 2-8 plus headline [0]; dropped 1 leading and 1 trailing paragraphs. Case-term hits on page: 6.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -109,8 +112,6 @@ ORIGINAL (unknown, verbatim as retrieved)
Man allegedly fires gun over bitcoin transaction
North Dakota man arrested in MKE after allegedly firing gun during bitcoin transaction gone wrong
A North Dakota man pleaded not guilty on Wednesday to firing his gun inside a condo near downtown Milwaukee over an attempted bitcoin transaction.
It happened Saturday, December 30 at the 601 Lofts Condominiums, 601 E. Ogden Ave., according to police.
@@ -125,8 +126,6 @@ Royce appears to be a felon from North Dakota, according to the complaint.
Speculative investment in bitcoin has increased dramatically over the past year, with one unit of the virtual currency costing as much as $19,000 at one point last month.
Nominate your hero for the Positively Milwaukee Awards
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 024
================================================================================================
+11 -16
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes he was open about his investments online
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Pavel Nyashin
@@ -66,19 +69,19 @@ NTV adds that the assailants further removed a laptop he used to trade on exchan
A criminal case has been opened on the armed assault, NTV reports.
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source cointelegraph.com
URL https://cointelegraph.com/news/russia-blogger-who-boasted-about-crypto-wealth-beaten-and-robbed-for-425k
Field url
Retrieved 2026-09-05T12:56:17+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 18 paragraphs, untrimmed
Length 2,775 chars
Integrity sha256 bf3a98566c5f58fb60c28b2647d8122fd796c3d7756829c4ae4d668d6356e76b
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 2-14 of 18
Length 2,475 chars
Integrity sha256 7c6e5edc63d73d45b151a56cff04b79a3045588ab9850e0c98d8ee8870de61ab
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 2-14 plus headline [0]; dropped 1 leading and 3 trailing paragraphs. Case-term hits on page: 36.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -87,8 +90,6 @@ ORIGINAL (unknown, verbatim as retrieved)
Russia: Blogger Who Boasted About Crypto Wealth Beaten and Robbed For $425k
Written by William Subergstaff writerReviewed by Igor Belkinformer editor
Attackers have mugged a cryptocurrency millionaire for almost half a million dollars during a visit to his home in St. Petersburg, Russia.
A Russian cryptocurrency investor and blogger known online as Pavel Nyashin was attacked and robbed in his home in Leningrad Oblast the night of Jan. 14. The assailants stole funds worth 24 mln rubles ($425,000), according to local media.
@@ -115,12 +116,6 @@ Prior to that, Ukrainian security personnel allegedly tried to steal funds from
Cointelegraph is committed to independent, transparent journalism. This news article is produced in accordance with Cointelegraphs Editorial Policy and aims to provide accurate and timely information. Readers are encouraged to verify information independently.
Bitcoin ETF inflows hit $3.8B in strongest three-week stretch of 2026
Bitcoin ETF inflows hit $731M, highest since January as BTC reclaims $80K
Bitcoin reclaims $80K as DXY falls amid continuing suspected yen intervention
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 025
================================================================================================
@@ -26,6 +26,9 @@ DATABASE RECORD
notes posed as interpol agents
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Maxsim Latsoka & Anna Nikurina
@@ -126,19 +129,19 @@ Of course, there are many of the normal precautions that you can take in order t
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source aseannow.com
URL https://aseannow.com/topic/1020825-russian-gang-steal-bitcoin-worth-millions-from-young-russian-couple-in-phuket-condo-extortion/
Field url
Retrieved 2026-09-05T12:56:14+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 95 paragraphs, untrimmed
Length 1,621 chars
Integrity sha256 78f6c55740661c869267f98d95897a13ee8a51be51c9f6d3a72a0f2fe1d69d5b
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 68-92 of 95
Length 1,119 chars
Integrity sha256 f5452da89471954f78a13903cae1f6648b0097cbaf2a5ff9cf33d4373f24b024
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 68-92 plus headline [0]; dropped 67 leading and 2 trailing paragraphs. Case-term hits on page: 2 (WEAK anchor, confirm the page is about this case).
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -151,265 +154,6 @@ Russian gang steal Bitcoin worth millions from young Russian couple in Phuket co
Skip to content
A better way to browse. Learn more.
A full-screen app on your home screen with push notifications, badges and more.
Scroll the menu and tap Add to Home Screen.
@@ -460,10 +204,6 @@ Tap Notifications.
Find this site in the list and adjust your preference.
Open Firefox Settings.
Search for Notifications.
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 026
================================================================================================
+11 -14
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes setup fake p2p trade. they convinced the victim to meet later to buy more discounted bitcoin
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** ____ Lee
@@ -79,19 +82,19 @@ The three robbers fled on foot and were seen turning onto North Point Road headi
According to police, the victim suffered minor hand and leg injuries. He was bandaged at the scene but did not require hospital treatment.
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source scmp.com
URL https://www.scmp.com/news/hong-kong/law-crime/article/2129665/hong-kong-bitcoin-trader-lured-bogus-meeting-and-robbed
Field url
Retrieved 2026-09-05T12:56:12+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 11 paragraphs, untrimmed
Length 1,263 chars
Integrity sha256 e853e0ab2995d291e02f2329ef41c348f3678f82ec05474a3dbce99879af7bca
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 4-10 of 11
Length 1,017 chars
Integrity sha256 b2546395167ea8fdcad5c6966007836a699aa54b469ff0c30aa226cb31505fe6
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 4-10 plus headline [0]; dropped 3 leading and 0 trailing paragraphs. Case-term hits on page: 17.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -100,12 +103,6 @@ ORIGINAL (unknown, verbatim as retrieved)
Hong Kong bitcoin trader lured to bogus meeting and robbed of HK$1.4 million | South China Morning Post
Hong Kong bitcoin trader lured to bogus meeting and robbed of HK$1.4 million
Police are searching for five men, two who posed as sellers and three who attacked victim and took his bag
Published: 1:30pm, 19 Jan 2018Updated: 11:05pm, 6 Feb 2018
A citywide police search was under way on Friday for five men after a local bitcoin trader was lured to a bogus business meeting and robbed of HK$1.4 million (US$180,000) on a busy street in Hong Kong.
The five included two suspects who posed as sellers and arranged to meet the victim to trade bitcoin for cash, according to a police source.
+11 -94
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes failed attempt
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Canadian Bitcoins
@@ -119,19 +122,19 @@ CIS Build Kits
The authorities have not revealed the name of the cryptocurrency exchange.
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source thehackernews.com
URL https://thehackernews.com/2018/01/cryptocurrency-exchange-robbery.html
Field url
Retrieved 2026-09-05T12:56:10+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 57 paragraphs, untrimmed
Length 5,584 chars
Integrity sha256 a94af51f351f01d2905dd69ce2ab078d982c1ab0b0bb0f8058c9550810db9e50
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 1-13 of 57
Length 2,111 chars
Integrity sha256 ad127e28e421ef9c9f1a9bbb68da0c69a6258e4a7e98053ef76bea6fb9336d67
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 1-13 plus headline [0]; dropped 0 leading and 43 trailing paragraphs. Case-term hits on page: 6.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -166,92 +169,6 @@ A similar incident happened last month when armed robbers kidnapped a top execut
The New York District Attorney's Office charged New Jersey native Louis Meza for the kidnapping and robbery, claiming Meza held "demanded that the victim turns over his cell phone, wallet, and keys while holding the victim at gunpoint."
Found this article interesting? Follow us on Google News, Twitter and LinkedIn to read more exclusive content we post.
Bitcoin exchange, cryptocurrency exchange, Cyber Attack, hacking news, robbery
Critical Keycloak Password Reset Flaw Could Let Unauthenticated Attackers Take Over Any Account
⚡ Weekly Recap: AI-Powered PLC Attacks, GitLab Attacks, Stripe Key Leaks and More
Actively Exploited Oracle WebLogic Flaw Lets Unauthenticated Attackers Access Critical Data
A Malicious Webpage Could Poison Your Local AI Model Behind NVIDIA NemoClaw
Critical Gitea RCE Actively Exploited as Reported Attack Drops Miner-Like Payload
Claude Opus 4.6 Bypasses Gym Booking Limit, Cancels Other Users' Reservations in Tests
CISA Red Team Compromised Two Critical Infrastructure Orgs, One Detected Nothing
FBI Disrupts China-Linked QTFY Infrastructure Used to Steal Data From U.S. Organizations
New GPUThor Rowhammer Defeats ECC on NVIDIA RTX A6000 to Gain Host Root Access
Alleged TeamPCP Hackers Charged in Australia Over Major Supply Chain Attacks
ThreatsDay: 296K IoT Botnet, 100+ Water Systems Targeted, SharePoint RCE Chain + 27 New Stories
Next.js Patches Critical AVIF and Windows Flaws Enabling Unauthenticated RCE
OpenAI Says Reward Hacking Drove AI Agents to Exploit Zero-Days and Breach Hugging Face
Critical cPanel Flaw Could Let One Hosting Customer Take Root Control of a Whole Server
PaperCut Zero-Day Exploited in Attacks, Affecting All NG and MF Versions
Three CVSS 10.0 ServiceNow Flaws Could Let Unauthenticated Attackers Execute Code and SQL
Attackers Chain Two PaperCut Flaws to Execute Code Without Authentication
Learn How to Build Security Operations Ready for AI-Powered Attacks
Imagine the SOC Without a Queue: From Alert Backlog to AI Hypothesis Engine
Mirage2FA Surge Hits 4,500 US and EU Companies, Abusing Microsoft 365 Login Flows
Frontier AI: Vulnerability Management's Systemic Revolution
Why AI Teams Need Verifiable Search Data Instead of Black-Box Signals
Why Threat Intelligence Needs OT Context to Protect Critical Infrastructure
See How Keeper Secrets Manager Removes Hard-Coded Credentials
Download the CISO's Guide to Smarter AI Security Investment
Phishing Is Costing Security Teams More Than Ever — Read the New Report
Build AI Agents and Automations Without Losing Security Control
AI Attacks Are Moving Faster.
Watch: How to Prepare Your Security Program for AI-Powered Attacks
AI can find and chain vulnerabilities in minutes. This session gives you a practical roadmap to strengthen visibility, response, and remediation.
Learn How to Know What to Fix First Before AI Speeds Up the Attack
Learn how to identify exploitable risk faster, prioritize what matters most, and reduce exposure before AI-powered attacks accelerate the threat.
11 Real Stories: How Identity Exposure Unlocks Active Attack Paths
Map cross-domain privilege escalation to sever breach routes at key choke points.
SANS 2026 Security Awareness & Culture Report Shows What's Next
11 years of practitioner data on what it takes to keep pace with a field that keeps shifting.
Prevention Already Failed. What Does Your Monitoring Actually Catch?
A 6-day SANS course rebuilds hybrid detection across cloud, endpoint, and network. GMON, Sept 21.
The Missing Context Layer for AI Agents in Large Enterprise Codebases
Shadow AI Is Now Hiding Inside Sanctioned AI Tools
The EU CRA Will Make You Report What It Hasn't Yet Made You Fix
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 028
================================================================================================
@@ -26,6 +26,9 @@ DATABASE RECORD
notes failed attempt
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Danny Aston & Amy Jay
@@ -125,19 +128,19 @@ Police have not issued further information on who the men might have been, but s
Cryptocurrency and crime are overlapping more and more since the dramatic spike in the value of leading currencies like bitcoin.
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source businessinsider.com
URL https://www.businessinsider.com/bitcoin-raid-moulsford-transfer-failed-thieves-got-nothing-2018-2
Field url
Retrieved 2026-09-05T12:56:08+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 28 paragraphs, untrimmed
Length 4,916 chars
Integrity sha256 721229ffa8baa3fa1fe2e5aa9700649cc8d20ec4b8c0752267934f363986507a
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 4-27 of 28
Length 4,557 chars
Integrity sha256 ec8bd2b91fddef70a4d26a81e2bb921ab93fac2dfa030715d2929335594f5490
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 4-27 plus headline [0]; dropped 3 leading and 0 trailing paragraphs. Case-term hits on page: 11.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -146,39 +149,6 @@ ORIGINAL (unknown, verbatim as retrieved)
Bitcoin Raid, Moulsford: Transfer Failed, Thieves Got Nothing - Business Insider
Armed raiders who held 2 bitcoin traders at gunpoint in rural England didn't actually manage to steal anything
Copy link
Email
Facebook
WhatsApp
X
LinkedIn
Bluesky
Threads
Impact Link
This story is available exclusively to Business Insider
subscribers. Become an Insider
and start reading now.
Have an account? .
Armed criminals attacked a home in Oxfordshire, Britain, last month.
It was the registered address of a cryptocurrency company.
@@ -26,6 +26,9 @@ DATABASE RECORD
notes caught before executing their plan
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Unidentified
@@ -26,6 +26,9 @@ DATABASE RECORD
notes His ex-business partner was involved - he was the only one who knew about the investment. Cash stolen. The victim was accused of kidnapping two others earlier that same year.
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Sailesh Bhatt
+62 -3
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes the victim showed his bitcoins to the suspects
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** ____ Tai
@@ -84,9 +87,65 @@ Britain saw its first Bitcoin armed robbery last month, according to reports, in
Bitcoin and other cryptocurrencies are independent of governments and banks and use blockchain technology, where encrypted digital coins are created by supercomputers.
But calls are mounting for virtual currencies to be regulated, and prices have fluctuated in recent months amid concerns over tightened control.
OTHER LINKED SOURCES
[BLOCKED] url None — raw request refused; try the WebFetch path, which is a model transcription and must be labelled as such
https://www.arabnews.com/node/1251816/world
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source arabnews.com
URL https://www.arabnews.com/node/1251816/world
Field url
Retrieved 2026-09-05T13:32:20+00:00 via Wayback Machine snapshot 20260422144755, deterministic extraction (HTTP None)
Language unknown
Kept paragraphs headline [0] + 13-31 excl [27] of 36
Length 2,434 chars
Integrity sha256 81701fd413a8cbb3f73e1686bf910f98bd8ad931912bcd89506e70361cfc7746
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 13-31 plus headline [0]; dropped 12 leading and 4 trailing paragraphs and 1 interior furniture line(s). Case-term hits on page: 10.
Note live URL was BLOCKED on the first pass; text comes from an archived copy dated 2026-04-22
Archive http://web.archive.org/web/20260422144755/https://www.arabnews.com/node/1251816/world
Caveat retrieved from a Wayback Machine snapshot, not the live page. The
snapshot date is in the method line; the live URL was unreadable.
------------------------------------------------------------------------------------------------
ORIGINAL (unknown, verbatim as retrieved)
Four arrested over Taiwans first bitcoin robbery | Arab News
Bitcoin is a virtual currency created from computer code that allows anonymous transactions and its value has soared since it came into being in 2009. (AFP)
TAIWAN: Taiwan police have arrested four men over a bitcoin robbery worth 5 million Taiwanese dollars in what they said was the first case of its kind on the island.
Bitcoin is a virtual currency created from computer code that allows anonymous transactions and its value has soared since it came into being in 2009.
Taiwan police said three men in their early twenties lured a man surnamed Tai to the central city of Taichung, pretending to be interested in buying bitcoins.
After Tai showed proof of his bitcoins on his phone, the scammers assaulted him and his friend, then transferred 18 bitcoins worth 5 million Taiwanese dollars from Tais account via his phone.
The suspects attempted to pass off the heist as a drunken row by forcing the victim to drink Kaoliang, a strong Taiwanese liquor, Taichung city police said in a statement.
Police arrived at the scene after receiving a call about a dispute and one man was detained. The other two had fled.
“The police saw bloodstains at the scene ... after further investigation, it was discovered to be a bitcoin virtual currency robbery,” the statement released Wednesday said.
It described the case, which happened earlier this month, as “the first domestic case of bitcoin robbery.”
The two other suspects were later arrested, one on the outlying island of Kinmen where he had gone to escape police.
The fourth man, surnamed Shih, believed to be the mastermind behind the robbery, was also detained.
Britain saw its first Bitcoin armed robbery last month, according to reports, in which a virtual currency trader and his wife were threatened with a gun.
Bitcoin and other cryptocurrencies are independent of governments and banks and use blockchain technology, where encrypted digital coins are created by supercomputers.
But calls are mounting for virtual currencies to be regulated, and prices have fluctuated in recent months amid concerns over tightened control.
Bitcoins for free? Japanese cryptocurrency exchange lands in hot water again
Bitcoin is the peoples declaration of independence, Dubai summit is told
UAE police arrest man in $545,000 bitcoin fraud case
How long can Irans war-devastated economy defy the Hormuz blockade?
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 033
+11 -18
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes stolen phones, laptop and cripto wallet access
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Yury Mayorov
@@ -66,19 +69,19 @@ In December of last year in Ukraine, Pavel Lerner, the director of UK-based cryp
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source cointelegraph.com
URL https://cointelegraph.com/news/russian-crypto-developer-beaten-robbed-of-300-btc-on-moscow-streets
Field url
Retrieved 2026-09-05T12:56:01+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 15 paragraphs, untrimmed
Length 2,303 chars
Integrity sha256 8c844640592a06442536bbfde5991b9c3a19ef502293e5e4f0ba96c035d64eda
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 3-11 of 15
Length 1,950 chars
Integrity sha256 d2a6c982fb3acc97de184e5fcfc8bf81ee18bede1f174def39772962cd2a104c
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 3-11 plus headline [0]; dropped 2 leading and 3 trailing paragraphs. Case-term hits on page: 28.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -87,10 +90,6 @@ ORIGINAL (unknown, verbatim as retrieved)
Russian Crypto Developer Beaten, Robbed Of 300 BTC On Moscow Streets
Written by Molly Jane Zuckermanformer writerReviewed by Igor Belkinformer editor
Written by Molly Jane Zuckermanformer writer
Russian crypto developer Yury Mayorov was kidnapped in Moscow, beaten, robbed of 300 BTC, and forced by the robbers to take an unknown pill after with a swig of vodka.
Four unknown men kidnapped Yury Mayorov, the creator of cryptocurrency PRIZM, Forklog news outlet reported yesterday, Feb. 26. According to Forklog, Mayorov was robbed of $20,000, 300 bitcoins (BTC), and three iPhones.
@@ -109,12 +108,6 @@ In December of last year in Ukraine, Pavel Lerner, the director of UK-based cryp
Cointelegraph is committed to independent, transparent journalism. This news article is produced in accordance with Cointelegraphs Editorial Policy and aims to provide accurate and timely information. Readers are encouraged to verify information independently.
Bitcoin ETF inflows hit $3.8B in strongest three-week stretch of 2026
Bitcoin ETF inflows hit $731M, highest since January as BTC reclaims $80K
Bitcoin reclaims $80K as DXY falls amid continuing suspected yen intervention
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 034
================================================================================================
+11 -18
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes they mutilated his face with a knife
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Unidentified
@@ -60,19 +63,19 @@ According to Forklog, the victim, who has not been named, was in the southern di
When he refused, they “mutilated his face with a knife” before he surrendered his collection of around 100 BTC, approximately $1,020,000 at press time, according to the publication.
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source cointelegraph.com
URL https://cointelegraph.com/news/moscow-man-mutilated-and-mugged-for-1-million-in-bitcoin-local-sources-report
Field url
Retrieved 2026-09-05T12:55:59+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 13 paragraphs, untrimmed
Length 2,123 chars
Integrity sha256 8db41c293852c7ba4600d464dcaa0bf17cf335cb9f532ba271d30aa678081e43
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 3-9 of 13
Length 1,701 chars
Integrity sha256 9423fdbcab75e17e374745093df1afd5319050fb1b14119ef7d341dfcfe4275f
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 3-9 plus headline [0]; dropped 2 leading and 3 trailing paragraphs. Case-term hits on page: 6.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -81,10 +84,6 @@ ORIGINAL (unknown, verbatim as retrieved)
Moscow Man Mutilated And Mugged For $1 Million In Bitcoin, Local Sources Report
Written by William Subergstaff writerReviewed by Igor Belkinformer editor
A man has lost $1 mln worth of Bitcoin to muggers who attacked him when he refused to part with it, local sources report
A cryptocurrency investor fell victim to unidentified assailants in Moscow who reportedly disfigured him and stole over $1 mln worth of Bitcoin, today, Feb. 23, according to local crypto journal Forklog.
According to Forklog, the victim, who has not been named, was in the southern district of the Russian capital when a group of muggers stopped him and demanded he transfer his holdings.
@@ -99,12 +98,6 @@ Security issues surrounding ownership of and even interaction with cryptocurrenc
Cointelegraph is committed to independent, transparent journalism. This news article is produced in accordance with Cointelegraphs Editorial Policy and aims to provide accurate and timely information. Readers are encouraged to verify information independently.
Bitcoin ETF inflows hit $3.8B in strongest three-week stretch of 2026
Bitcoin ETF inflows hit $731M, highest since January as BTC reclaims $80K
Bitcoin reclaims $80K as DXY falls amid continuing suspected yen intervention
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 035
================================================================================================
@@ -26,6 +26,9 @@ DATABASE RECORD
notes cash robberies from btc atms
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Multiple gas stations
@@ -91,19 +94,19 @@ Around 11:30 a.m., a man wearing a gray hoodie and a red Nike cap sprayed the cl
The pair then fled in a vehicle, police said.
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source fox4news.com
URL https://www.fox4news.com/news/bitcoin-bandits-target-dallas-county-cryptocurrency-atms
Field url
Retrieved 2026-09-05T12:55:55+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 11 paragraphs, untrimmed
Kept paragraphs headline [0] + 1-10 of 11
Length 1,654 chars
Integrity sha256 4bb57c37fbef9162cedd0ac3827ac68f56e09b16f9db08c93bc9135b118868e4
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 1-10 plus headline [0]; dropped 0 leading and 0 trailing paragraphs. Case-term hits on page: 14.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
+11 -16
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes setup of fake p2p trade, cash stolen
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Pang Joon Hau
@@ -93,19 +96,19 @@ The trio are now remanded at Central Police Division.
The police have advised the public to exercise discretion when dealing with strangers, and to avoid carrying large amounts of cash.
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source cointelegraph.com
URL https://cointelegraph.com/news/two-bogus-bitcoin-brokers-charged-with-365000-cash-robbery-in-singapore
Field url
Retrieved 2026-09-05T12:55:53+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 13 paragraphs, untrimmed
Length 2,100 chars
Integrity sha256 8653a4bbdf6e5f2938d3d8568127c04cd9b442604e67a78d871fd3a3959b80e5
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 2-9 of 13
Length 1,800 chars
Integrity sha256 17c7c0913377261827a5d02596e0b9fcdf9ff31e58f733e8386e898cfdbb9971
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 2-9 plus headline [0]; dropped 1 leading and 3 trailing paragraphs. Case-term hits on page: 22.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -114,8 +117,6 @@ ORIGINAL (unknown, verbatim as retrieved)
Two Bogus Bitcoin Brokers Charged With $365,000 Cash Robbery In Singapore
Written by Marie Huilletformer writerReviewed by Igor Belkinformer editor
Two sham Bitcoin sellers have been charged with assault and the alleged theft of $365,000 cash from a Malaysian man in Singapore.
Two 36-year-old men have been arrested in Singapore after allegedly stealing $365,000 in cash from a Malaysian man who wanted to buy Bitcoin (BTC) from them, local media outlets reported Thursday, April 12.
@@ -132,12 +133,6 @@ In January 2018, St. Petersburg crypto blogger Pavel Nyashin was robbed of 24 ml
Cointelegraph is committed to independent, transparent journalism. This news article is produced in accordance with Cointelegraphs Editorial Policy and aims to provide accurate and timely information. Readers are encouraged to verify information independently.
Bitcoin ETF inflows hit $3.8B in strongest three-week stretch of 2026
Bitcoin ETF inflows hit $731M, highest since January as BTC reclaims $80K
Bitcoin reclaims $80K as DXY falls amid continuing suspected yen intervention
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 039
================================================================================================
+54 -3
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes the victim had a gun and he used it in self defense
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Ryan Rice
@@ -67,9 +70,57 @@ But while walking through a stairwell in the garage, Clark appeared and grabbed
Local streets were blocked off until police were certain there wasn't a gunman on the loose, which snarled traffic in the area for hours.
OTHER LINKED SOURCES
[ERROR] url None — TimeoutError: The read operation timed out
https://www.miamiherald.com/news/local/crime/article208997064.html
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source miamiherald.com
URL https://www.miamiherald.com/news/local/crime/article208997064.html
Field url
Retrieved 2026-09-05T13:32:14+00:00 via Wayback Machine snapshot 20210606133523, deterministic extraction (HTTP None)
Language unknown
Kept paragraphs headline [0] + 1-14 of 27
Length 2,973 chars
Integrity sha256 1f6ec206958c8da00ef2001cc43e3623495930acffb0df590a478a5b55e56695
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 1-14 plus headline [0]; dropped 0 leading and 12 trailing paragraphs. Case-term hits on page: 19.
Note live URL was ERROR on the first pass; text comes from an archived copy dated 2021-06-06
Archive http://web.archive.org/web/20210606133523/https://www.miamiherald.com/news/local/crime/article208997064.html
Caveat retrieved from a Wayback Machine snapshot, not the live page. The
snapshot date is in the method line; the live URL was unreadable.
------------------------------------------------------------------------------------------------
ORIGINAL (unknown, verbatim as retrieved)
A Bitcoin deal at a Miami Whole Foods ends in a shooting | Miami Herald
A shooting in downtown Miami that left one man badly injured and under arrest was a Bitcoin deal gone bad, police said.
The blown-up business deal last week, according to police, involved two men — Ryan Rice and an unidentified companion — who started the day in Gainesville with $30,000 cash and a plan to turn it into $35,000 worth of Bitcoin.
Rice told police he was concerned about his safety because of the large amount of cash involved. That premonition proved prophetic, police said.
Shortly after the pair met up at a Whole Foods with the Bitcoin dealer, whom police have not identified, the transaction turned violent. A fourth man, Marcarrous Clark, rushed them in a parking garage and a struggle erupted for the cash. Rice, police say, shot Clark but he has not been charged. Police are treating the shooting as self-defense though the investigation is ongoing.
"One guy said, 'Back off, I have a weapon,' " said Miami police spokeswoman Kiara Delva. "The other guy charged at the victim anyway."
Clark was still hospitalized Monday, almost a week after the incident. He's been charged with strong-arm attempted robbery.
Bitcoin is a cryptocurrency that works without a centralized banking system. Its value fluctuates because of a number of factors, including how it's perceived by the public, retailers and currency speculators. When last week's deal went sour, Bitcoin was trading at about $7,000 a coin. On Monday, its value had increased to almost $8,000.
According to Miami police, the deal was intentionally set up to happen at a "public place" — in this case, the Whole Foods supermarket at 299 SE Third St.
Inside Rice's vehicle in the parking garage, Rice handed over the $30,000, according to Clark's arrest report. At that point, the Bitcoin transfer was supposed to be made over the Internet. When the Bitcoin seller told Rice and his associate that he was afraid to walk to his vehicle with so much money, they agreed to escort him.
But while walking through a stairwell in the garage, Clark appeared and grabbed at a backpack with the cash in it. When Rice pulled a gun and warned Clark he would shoot, the arrest report says, Clark still charged at him. Rice fired his weapon. Clark stumbled about two blocks before collapsing. Miami Fire Rescue took him to the hospital. His condition Monday was unknown.
Local streets were blocked off until police were certain there wasn't a gunman on the loose, which snarled traffic in the area for hours.
What cops say happened during a Maserati chase on I-95 in Miami-Dade and Broward
A Saturday morning police chase that spanned southern Broward and North Miami-Dade counties ended with one crash, three people arrested and four people — those three and a Miami-Dade police officer — being taken to a hospital, according to the Florida Highway Patrol.
All four had injuries that FHP described as “non-life threatening.”
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 040
@@ -26,6 +26,9 @@ DATABASE RECORD
notes setup of fake p2p trade, cash stolen
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** 2 unidentified Asian brothers
@@ -99,9 +102,58 @@ Major General Khalil Ebrahim Al Mansouri, Assistant Commander-in-Chief for Crimi
"The Analysis Centre helped the officers to arrest all gang members," he pointed out.
OTHER LINKED SOURCES
[BLOCKED] url None — raw request refused; try the WebFetch path, which is a model transcription and must be labelled as such
https://www.arabianbusiness.com/industries/banking-finance/395302-dubai-gang-steals-aed7m-in-bitcoin-scam
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source arabianbusiness.com
URL https://www.arabianbusiness.com/industries/banking-finance/395302-dubai-gang-steals-aed7m-in-bitcoin-scam
Field url
Retrieved 2026-09-05T13:32:08+00:00 via Wayback Machine snapshot 20251104185959, deterministic extraction (HTTP None)
Language unknown
Kept paragraphs headline [0] + 5-17 of 18
Length 1,605 chars
Integrity sha256 8be4a82ed0211e973bc21e0f710dc78722d490651ca765538d3a638efb54a23b
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 5-17 plus headline [0]; dropped 4 leading and 0 trailing paragraphs. Case-term hits on page: 17.
Note live URL was BLOCKED on the first pass; text comes from an archived copy dated 2025-11-04
Archive http://web.archive.org/web/20251104185959/https://www.arabianbusiness.com/industries/banking-finance/395302-dubai-gang-steals-aed7m-in-bitcoin-scam
Caveat retrieved from a Wayback Machine snapshot, not the live page. The
snapshot date is in the method line; the live URL was unreadable.
------------------------------------------------------------------------------------------------
ORIGINAL (unknown, verbatim as retrieved)
Gang steals $1.9m in Dubai Bitcoin scam - Arabian Business: Latest News on the Middle East, Real Estate, Finance, and More
An Asian gang which stole AED7m ($1.9m) in an armed robbery related to a Bitcoin scam has been arrested by Dubai Police.
The gang, led by a Gulf national, assaulted and robbed two Asian brothers at gun point on April 25 after luring them into a trading office, which they had seized from the owner, with the aim of selling them Bitcoin for the agreed amount.
عملية #ساعة_الصفر لـ #شرطة_دبي تطيح بعصابة السطو المسلح… pic.twitter.com/EINIGuvl6q
— أخبار الإمارات (@Akhbar_Alemarat) April 28, 2018
Authorities said they had identified the Gulf gang leader just four hours after the incident, which helped them arrest the 10 members in as fast as 48 hours, despite initial lack of evidence.
The money was then returned to the brothers.
Dubai Police chief Abdullah Al Marri urged traders to follow the right legal procedures when trading in order to avoid being targeted by gangs.
Major general Khalil Al Mansoori praised the teams fast response time and gave thanks to Abu Dhabi, Sharjah and Ajman Police for their cooperation in solving the case.
He said artificial intelligence integrated in Dubai Polices most recent security systems helped solve the case.
Banking & Finance
Aqua Labs backs UAEs Vision 2030 with launch of $20mn startup fund
Banking & Finance
Alpha Dhabi sells 8.5% Modon stake to Abu Dhabi governments Limad Holding
Banking & Finance
ADNOC Distribution delivers its strongest EBITDA since IPO for Q3
Your browser does not support HTML5 Audio!
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 041
@@ -26,6 +26,9 @@ DATABASE RECORD
notes setup of fake p2p trade, after 2 succesful trades, cash stolen
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Unidentified 22-year-old
@@ -67,19 +70,19 @@ Yesterday afternoon, they met again to complete the exchange in an office on Via
It was this last step that aroused the suspicion of the 22-year-old, who asked to see all the banknotes. When the group refused, he closed his computer and tried to leave the room but was attacked, and a gunshot was fired to intimidate him. During the chaos, the woman escaped, taking with her the 50,000 euros that had been given to the young man during the initial transaction. The police found the other 45,000 euros in the scammers car, which were intended to deceive the victim.
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source milano.repubblica.it
URL https://milano.repubblica.it/cronaca/2018/06/07/news/milano_truffa_bitcoin_soldi_falsi_milano_arresti-198392710/
Field url
Retrieved 2026-09-05T12:55:16+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 17 paragraphs, untrimmed
Length 3,455 chars
Integrity sha256 2c1c9b883a4c064b51af53ce653d9dc0df669566ccf2d28d83d9fd9b849671e9
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 2-13 of 17
Length 3,238 chars
Integrity sha256 b0a32cb1e6ada371f038444c1e76329d3504a17e67a2435b9e0c513b4dd970fc
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 2-13 plus headline [0]; dropped 1 leading and 3 trailing paragraphs. Case-term hits on page: 4.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -88,8 +91,6 @@ ORIGINAL (unknown, verbatim as retrieved)
Bitcoin veri contro banconote false: due arresti a Milano per truffa - la Repubblica
Iscriviti gratis alla newsletter di Repubblica Milano
Soldi falsi in cambio di Bitcoin. Due persone - un serbo di 33 anni e un cubano di 35 - sono stati arrestati perché hanno tentato di spacciare a un 22enne una valigia piena di soldi falsi. Solo che il ragazzo si è accorto del raggiro poco prima di trasferire i Bitcoin sul conto dei finti clienti e, quando ha rifiutato di procedere all'operazione, è stato aggredito dai due uomini e da una donna di cui si sono perse le tracce.
La vicenda risale al tardo pomeriggio di ieri. A dare l'allarme, attorno alle 19.15, è stato l'inquilino della palazzina di viale Abruzzi all'interno della quale si svolgeva l'incontro. Il cittadino ha chiamato la polizia dopo aver sentito delle urla e un colpo di pistola (che poi si rivelata una scacciacani). Altri hanno segnalato una mazzetta di 500 euro sul marciapiedi, una parte dei soldi fac-simile usati per la truffa. Quando, poi, gli agenti sono arrivati hanno trovato il 22enne, cioè la vittima, con il naso rotto e vari traumi in faccia e il cubano con un trauma cranico: entrambi sono finiti al Fatebenefratelli, il primo con una prognosi di 14 giorni e il secondo di 7.
@@ -120,14 +121,6 @@ consulenza di esperti. Ogni volta che viene fatto un acquisto attraverso
uno dei link presenti nel testo, Consigli.it riceve una commissione
senza alcuna variazione del prezzo finale.
Offerte Amazon di questa settimana: i migliori sconti da non perdere
Stampare un libro, ecco come risparmiare
Vendite giudiziarie
Ricerca avvisi pubblicati
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 042
================================================================================================
+11 -63
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes kidnapped at home
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** "Synth"
@@ -70,19 +73,19 @@ Skycoin once traded over $32, with the combined effect of the scandal suppressin
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source bitcoinist.com
URL https://bitcoinist.com/skycoin-freezes-funds-staff-take-ceo-hostage/
Field url
Retrieved 2026-09-05T12:55:13+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 39 paragraphs, untrimmed
Length 3,938 chars
Integrity sha256 6277b64cb0592f91f576795ec2e11a0a22130d8807f2d53e44bec3fe290dfe76
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 9-19 of 39
Length 2,139 chars
Integrity sha256 dd47de1d5c7e6b1c98717985ea2f041996f6d18f3cb297e12e58b0a1e6b532ec
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 9-19 plus headline [0]; dropped 8 leading and 19 trailing paragraphs. Case-term hits on page: 19.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -91,23 +94,6 @@ ORIGINAL (unknown, verbatim as retrieved)
Skycoin Freezes Funds After Staff 'Take CEO Hostage' And Steal 18 BTC | Bitcoinist.com
Buy gift cards/mobile Top Ups with Cryptos
What Is Bitcoin?
Why Use Blockchain Technology?
What is Facebook Libra?
Breaking News: The Ethereum Indicator That Never Missed A Bottom Is Signaling Again, This Time At $700
Skycoin Freezes Funds After Staff Take CEO Hostage And Steal 18 BTC
Posted in
News, Altcoin News, Altcoins, News teaser
Trusted Editorial content, reviewed by leading industry experts and seasoned editors. Ad Disclosure
Allegations of criminal activity continue at Skycoin as executives freeze funds to contain fallout from a theft by the coins own marketing team.
18 BTC, Skycoins Stolen In Burglarization
@@ -130,44 +116,6 @@ In order to prevent stolen funds being traded, Skycoin announced it had contacte
Skycoin once traded over $32, with the combined effect of the scandal suppressing prices to below 25 percent of that figure at press time June 19.
What do you think about the ongoing complications at Skycoin? Let us know in the comments section below!
Images courtesy of Shutterstock, Twitter
Editorial Process for bitcoinist is centered on delivering thoroughly researched, accurate, and unbiased content. We uphold strict sourcing standards, and each page undergoes diligent review by our team of top technology experts and seasoned editors. This process ensures the integrity, relevance, and value of our content for our readers.
Sign Up for Our Newsletter!
For updates and exclusive offers enter your email.
ENS Proposes L2 Registry Migration To Cut Domain Costs
BNB Chain Sets Lorentz Hard Fork Schedule For Mainnet
EigenLayer Restaking Deposits Cross 5M ETH
Uniswap v4 Hook Library Adds Automated Liquidity Tools
Optimism Superchain Interoperability Goes Live On Sepolia Testnet
XRP Ledger AMM Amendment Reaches 80% Validator Consensus
Axis Robotics Open-Sources One of the Largest Franka Arm...
로빈후드 체인 타고 날아오른 아티피셜...
What Building Atlas on BNB Chain Changes for Ordinary...
ConConAI ($CON) Presale Moves Closer to Phase 2 as Early...
스타크웨어, 비트코인 양자 저항 거래...
Bitcoin news portal providing breaking news, guides, price analysis about decentralized digital money & blockchain technology.
© 2026 Bitcoinist.com. All Rights Reserved.
© 2025 Bitcoinist. All Rights Reserved.
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 043
================================================================================================
+42 -3
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes posing as postmen
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Unidentified
@@ -75,9 +78,45 @@ The rise of the cryptocurrency Bitcoin is attracting more and more criminals. Re
Intimidated by the continued extortion and coercion, the Bitcoin trader revealed access codes to his Bitcoin wallets to the violent intruders, allowing them to withdraw approximately 210,000 euros in cryptocurrency.
OTHER LINKED SOURCES
[DEAD] url None — raw request refused; try the WebFetch path, which is a model transcription and must be labelled as such
https://de.cointelegraph.com/news/gericht-in-osterreich-beginnt-verfahren-gegen-krypto-rauberbande
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source de.cointelegraph.com
URL https://de.cointelegraph.com/news/gericht-in-osterreich-beginnt-verfahren-gegen-krypto-rauberbande
Field url
Retrieved 2026-09-05T13:32:01+00:00 via Wayback Machine snapshot 20251215021412, deterministic extraction (HTTP None)
Language unknown
Kept paragraphs headline [0] + 1-8 of 9
Length 2,251 chars
Integrity sha256 db124920768dbdefb45e12dea7c12162930f908daef4b5b475eb0427831e3208
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 1-8 plus headline [0]; dropped 0 leading and 0 trailing paragraphs. Case-term hits on page: 1 (WEAK anchor, confirm the page is about this case).
Note live URL was DEAD on the first pass; text comes from an archived copy dated 2025-12-15
Archive http://web.archive.org/web/20251215021412/https://de.cointelegraph.com/news/gericht-in-osterreich-beginnt-verfahren-gegen-krypto-rauberbande
Caveat retrieved from a Wayback Machine snapshot, not the live page. The
snapshot date is in the method line; the live URL was unreadable.
------------------------------------------------------------------------------------------------
ORIGINAL (unknown, verbatim as retrieved)
Gericht in Österreich beginnt Verfahren gegen Krypto-Räuberbande
In Österreich müssen sich fünf Männer wegen des Diebstahls von umgerechnet 210.000 Euro an Kryptowährung vor Gericht verantworten.
In der österreichischen Stadt Wels müssen sich fünf Männer wegen eines Überfalls und Raubes von umgerechnet 210.000 Euro vor Gericht verantworten, meldete OÖNachrichten am 27. März.
Bei dem Drahtzieher soll es sich um einen 21-jährigen Oberösterreicher handeln, der den Überfall gemeinsam mit seinem bereits vorbestraften Vater geplant habe. Dieser werde aufgrund seiner kriminellen Vorgeschichte in einem gesonderten Verfahren verfolgt, schreibt die Nachrichtenseite.
Den an dem Überfall beteiligten fünf Männern wird erpresserische Entführung, schwerer Raub, schwere Nötigung und schwere Erpressung vorgeworfen. Einige der nach Aussagen ihrer Verteidiger im Wesentlichen geständigen Männer geben an, nur von einer Schuldeneintreibungsaktion ausgegangen zu sein.
Einer der Männer hatte offenbar vor dem Überfall bei dem beraubten Krypto-Trader einen fünfstelligen Betrag angelegt und verloren. Diese “Schulden” habe er eintreiben wollen, die Sache habe dann aber eine nach seinen Worten “furchtbare Eigendynamik” entwickelt.
Bei dem Überfall gaben sich die Täter als Paketzusteller aus, um sich Zugang zur Wohnung zu verschaffen. Den Trader fesselten sie in einem Abstellraum mit Klebeband an einen Stuhl und brachten dessen Lebensgefährtin mit ihrem ebenfalls anwesenden Baby in das Schlafzimmer, wo sie ebenfalls gefesselt wurde.
Während des eineinhalb Stunden dauernden Überfalls wurden die Opfer mit dem Messer bedroht, um die Zugangscodes zu diversen Online-Börsen zu bekommen. Neben Kryptowährung im Wert von 210.000 Euro, das einer der Täter transferieren konnte, erbeuteten die Männer auch Schmuck, Goldmünzen, Elektronikgeräte sowie teure Markenkleidung.
Zu Überfällen von Krypto-Dieben kommt es immer wieder. Bei einem Überfall im letzten Jahr war ein russischer Geschäftsmann als Geisel genommen worden, bis dieser sich an seinem Computer anmeldete und umgerechnet rund 81.000 Euro in Bitcoin an seine Angreifer überwies. Ein anderer russischer Investor war bei einem ähnlichen Krypto-Raub um umgerechnet 348.000 Euro bestohlen worden.
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 044
+56 -3
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes this seems like lawful swatting - the man was a scammer. Take out of stats
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Austin Nedved
@@ -46,9 +49,59 @@ LINKED SOURCES
NOTES ON THIS FILE
* matched to sheet row 46: exact match on victim + year, unique on both sides
OTHER LINKED SOURCES
[THIN] url None — extractor recovered very little; needs the WebFetch path or a site-specific rule
https://www.justice.gov/usao-ma/pr/northborough-man-pleads-guilty-aiding-romance-and-lottery-schemes-targeting-elderly
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source justice.gov
URL https://www.justice.gov/usao-ma/pr/northborough-man-pleads-guilty-aiding-romance-and-lottery-schemes-targeting-elderly
Field url
Retrieved 2026-09-05T13:25:41+00:00 via Wayback Machine snapshot 20260524231807, deterministic extraction (HTTP None)
Language unknown
Kept paragraphs headline [0] + 8-22 of 23
Length 5,244 chars
Integrity sha256 243f8e399e04a35ee0ed0fade8bc422a5cc04b25e9087d045ea5bf91d82b9d96
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 8-22 plus headline [0]; dropped 7 leading and 0 trailing paragraphs. Case-term hits on page: 13.
Note live URL was THIN on the first pass; text comes from an archived copy dated 2026-05-24
Archive http://web.archive.org/web/20260524231807/https://www.justice.gov/usao-ma/pr/northborough-man-pleads-guilty-aiding-romance-and-lottery-schemes-targeting-elderly
Caveat retrieved from a Wayback Machine snapshot, not the live page. The
snapshot date is in the method line; the live URL was unreadable.
------------------------------------------------------------------------------------------------
ORIGINAL (unknown, verbatim as retrieved)
District of Massachusetts | Northborough Man Pleads Guilty to Aiding Romance and Lottery Schemes Targeting Elderly | United States Department of Justice
BOSTON A Northborough man pleaded guilty today in federal court in Worcester to his role in more than $600,000 in fraud schemes targeting elderly victims, and agreeing to launder the proceeds of such schemes and other criminal activity.
Austin Nedved, 29, pleaded guilty to aiding and abetting wire fraud and money laundering conspiracy. U.S. District Court Judge Timothy S. Hillman scheduled sentencing for April 7, 2020. Nedved is in custody serving a sentence for a separate fraud conviction in the Eastern District of Kentucky.
Nedved admitted that he ran a business in which he bought and sold digital currencies, including Bitcoin, for cash. Nedved advertised his services under the screen name “USMC1991” over LocalBitcoins.com and Paxful.com, two online businesses that matched Bitcoin buyers and sellers and facilitated their transactions.
From at least 2017 through 2019, Nedved aided and abetted romance and lottery schemes targeting vulnerable victims. In romance schemes, victims are targeted to send money abroad to people they believe to be romantic interests, while in lottery schemes victims are convinced that they can obtain lottery winnings or sizeable government grants by forwarding cash for administrative fees or expenses to the fraudsters. Despite knowing or being willfully blind to the fact that his customers were fraud victims, Nedved sold Bitcoin to them so that they could send money overseas to the fraudsters.
In late 2017, an individual posing as “Jonathan G.” led a 78-year old victim to believe over social media that he was a Weston, Mass. businessman who owned an oil company. Without ever meeting “Jonathan G.” in person, the victim fell in love and agreed to marry him. “Jonathan G.” then falsely told the victim that his oil company had experienced an accident abroad in which people had died, and that he needed money to settle obligations arising from the accident with a foreign government. “Jonathan G.” claimed that until he did so, he would not be able to return to the United States to marry the victim. “Jonathan G.” told the victim to pay him via Bitcoin. The victim, who had never before purchased digital currency, agreed to send him money and contacted Nedved by phone and text message in Massachusetts to arrange a cash-for-Bitcoin transaction.
On June 25, 2018, in a parking lot in Kittery, Maine, the victim gave Nedved a cashiers check to purchase approximately $100,000 in bitcoin. Nedved then released approximately $100,000 in Bitcoin, less his commission, to a Bitcoin wallet controlled by “Jonathan G.” When Nedved accepted $100,000 from the victim, Nedved knew or was willfully blind to the fact that the victim was a romance scam victim. On June 29, 2018, in Leominster, Nedved and a co-conspirator took another $40,000 from the victim.
In total, Nedved and co-conspirators, in exchange for payment, converted to Bitcoin more than $630,000 in cash that they received from others, knowing that the cash constituted proceeds of romance and lottery scams and other unlawful activities. They then either returned the proceeds in Bitcoin to the source of the cash or forwarded the Bitcoin proceeds to unidentified third parties.
The charges of aiding and abetting wire fraud provide for a sentence of up to 20 years in prison, three years of supervised release and a fine of up to $250,000 or twice the gross gain or loss, whichever is greater. The charge of money laundering conspiracy provides for a sentence of up to 20 years in prison, three years of supervised release and a fine of up to $500,000 or twice the value of the funds involved in the financial transactions that were the object of conspiracy. Sentences are imposed by a federal district court judge based upon the U.S. Sentencing Guidelines and other statutory factors.
United States Attorney Andrew E. Lelling; David Magdycz, Acting Special Agent in Charge of Homeland Security Investigations in Boston; and Joleen Simpson, Acting Special Agent in Charge of the Internal Revenue Services Criminal Investigations made the announcement today. Assistant U.S. Attorney Seth B. Kosto, Deputy Chief of Lellings Securities, Financial & Cyber Fraud Unit, is prosecuting the case.
New Hampshire Man Indicted for Cyberstalking and Child Sexual Exploitation
BOSTON A Londonderry, N.H. man was arrested today for allegedly cyberstalking a Massachusetts victim through social media, text messages and various online platforms. Among numerous other things, the defendant...
Massachusetts Man Arrested for Threatening President Trump
BOSTON A Great Barrington, Mass., man has been arrested and charged for allegedly threatening President Donald J. Trump. Defendant allegedly posted messages on Facebook threatening to injure and kill...
Wilbraham Man Sentenced to 32 Months in Prison for Threatening Public Officials, Private Individuals and Children
BOSTON A Wilbraham, Mass. man was sentenced today in federal court in Springfield, Mass. for making numerous violent threats on social media targeting public figures, private individuals, children in...
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 045
+11 -10
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes his "friends" tortured him and stole a laptop, a small pendrive like device and a phone
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Nicholas Truglia
@@ -76,19 +79,19 @@ The defendants are each charged with one count of second-degree burglary.
The four men were all released without bail. They are due back in court March 14 to find out whether theyve been indicted.
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source nypost.com
URL https://nypost.com/2018/11/06/friends-accused-of-torturing-pal-to-steal-his-cryptocurrency/
Field url
Retrieved 2026-09-05T12:55:09+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 22 paragraphs, untrimmed
Length 3,126 chars
Integrity sha256 a950210362a1a513ca22178ced5866dcdff774d749a75c701c129562dcf73af7
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 1-20 of 22
Length 3,072 chars
Integrity sha256 f91a6d3611702f9e1809adc524acb31a07a5660f5e08ec8316dd3dbe0cee1687
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 1-20 plus headline [0]; dropped 0 leading and 1 trailing paragraphs. Case-term hits on page: 12.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -137,8 +140,6 @@ The defendants are each charged with one count of second-degree burglary.
The four men were all released without bail. They are due back in court March 14 to find out whether theyve been indicted.
Additional reporting by Steven Hirsch and Tina Moore
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 046
================================================================================================
+11 -124
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes (null)
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Andrew ______
@@ -64,19 +67,19 @@ Andrew is currently in intensive care being treated for burns.
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source financemagnates.com
URL https://www.financemagnates.com/cryptocurrency/news/south-africa-man-tortured-for-bitcoins-in-intensive-care/
Field url
Retrieved 2026-09-05T12:55:07+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 62 paragraphs, untrimmed
Length 9,578 chars
Integrity sha256 5c4dec4dde5a91dce5c179c250c21a43f02dc9f66a99ae0b4f37a27ec458f075
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 4-15 of 62
Length 4,863 chars
Integrity sha256 2a6d83f0347b9e6a429dc76ed6cb31a38e8fb2276f417f7493c65f962b4c86cc
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 4-15 plus headline [0]; dropped 3 leading and 46 trailing paragraphs. Case-term hits on page: 14.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -85,14 +88,6 @@ ORIGINAL (unknown, verbatim as retrieved)
South Africa: Man Tortured for Bitcoins, in Intensive Care | Finance Magnates
>
South Africa: Man Tortured for Bitcoins, in Intensive Care
South Africa: Man Tortured for Bitcoins, in Intensive Care
Tuesday, 04/12/2018 | 14:24 GMT by
Simon Golstein
The victim was burned with a hot iron and lost Bitcoin worth hundreds of thousands of dollars.
A Bitcoin
@@ -131,114 +126,6 @@ Weekly Review: Nigeria Proposes New CFD Rules; SVG Pauses Crypto Applications
Federal Courts Now Disagree on Kalshis Sports Contracts. New Jersey Wants the Supreme Court to Settle the Fight
Friday, 04/09/2026 | 19:15 GMT
CySEC Flags 10 Websites as Unauthorised for Investment or Crypto Services
Friday, 04/09/2026 | 17:27 GMT
Europe's Economic Crossroads: Recession Fears and S&P Global's Contrasting Outlook
Decarbonization and Climate Realities: Shaping the Future Investment Landscape
Coinbase Lets UK Users Trade US Stocks While Wall Street Sleeps
7 Things We Wish Someone Had Told Us Before We Started Trading
How Low Can SIlver Go? XAG/USD Breaks 200-Day EMA, Opening 29% Drop Silver Price Prediction to $45
Wednesday, 02/09/2026 | 12:14 GMT
Bitcoin Price Prediction: Golden Cross Nears as $84K Blocks $100K per BTC
Tuesday, 01/09/2026 | 09:17 GMT
Gold Drops 3%, but Bullish EMA Cross Keeps $4900 Price Prediction Alive
Monday, 31/08/2026 | 10:28 GMT
Craig Wright Talks About Metanet: a New, More Commercial Internet
Monex to Open Coincheck in the US to Cater to Institutional Traders
Saudi Arabia and the UAE Central Banks to Create Joint Token
Mark Karpeles of Mt Gox Faces Ten Year Sentence for Embezzlement
The Netherlands to License Crypto Firms that Report Customers
UK Crypto Exchange CEX.IO Updates KYC - No More Anonymous Transactions
The Stablecoin in the Headlines Is Not the Stablecoin I Know
Saint Vincent Regulator Freezes Virtual Asset Applications, Existing Submissions Continue
Kraken Parent Pushes IPO to Q2 2027 at Earliest
ASIC Crypto License Applications Pass 45 Before September Deadline
Binances Push Into US Stock Options Shows How Far It Has Moved Beyond Crypto
Bybit Launches Options on Its Own SpaceX and NVIDIA Perpetual
Nigeria Proposes New FX Rules; Revolut Gains US Bank Approval
Todays financial news recap covers Nigeria proposes new FX and CFD rules, Revolut secures conditional US bank approval, and Saint Vincent freezes new virtual asset applications.
Finance Magnates Daily Recap brings you the latest news from forex and CFD brokers, fintech, payments, cryptocurrency, digital assets, trading platforms, financial regulation and global markets.
Get the key company news, executive moves, deals, regulatory updates and market developments of the day, in just a few minutes. New episodes published every weekday.
Read more: https://www.financemagnates.com
#FinanceMagnates #ForexNews #FintechNews
XTB Founder Sells $410m; Tickmills Mattus Warns Brokers
Todays financial news recap covers XTB founder Jakub Zabłocki sells another $410 million in shares, Tickmills Ingmar Mattus warns of a mindset problem, and Krakens parent pushes its IPO to 2027.
Finance Magnates Daily Recap brings you the latest news from forex and CFD brokers, fintech, payments, cryptocurrency, digital assets, trading platforms, financial regulation and global markets.
Get the key company news, executive moves, deals, regulatory updates and market developments of the day, in just a few minutes. New episodes published every weekday.
Read more: https://www.financemagnates.com
#FinanceMagnates #ForexNews #FintechNews
FTMO Enters Futures Prop Trading; Brazil Sees Strong Retail Activity
Todays financial news recap covers FTMO launches futures prop trading, Brazil's retail derivatives market posts strong daily activity, and Leverate adds direct crypto deposits.
Finance Magnates Daily Recap brings you the latest news from forex and CFD brokers, fintech, payments, cryptocurrency, digital assets, trading platforms, financial regulation and global markets.
Get the key company news, executive moves, deals, regulatory updates and market developments of the day, in just a few minutes. New episodes published every weekday.
Read more: https://www.financemagnates.com
#FinanceMagnates #ForexNews #FintechNews
Nobody looks forward to their annual CPD requirements.
But Continuing Professional Development doesnt have to be a box-checking exercise.
FM Academy takes a more engaging, practical approach to CPD, helping finance professionals get useful knowledge from their learning, not just the credits.
Explore FM Academy: https://lnkd.in/dPBd3AFG
#FinanceMagnates #FMAcademy #CPD #Fintech #ProfessionalDevelopment
Capital.com UK Revenue Falls; eToro Partners with Leeds
Today's Monday, the 31st of August 2026, and these are our main stories: Capital.com's UK revenue falls sharply, eToro expands its football partnerships, and the FCA steps up action on whistleblowing.
!"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|} !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 048
================================================================================================
+11 -18
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes not in lopps list, second attempt on a girl foiled by bystanders because she screamed for help
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** 13y old boy
@@ -72,19 +75,19 @@ A few days later, he was reunited with his family unharmed. Police had not disc
The two suspects appeared in court on Tuesday and were granted R1,000 bail each, Hlathi said.
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source timeslive.co.za
URL https://www.timeslive.co.za/news/south-africa/2019-01-17-mpumalanga-police-arrest-two-bitcoin-kidnapping-suspects/
Field url
Retrieved 2026-09-05T12:55:03+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 23 paragraphs, untrimmed
Length 3,245 chars
Integrity sha256 c59e2e8fa38bd229cf3b7143d61c49ff14488f2786d3544b835bed8c959d1d29
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 1-17 of 23
Length 2,868 chars
Integrity sha256 bc069c1f522605e6d76a73efafc1e4c22a73baf466173b256337590e7c735e65
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 1-17 plus headline [0]; dropped 0 leading and 5 trailing paragraphs. Case-term hits on page: 7.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -127,16 +130,6 @@ The two suspects appeared in court on Tuesday and were granted R1,000 bail each,
According to Markets.com Bitcoin is a finite decentralised digital currency which is not tied to any government or bank.
Surprises in Mosimane squad for Afcon qualifiers against Guinea, Eritrea
IEC had no power to condone UDF Partys late ward nominations, court rules
Attorney, TMPD official in R6m fraud, money laundering case denied bail
Ad hoc committee descends into chaos as DA, ActionSA walk out over squabbling MPs
WATCH | Well be back, says March and March after clash with refugees
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 049
================================================================================================
+11 -12
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes (null)
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Tjeerd H.
@@ -65,19 +68,19 @@ A spokesperson for Northern Netherlands Police told The Independent that the inv
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source the-independent.com
URL https://www.the-independent.com/tech/bitcoin-robbery-torture-cryptocurrency-netherlands-a8807986.html
Field url
Retrieved 2026-09-05T12:55:00+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 16 paragraphs, untrimmed
Length 2,357 chars
Integrity sha256 68e352faaf95afe530ef631f701f8c57f9966f5c8f1073326f33019cdf137194
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 2-14 of 16
Length 2,125 chars
Integrity sha256 81a3950a187586d450229a51d4460c71bdb34b1c10c225c8440b9440320af208
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 2-14 plus headline [0]; dropped 1 leading and 1 trailing paragraphs. Case-term hits on page: 3.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -86,8 +89,6 @@ ORIGINAL (unknown, verbatim as retrieved)
Bitcoin trader brutally tortured with drill in cryptocurrency robbery | The Independent | The Independent
Please refresh the page or navigate to another page on the site to be automatically logged inPlease refresh your browser to be logged in
Police in the Netherlands are investigating the brutal torture of a bitcoin trader, whose home was raided by criminals looking for cryptocurrency.
Three robbers disguised as police entered the victim's home in Drenthe and attacked him with a drill in front of his four-year-old daughter, Dutch publication De Telegraaf reported.
@@ -114,8 +115,6 @@ The UK's first bitcoin heist took place in January last year, when armed robbers
Mr Aston was tied up during the home invasion and an unknown quantity of bitcoin was seized by the attackers.
Join thought-provoking conversations, follow other Independent readers and see their replies
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 050
================================================================================================
+11 -10
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes they threatened the employees with a machete
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Costcutters
@@ -94,19 +97,19 @@ A spokeswoman for Northamptonshire Police said: "All the men wore face coverings
Anyone who witnessed the robbery, saw the men in the area at the time, or who has information about the incident is asked to call Northamptonshire Police on 101.
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source northamptonchron.co.uk
URL https://www.northamptonchron.co.uk/news/masked-men-with-weapons-rob-northampton-shop-for-bitcoin-machine-73035
Field url
Retrieved 2026-09-05T12:54:58+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 10 paragraphs, untrimmed
Length 1,347 chars
Integrity sha256 7aebab7b9e2f653214cd7ae384adb4842d0802a247562c3384bf51a57c25d62e
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 1-8 of 10
Length 1,245 chars
Integrity sha256 6b25e6197eba888787c94086050cec2a467dfaecfd833ee62e6f548a22e01fd6
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 1-8 plus headline [0]; dropped 0 leading and 1 trailing paragraphs. Case-term hits on page: 8.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -131,8 +134,6 @@ A spokeswoman for Northamptonshire Police said: "All the men wore face coverings
Anyone who witnessed the robbery, saw the men in the area at the time, or who has information about the incident is asked to call Northamptonshire Police on 101.
© 2026 Iconic Media Group Ltd. All rights reserved.Cookie SettingsTerms and ConditionsPrivacy notice
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 051
================================================================================================
+11 -10
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes the victim escaped jumping off the balcony from a 2nd floor
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Undisclosed
@@ -73,19 +76,19 @@ The case will be prosecuted by police attorney Ellen Karine Aas in court on Octo
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source tv2.no
URL https://www.tv2.no/nyheter/innenriks/bitcoin-millionaer-oppsokt-av-mann-med-hagle-hoppet-fra-balkongen/10828524/
Field url
Retrieved 2026-09-05T12:54:54+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 8 paragraphs, untrimmed
Length 1,050 chars
Integrity sha256 e5eb301cfa292074aac3a4ba546ee1fbffddcba48ac62c1e7dfdf84afc0591f1
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 2-7 of 8
Length 982 chars
Integrity sha256 7e7411bc1f8e26907c252755b3d6c016b19f88e22dc8a8976abc237815fa113a
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 2-7 plus headline [0]; dropped 1 leading and 0 trailing paragraphs. Case-term hits on page: 4.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -94,8 +97,6 @@ ORIGINAL (unknown, verbatim as retrieved)
Bitcoin-millionær flyktet: Bitcoin-millionær oppsøkt av mann med hagle hoppet fra balkongen
Bitcoin-millionær oppsøkt av mann med hagle hoppet fra balkongen
Mangemillionæren stirret inn i løpet på en avsagd hagle da han åpnet døra.
RANET HJEMME: Offeret ble oppsøkt i sin egen bolig hjemme i Oslo. Han kom seg unna uten å gi fra seg verdier. Dette er et illustrasjonsbilde. Foto: Kyrre Lien / NTB Scanpix
@@ -26,6 +26,9 @@ DATABASE RECORD
notes two weeks in high rise building, no family contact
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Luftan Shaikh, Mohammad Shazad, Malang Shah
@@ -64,19 +67,19 @@ India-based media outlet NDTV reported that the cryptocurrency traders had been
"[The gang] wanted to extort money from the trio. They held them hostage in the flat and had threatened to kill them if the demands were not met," NDTV quoted Sharma as saying. "Not even their family members were aware of the abduction. The victims had lost all hope because they had no access to anyone." Police said they seized guns and SUVs from the criminals.The suspects were identified by local media as Jitendra Kumar, 21, Deepak Kumar, 22, Anupam Soni, 19, Pawan Kumar, 20, Bhawani Singh, 19, Lokendra Singh, 24 and Rahul Kumar, 19. Lokendra Singh is from Rajasthan and the others are originally from Haryana. 
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source newsweek.com
URL https://www.newsweek.com/cryptocurrency-traders-abducted-tortured-india-criminal-gang-arrested-bitcoin-ransom-1449274
Field url
Retrieved 2026-09-05T12:54:51+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 19 paragraphs, untrimmed
Length 5,773 chars
Integrity sha256 b4cd0788a584b641b6c9021f6a4f267cc9f00e61f59cd59a869007fcf8964496
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 7-17 of 19
Length 5,283 chars
Integrity sha256 48422bb4ffbbbfa210df906039030e2857a3e9c68fcc89f44f2928429de183cc
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 7-17 plus headline [0]; dropped 6 leading and 1 trailing paragraphs. Case-term hits on page: 41.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -85,18 +88,6 @@ ORIGINAL (unknown, verbatim as retrieved)
Criminal Gang Abducts and Tortures Cryptocurrency Traders, Demands Massive Bitcoin Ransom - Newsweek
U.S.
Iran WarRussia-UkraineMiddle EastChina And AsiaLive BlogBetter PlanetAll World News
Family & ParentingEntertainmentTravelPetsAutomotiveRelationshipsScienceHealthPersonal FinanceBetter WorkplacesReaders Choice
HealthFinanceProductsEducationWorkplacesCorporate ResponsibilityAll Rankings
FacebookInstagramThreadsYouTubeRedditTikTokTwitter/X
NewslettersNewsmakersDare to DreamUnconventionalEventsEssaysPodcastsVantageInsightsMagazineCEO CircleAnnouncementsLeadershipDev Pragad
A criminal gang operating in India kidnapped and tortured cryptocurrency traders in recent weeks before demanding 80 bitcoins as ransom, police say. The ordeal—which lasted more than two weeks for the victims—came to an end yesterday as seven people linked to the gang were arrested, the Hindustan Times newspaper reported. Law enforcement in Jaipur city said the police operation on Sunday lasted 13 hours. Three men had been held captive for 15 days inside a high-rise building and were beaten or tortured, deputy commissioner of police (DCP) Vikas Sharma told local media. The individuals were named as Luftan Shaikh, 19, Mohammad Shazad, 36 and Malang Shah, 44. "The gang kidnapped Shaikh and Shazad, two bitcoin traders, and demanded 80 bitcoin worth ₹8 crore ($1.2 million). Shah was kidnapped two days later. The gang demanded ₹10 lakh ($15,000) from his family members," the deputy commissioner said in a statement. The price of digital currency bitcoin fluctuates daily, which likely explains the difference in exchange rate. Police said officers were alerted to the scheme after a 20-minute chase resulted in the arrest of a suspect who was seen carrying a pistol in Bhakrota, which is a residential area in Jaipur. The man told officers about the kidnapping and gave up the location of the apartment building. India-based media outlet NDTV reported that the cryptocurrency traders had been lured into the region by gang members who claimed to be selling bitcoins at a low price. "[The gang] wanted to extort money from the trio. They held them hostage in the flat and had threatened to kill them if the demands were not met," NDTV quoted Sharma as saying. "Not even their family members were aware of the abduction. The victims had lost all hope because they had no access to anyone." Police said they seized guns and SUVs from the criminals. The suspects were identified by local media as Jitendra Kumar, 21, Deepak Kumar, 22, Anupam Soni, 19, Pawan Kumar, 20, Bhawani Singh, 19, Lokendra Singh, 24 and Rahul Kumar, 19. Lokendra Singh is from Rajasthan and the others are originally from Haryana. As reported by The Next Web, it's not the first time cryptocurrency traders have been targeted by extortion gangs. In January this year, it emerged that police in South Africa had arrested two suspects who allegedly kidnapped a 13-year-old boy and demanded bitcoins from his parents. He was safely returned to his family, local media outlet Times Live reported. The pair were caught after attempting to kidnap a teenage girl.
See more of our trusted coverage when you search.to see more of our trusted coverage when you search.
@@ -119,8 +110,6 @@ The suspects were identified by local media as Jitendra Kumar, 21, Deepak Kumar,
As reported by The Next Web, it's not the first time cryptocurrency traders have been targeted by extortion gangs. In January this year, it emerged that police in South Africa had arrested two suspects who allegedly kidnapped a 13-year-old boy and demanded bitcoins from his parents. He was safely returned to his family, local media outlet Times Live reported. The pair were caught after attempting to kidnap a teenage girl.
...
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 053
================================================================================================
+52 -3
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes cash from ATMs
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Bitcoin Exchange
@@ -65,9 +68,55 @@ The owner of the establishment, Adam Gramowski, told the newspaper that he belie
Violent raids targeting Bitcoin businesses and traders are becoming more common. In February, a Bitcoin trader was attacked in his own home by a group of robbers disguised as the police.
OTHER LINKED SOURCES
[DEAD] url None — raw request refused; try the WebFetch path, which is a model transcription and must be labelled as such
https://cointelegraph.com/news/gang-of-masked-men-raid-bitcoin-embassy-in-birmingham
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source cointelegraph.com
URL https://cointelegraph.com/news/gang-of-masked-men-raid-bitcoin-embassy-in-birmingham
Field url
Retrieved 2026-09-05T13:31:54+00:00 via Wayback Machine snapshot 20260207041923, deterministic extraction (HTTP None)
Language unknown
Kept paragraphs headline [0] + 1-13 of 14
Length 1,857 chars
Integrity sha256 2b5df404771eba8122f5ce2e512dec754846242b11bf5c2c2e54ccbf15d48ad0
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 1-13 plus headline [0]; dropped 0 leading and 0 trailing paragraphs. Case-term hits on page: 11.
Note live URL was DEAD on the first pass; text comes from an archived copy dated 2026-02-07
Archive http://web.archive.org/web/20260207041923/https://cointelegraph.com/news/gang-of-masked-men-raid-bitcoin-embassy-in-birmingham
Caveat retrieved from a Wayback Machine snapshot, not the live page. The
snapshot date is in the method line; the live URL was unreadable.
------------------------------------------------------------------------------------------------
ORIGINAL (unknown, verbatim as retrieved)
Gang of Masked Men Raid Bitcoin Exchange in Birmingham
TRX$0.2754 1.90%ETH$2,099 9.11%XRP$1.46 12.99%BTC$71,254 9.10%XLM$0.1635 6.79%BCH$526.55 13.48%BNB$659.98 5.79%HYPE$33.06 6.01%SOL$88.40 12.64%ADA$0.2762 9.16%XMR$338.16 12.17%LINK$8.98 9.79%DOGE$0.09848 8.16%
Written by Thomas Simms,Former Staff Writer
Reviewed by Igor Belkin,Former Staff Editor
Police are looking for a gang of masked men who raided a Bitcoin exchange in the English city of Birmingham.
A gang of masked men have raided a Bitcoin (BTC) exchange in the English city of Birmingham, sparking a police investigation.
Local Facebook page Brumz Updates posted footage of the burglars ransacking the building as sirens blared on July 15.
Witnesses look on helplessly as the robbery unfolds — and seconds later, the gang speed away from the scene in a waiting car.
West Midlands Police has launched an investigation, but have confirmed that nothing of value was stolen from the business.
According to the Daily Mail, the thieves had attempted to steal a Bitcoin ATM using a rope attached to their car.
The owner of the establishment, Adam Gramowski, told the newspaper that he believes the robbers were after cash inside the machine rather than cryptocurrency, adding:
“There are no BTC [Bitcoin] in the machine, they are being sent directly from our server.”
Violent raids targeting Bitcoin businesses and traders are becoming more common. In February, a Bitcoin trader was attacked in his own home by a group of robbers disguised as the police.
Cointelegraph is committed to independent, transparent journalism. This news article is produced in accordance with Cointelegraphs Editorial Policy and aims to provide accurate and timely information. Readers are encouraged to verify information independently. Read our Editorial Policy https://cointelegraph.com/editorial-policy
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 054
+9 -6
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes late evening office invasion, armed with pistol knocked on office door, victim opened, they rushed in demanded crypto and other valuables
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Unidentified
@@ -66,19 +69,19 @@ The victim handed over cash and then had to transfer cryptocurrencies from his c
The State Criminal Investigation Office has initiated investigations. In similar cases, investigators recently gained initial leads through the cryptocurrencies, as these transactions can usually be traced online.
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source ooe.orf.at
URL https://ooe.orf.at/stories/3006096/
Field url
Retrieved 2026-09-05T12:54:48+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 6 paragraphs, untrimmed
Kept paragraphs 0-5 of 6
Length 1,255 chars
Integrity sha256 b1510c57bb51689ab70da5e46fa565b0854b70ec9bd7b1dc80a3b7883125f825
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 0-5; dropped 0 leading and 0 trailing paragraphs. Case-term hits on page: 1 (WEAK anchor, confirm the page is about this case).
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
+50 -3
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes boss of crypto investment scam team beaten to death by his own mates, after pretending his wallet with company funds got hacked
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Abdul Shakoor
@@ -71,9 +74,53 @@ They arrived in Dehradun, where Shakoor had been living in a rented house, and p
"The accused are being interrogated even as the search for five others is on," police officials said. 
OTHER LINKED SOURCES
[BLOCKED] url None — raw request refused; try the WebFetch path, which is a model transcription and must be labelled as such
https://www.ndtv.com/india-news/kingpin-of-bitcoin-scam-worth-rs-485-crore-murdered-by-associates-in-dehradun-police-2093504
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source ndtv.com
URL https://www.ndtv.com/india-news/kingpin-of-bitcoin-scam-worth-rs-485-crore-murdered-by-associates-in-dehradun-police-2093504
Field url
Retrieved 2026-09-05T13:31:46+00:00 via Wayback Machine snapshot 20251217074518, deterministic extraction (HTTP None)
Language unknown
Kept paragraphs headline [0] + 2-13 of 16
Length 2,322 chars
Integrity sha256 b0011f410e6b48ee9bda0f0c29667d6d5088de9b460e0bd10de7afea203f50cb
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 2-13 plus headline [0]; dropped 1 leading and 2 trailing paragraphs. Case-term hits on page: 29.
Note live URL was BLOCKED on the first pass; text comes from an archived copy dated 2025-12-17
Archive http://web.archive.org/web/20251217074518/https://www.ndtv.com/india-news/kingpin-of-bitcoin-scam-worth-rs-485-crore-murdered-by-associates-in-dehradun-police-2093504
Caveat retrieved from a Wayback Machine snapshot, not the live page. The
snapshot date is in the method line; the live URL was unreadable.
------------------------------------------------------------------------------------------------
ORIGINAL (unknown, verbatim as retrieved)
Kingpin Of Bitcoin Scam Worth Rs 485 Crore Murdered By Associates In Dehradun: Police
The attackers tortured Abdul Shakoor till he fell unconscious and left the body at the emergency ward of a private hospital in Dehradun on Thursday night before fleeing. They were arrested on Friday, the officer said.
Kingpin of a bitcoin scam worth Rs 485 crore beaten to death in Dehradun: Cops (Representational Image)
The kingpin of a bitcoin scam worth Rs 485 crore that had its roots in Kerala was beaten to death by five of his associates in Dehradun, a senior police official said this morning.
"The scam has its roots in Kerala and the kingpin, Abdul Shakoor, as well as his associates hail from the southern state," senior police officer in Dehradun Arun Mohan Joshi said.
The police officer added that a search was underway to arrest five more close aides of Abdul Shakoor - Ashique, Arshad, Yasin, Rehaab and Muneef.
Giving details, the police officer said, "(Abdul) Shakoor ran a bitcoin business and had allegedly collected around Rs 485 crore for investing in crypto-currency from residents of Pandikkad, Manjeri and Malappuram in Kerala."
"Shakoor's animosity with his team members started when he allegedly suffered losses in the business and escaped to Dehradun as people who had invested in bitcoins through his associates began chasing them for their money," police said.
"When his associates asked him about the money, Shakoor allegedly told them that his bitcoin account had been hacked. Not convinced, his associates hatched a plan to retrieve the password of his account.
They arrived in Dehradun, where Shakoor had been living in a rented house, and pressured him for the password. As Shakoor refused to give in, they began torturing him as they believed Shakoor still had hundreds of crores in his account and was deceiving them," police official Arun Joshi added.
"The torture continued, ultimately leading to Shakoor's death," police officials said, adding that the body had multiple injury marks.
"His killers took him to two hospitals in the city as he fell unconscious but when doctors at both facilities declared him dead, they fled leaving his body behind," Police officer Arun Joshi said.
"The accused are being interrogated even as the search for five others is on," police officials said.
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 056
@@ -26,6 +26,9 @@ DATABASE RECORD
notes robbers at night, took cash from bATM
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Simply Delicious Food Market
+11 -113
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes not in lopps list
has_processed_date 0
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Anne-Elisabeth Hagen
@@ -96,19 +99,19 @@ The real estate investor owns 70% of the electricity company Elkraft, which he c
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source theguardian.com
URL https://www.theguardian.com/world/2019/jun/26/police-say-abducted-norwegian-woman-anne-elisabeth-hagen-probably-murdered?utm_term=Autofeed&CMP=twt_gu&utm_medium=&utm_source=Twitter#Echobox=1561567155
Field url
Retrieved 2026-09-05T12:54:43+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 55 paragraphs, untrimmed
Length 1,902 chars
Integrity sha256 3aab55da14f756ad3d782cf83029fcfdbc28d43789f11d0e6c99ee8043908062
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 47-54 of 55
Length 1,559 chars
Integrity sha256 9b811b02abcbef1d9c0acf0892c7f9f12044d3b4d0e6c611037f92d6cf381d21
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 47-54 plus headline [0]; dropped 46 leading and 0 trailing paragraphs. Case-term hits on page: 14.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -129,111 +132,6 @@ Police say abducted Norwegian woman probably murdered | Norway | The Guardian
Skip to main contentSkip to navigation
Police say abducted Norwegian woman probably murdered
Investigator says kidnapping possibly staged to disguise killing of Anne-Elisabeth Hagen, wife of wealthy investor
The wife of a wealthy Norwegian businessman who disappeared nearly eight months ago was probably killed and the murder made to look like a kidnapping, police have said.
Anne-Elisabeth Hagen, whose husband, Tom Hagen, is a real estate investor and energy magnate, went missing from their home in Lørenskog, near Oslo, on 31 October.
+11 -14
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes father of 2 shot dead for assumed 10k in btc, he only ad $400 of btc in his wallet
has_processed_date 0
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Iroro Wisdom Ovie
@@ -105,19 +108,19 @@ Avoid any action that could reveal that you own Bitcoin to avoid becoming the ta
Above all, you can help yourself to stay safe if you trust nobody.
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source vanguardngr.com
URL https://www.vanguardngr.com/2020/02/4-arrested-over-killing-of-delta-pdp-member/
Field url
Retrieved 2026-09-05T12:54:41+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 18 paragraphs, untrimmed
Length 2,427 chars
Integrity sha256 1e7a3ff6ff3e046910828826252887d4baf872597fd0a66e050f6f849f861100
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 3-17 excl [7] of 18
Length 2,254 chars
Integrity sha256 5deefeb904e7ad4bae87a8e8cf5686d8c47963439e8a4e7698efa9dc8ae60a0a
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 3-17 plus headline [0]; dropped 2 leading and 0 trailing paragraphs and 1 interior furniture line(s). Case-term hits on page: 10.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -126,10 +129,6 @@ ORIGINAL (unknown, verbatim as retrieved)
4 arrested over killing of Delta PDP member - Vanguard News
Home » News » 4 arrested over killing of Delta PDP member
4 arrested over killing of Delta PDP member
Four persons have been arrested in connection with the killing of a member of the Peoples Democratic Party, PDP in Abraka, Ethiope East local government area of Delta State.
The victim, Iroro Wisdom Ovie, a father of two, was beaten and shot by unknown gunmen last month at his Lucas area residence along the Police Station axis of Abraka.
@@ -138,8 +137,6 @@ Confirming the arrest of the suspects yesterday, a security source at the Abraka
He said: “Two of the suspects are members of the anti-cult group while the other arrested suspect is the leader of the Vikings confraternity in the area.
ALSO READ: We deserve SUVs, not cars for oversight functions — Reps
“Investigations so far have also revealed that the bosom friend of the victim arrested had hinted one of the suspects of the discovery of $10, 000 in the victims Bitcoin wallet and then contacted the other suspects for the robbery operation.
“From the confessional statements of the suspects, their intentions for carrying out the operation was to dispossess Iroro of the $10, 000 in his Bitcoin wallet but were disappointed to find out that what was left when they struck was $400.
+78 -3
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes teen trader needed higher exchange limits, lured into hotel, kidnapped, extorted
has_processed_date 0
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** 17 y/o trader
@@ -87,9 +90,81 @@ Sentencing, Judge Darren Preston said: “Your victim appears to have done well
He sentenced Murombedzi and the 16-year-old defendant to six years each for the robbery and five years for the kidnap to run concurrently, to be served in a young offenders institute. Kahiya, who played a lesser role, was sentenced to four years. Rahman was not represented at the hearing and will be sentenced on January 16.
OTHER LINKED SOURCES
[THIN] url None — extractor recovered very little; needs the WebFetch path or a site-specific rule
https://www.lancs.live/news/lancashire-news/kidnapped-teen-crypto-trader-hid-25569752
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source lancs.live
URL https://www.lancs.live/news/lancashire-news/kidnapped-teen-crypto-trader-hid-25569752
Field url
Retrieved 2026-09-05T13:31:37+00:00 via Wayback Machine snapshot 20260211223451, deterministic extraction (HTTP None)
Language unknown
Kept paragraphs headline [0] + 3-28 of 35
Length 6,990 chars
Integrity sha256 2658ae3848b5cef53bb2d14f1314fb9644f9eb7718d21bf32f86dc0a30aa405d
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 3-28 plus headline [0]; dropped 2 leading and 6 trailing paragraphs. Case-term hits on page: 16.
Note live URL was THIN on the first pass; text comes from an archived copy dated 2026-02-11
Archive http://web.archive.org/web/20260211223451/https://www.lancs.live/news/lancashire-news/kidnapped-teen-crypto-trader-hid-25569752
Caveat retrieved from a Wayback Machine snapshot, not the live page. The
snapshot date is in the method line; the live URL was unreadable.
------------------------------------------------------------------------------------------------
ORIGINAL (unknown, verbatim as retrieved)
Kidnapped teen crypto trader hid hairs from car boot to help police if he was murdered | Lancs Live
A teenage crypto trader was lured to a Preston apartment and kidnapped by a gang, who tried to tried to rob him of £20,000.
The 17-year-old entrepreneur was tied down in a hotel bathroom, with a pillow over his head, and threatened with a machete, before being bundled into a car boot and driven round. The boy was so scared he hid hairs he found in the car boot in his pocket, to provide forensic evidence for a murder investigation if he was killed.
He was eventually dumped in Chorley and ran to a strangers house for help, Preston Crown Court heard.
In January 2020, the successful 17-year-old, who can not be named for legal reasons, had reached his £10,000 cryptocurrency withdrawal limit and needed help accessing more funds to continue his enterprise, Preston Crown Court heard. News of the teenager's success was 'common knowledge' and Tasmina Rhaman, 21, contacted him, offering to help.
Using a fake Snapchat profile, Rhaman arranged to meet the teenager at the Travelodge in New Hall Lane but when Rhaman was delayed they rearranged the meeting for the Winckley Square apartments on Sunday January 16. Clare Thomas, prosecuting, said the teenager hoped to meet in a public place, but Rahman insisted on meeting indoors.
"That is because there was a plan to kidnap him", she told the court.
On January 16, the trader and a friend went to the apartment, which had been paid for by Rahman. However when they arrived she told them she needed a phone charger and the boys agreed to fetch one from home.
While they were away, Rahman's 16-year-old cousin, and Takudzwa Murombedzi, 20, went to the hotel room and lay in wait. The 16-year-old had a machete and had his hood up, while Murombedzi wore a balaclava. "They had an arrangement to act together to get money from him", Ms Thomas said.
When the teenager returned he was "outnumbered and taken by surprise." Murombedzi and the 16-year-old forced the teenager into the hotel bathroom, where bin bags had been taped to the walls to create the impression there would be blood shed.
"His hands were restrained, his mobile phone taken from him, a pillow placed over his head and bin bags stuffed in his mouth", Ms Thomas said. "They said they knew he had £20,000 and said he would be killed if he didn't give it to them. He was forced to open his mobile phone and they said they would hurt his mum and his younger brother if he did not give it to them.
"Ms Rahman was smiling as he was being tied up and threatened with the machete. The victim said he did not have £20,000 and was forced to sit on the toilet until they got a chair. They said they would share on social media to humiliate him."
Ms Thomas said the plan seemed to be Rahman's idea to get the victim's home address and pay his family a visit. The 16-year-old made a bizarre claim that he too was a victim of the gang, but said he would help the teenager by taking the money from him and handing it over to the girl.
"He (the victim) formed the impression the 16-year-old was the mastermind", Ms Thomas said.
Rahman went to the teenager's home, along with Albert Kahiya, 19, who was the gang's designated driver. Kahiya told the victim's mum her son was with friends and he was there to collect some things. "She was shocked and scared that her son was missing, and she had a young child in the house", Ms Thomas said.
"He (the victim) was put on the phone and told to drop £20,000 out of the window. He hoped his mum would realise he was in danger and phone the police."
Back at the hotel the teenager was untied and the bin bags were removed from his mouth and hands. He was ordered into the boot of a waiting Peugeot, where he feared he would be killed. With Kahiya in the driver's seat, and Murombedzi in the passenger seat, the terrified teenager attempted to gather forensic evidence for what he feared could be a future murder investigation. He was eventually let out in Chorley, where he ran to a random house in distress.
In a victim statement, the teenager says he feels uneasy and paranoid since the kidnap. He feels threatened and victimised when he leaves the house and finds it hard to get up for college.
Before this happened he was very sociable and enjoyed going out with his family, but now he is constantly watching his back. When he leaves the house he worries he is being followed, he said.
His parents have also been affected and constantly check the home security. He suffers flashbacks and panic attacks and is on a waiting list for counselling. In a letter to the court, the 16-year-old defendant said he was sorry for what he had done, and hoped the victim and his family got peace of mind from the outcome of the hearing. He said he hoped to train as a youth worker to help other young people.
Beverley Hackett, defending Kahiya said he did not know the true extent of what he was getting involved in when he agreed to go to Preston. Ms Hackett said her client was an otherwise unremarkable young person, with no criminal record, wo lives with his parents and works in a warehouse.
Speaking on behalf of Murombedzi, Daniel Harman said: “He is an impressive young man who made a catastrophic, life changing mistake.” He added his client had acted with an extreme level of naivety.
Murombedzi, of Harebell Road, Didcock, Oxfordshire, and the 16-year-old defendant pleaded guilty to robbery and conspiracy to kidnap. Rahman, of Holland Road, Sheffield, and Kahiya, of Willow Way, Coventry, pleaded guilty to conspiracy to kidnap.
Sentencing, Judge Darren Preston said: “Your victim appears to have done well for himself trading in cryptocurrency, despite being only 17 years old. Together you hatched a plot, whereby Rahman lured him into your collective web using a fake Snapchat name because it seems he was unable, due to his age, to get sufficiient credit to trade as he wanted to.
“There was a plot to set him up. He feared for his life. This was a terrifying experience for anyone, let alone a 17-year-old. The whole enterprise was planned. It was designed to cause maximum fear and distress
“The effects on him have been long lasting with serious psychological and social consequences. Each of you got involved in this serious criminality, and given that you are all from decent families, and two or three of you have been in employment and contributing to society. All of you are polite, decent, family oriented individuals. Why you got involved in this is difficult to fathom as this is serious criminality. If you were adults you would be getting sentences measured in double figures.”
He sentenced Murombedzi and the 16-year-old defendant to six years each for the robbery and five years for the kidnap to run concurrently, to be served in a young offenders institute. Kahiya, who played a lesser role, was sentenced to four years. Rahman was not represented at the hearing and will be sentenced on January 16.
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 060
@@ -26,6 +26,9 @@ DATABASE RECORD
notes his friend convinced him to go to thailand and he set him up
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Mark Cheng Jin Quan
@@ -86,19 +89,19 @@ It is not known if he will return to Singapore for his next court hearing on Feb
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source asiaone.com
URL https://www.asiaone.com/singapore/man-out-bail-cheating-charges-allegedly-kidnapped-thailand
Field url
Retrieved 2026-09-05T12:54:37+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 32 paragraphs, untrimmed
Length 4,187 chars
Integrity sha256 011e89035709e1ebffaf9ab7dcf2bc17a5f1f01e360e85f60b1718108317f82f
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 3-31 excl [29] of 32
Length 3,977 chars
Integrity sha256 a24df643dfe60474940bb3eabe571a4a5d4558e7c41220440b8a6b74884a68c2
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 3-31 plus headline [0]; dropped 2 leading and 0 trailing paragraphs and 1 interior furniture line(s). Case-term hits on page: 26.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -107,10 +110,6 @@ ORIGINAL (unknown, verbatim as retrieved)
Man out on bail for cheating charges allegedly kidnapped in Thailand, Singapore News - AsiaOne
Man out on bail for cheating charges allegedly kidnapped in Thailand
PUBLISHED ONJanuary 14, 2020 12:14 AMBYDavid Sun
A Singaporean businessman facing cheating charges here was allegedly kidnapped and tortured in Thailand last week.
Despite paying his captors more than $60,000 in Bitcoin for his freedom, Mark Cheng Jin Quan, 32, claimed they were still going to execute him at gunpoint until he managed to escape.
@@ -163,8 +162,6 @@ Cheng, who co-founded Avelife, a non-governmental organisation that focuses on s
It is not known if he will return to Singapore for his next court hearing on Feb 3.
This article was first published in The New Paper. Permission required for reproduction.
Kidnap/AbductionThailandbailcriminal breach of trustbitcoins
This website is best viewed using the latest versions of web browsers.
@@ -26,6 +26,9 @@ DATABASE RECORD
notes two black kids break into bATM také cash box
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Mayfair Quick Mart
@@ -57,9 +60,59 @@ Authorities are looking for two men who stole cash from a Bitcoin machine inside
The brazen theft occurred at 5:50 a.m. Jan. 21 inside a shop located at 7250 Frankford Ave., police said. Surveillance footage shows the men using crowbars to pry open the machine before taking the cash box.
OTHER LINKED SOURCES
[DEAD] url None — raw request refused; try the WebFetch path, which is a model transcription and must be labelled as such
https://www.cbsnews.com/philadelphia/news/philadelphia-police-searching-for-2-suspects-who-broke-into-bitcoin-machine-stole-cash-box/
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source cbsnews.com
URL https://www.cbsnews.com/philadelphia/news/philadelphia-police-searching-for-2-suspects-who-broke-into-bitcoin-machine-stole-cash-box/
Field url
Retrieved 2026-09-05T13:31:32+00:00 via Wayback Machine snapshot 20260217184636, deterministic extraction (HTTP None)
Language unknown
Kept paragraphs headline [0] + 1-15 of 24
Length 1,735 chars
Integrity sha256 444bd78441c7d440c5097214a5d0591e8496b5dfc620b75d40febf9bcdd0ed43
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 1-15 plus headline [0]; dropped 0 leading and 8 trailing paragraphs. Case-term hits on page: 9.
Note live URL was DEAD on the first pass; text comes from an archived copy dated 2026-02-17
Archive http://web.archive.org/web/20260217184636/https://www.cbsnews.com/philadelphia/news/philadelphia-police-searching-for-2-suspects-who-broke-into-bitcoin-machine-stole-cash-box/
Caveat retrieved from a Wayback Machine snapshot, not the live page. The
snapshot date is in the method line; the live URL was unreadable.
------------------------------------------------------------------------------------------------
ORIGINAL (unknown, verbatim as retrieved)
Philadelphia Police Searching For 2 Suspects Who Broke Into Bitcoin Machine, Stole Cash Box - CBS Philadelphia
PHILADELPHIA (CBS) -- Philadelphia police are searching for two suspects who broke into a Bitcoin machine and took the cash box from inside. The incident happened Tuesday, shortly before 6 a.m., at a store on the 7200 block of Frankford Avenue in the Mayfair section of the city.
The store manager says this wasn't the thieves' first rodeo, suggesting the suspects looked like they knew what they were doing. He's hoping someone at home knows who the two men are.
"It happened really fast. They came, I don't know what they call it, a machete or something, and they just popped it open," Mayfair Quick Mart Manager Hashid Alsaidi said.
Police released surveillance video they want you to see.
Two brazen robbers used crowbars to break into a bitcoin ATM early on Tuesday morning.
"They looked like they knew what they were doing. It was so fast," Alsaidi said.
Alsaidi manages the store on the 7200 block of Frankford Avenue in Mayfair.
He says it all happened in a matter of seconds.
As the store employee called 911, the robbers took off in a white car.
"I think people can send money overseas from this machine and they can buy Bitcoin currency," Alsaidi said.
What surprised Alsaidi is, they didn't touch the ATM that was within an arm's reach.
He says the bitcoin ATM isn't very popular and he doesn't believe the pair made away with much.
"Honestly, it wasn't doing good anyway," Alsaidi said.
The "Bitbox" may be unavailable now, but store management says it'll be operational again soon as police work to make an arrest.
If you have any information about this incident, contact police at 215-686-3153.
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 062
@@ -26,6 +26,9 @@ DATABASE RECORD
notes forced to open crypto exchange accounts with fake pistol, transfer cash, buy crypto
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Unidentified couple
@@ -76,19 +79,19 @@ Following sentencing, Det Supt Jenny Beattie, of Cumbria Police, said: "The dete
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source bbc.com
URL https://www.bbc.com/news/uk-england-cumbria-62879543
Field url
Retrieved 2026-09-05T12:54:33+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 19 paragraphs, untrimmed
Kept paragraphs headline [0] + 1-18 of 19
Length 2,986 chars
Integrity sha256 19fba304d4b6c3b38d88703db292bf6a82c7bc949d859d98d0d8ea984931c787
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 1-18 plus headline [0]; dropped 0 leading and 0 trailing paragraphs. Case-term hits on page: 4.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -26,6 +26,9 @@ DATABASE RECORD
notes Invaded couples home, machete armed men, struck woman with toblerone chocolate till she bled,
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Unidentified siblings
@@ -100,19 +103,19 @@ Det Insp Craig Potter, of Police Scotlands Cyber Investigations unit called t
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source bbc.com
URL https://www.bbc.com/news/articles/cw5w5zyg979o
Field url
Retrieved 2026-09-05T12:54:31+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 22 paragraphs, untrimmed
Length 2,566 chars
Integrity sha256 0ea40d48faa18a047ddb781aeed768a9e66ba57f5aee90c987c029bb9128214b
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 1-19 of 22
Length 2,464 chars
Integrity sha256 73f09b7ad13a6241902b0a3b4c2150387e74f7b2284613025a5c61fcb521589d
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 1-19 plus headline [0]; dropped 0 leading and 2 trailing paragraphs. Case-term hits on page: 7.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -159,10 +162,6 @@ Det Insp Craig Potter, of Police Scotlands Cyber Investigations unit called t
"This conviction demonstrates Police Scotland capability and commitment to tackling criminality involving the digital space and bringing criminals operating in this world to justice."
Turkish crypto boss handed 11,196 years in prison
Drug dealer ordered to pay back dark web millions
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 064
================================================================================================
@@ -26,6 +26,9 @@ DATABASE RECORD
notes they got in and out in seconds
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Exxon Gas Station
@@ -26,6 +26,9 @@ DATABASE RECORD
notes FBI uncovered plans to kidnap for millions$ in BTC
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Ellis Pinsky
+9 -6
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes gunpoint robbery
has_processed_date 0
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Robert Ross
@@ -47,19 +50,19 @@ NOTES ON THIS FILE
* matched to sheet row 69: exact match on victim + year, unique on both sides
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source crypto.ro
URL https://crypto.ro/en/news/crypto-theft-investment-blogger-robbed-of-bitcoin-holdings-in-bali/
Field url
Retrieved 2026-08-06T13:47:22+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 19 paragraphs, untrimmed
Kept paragraphs headline [0] + 1-18 of 19
Length 4,680 chars
Integrity sha256 a45752dd033c7eb6df16c4c33bc9d7fec8d453bfdfd5f6ebb4d9a540c519fa32
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 1-18 plus headline [0]; dropped 0 leading and 0 trailing paragraphs. Case-term hits on page: 7.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
+106 -3
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes false friend sets up a trap to extort btc at knifepoint
has_processed_date 0
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Male Freshman
@@ -87,9 +90,109 @@ A spokesperson for CCCU said the safety of students is of "paramount importance"
"We offered the student wellbeing counselling, financial support, and relocation of accommodation."
OTHER LINKED SOURCES
[THIN] url None — extractor recovered very little; needs the WebFetch path or a site-specific rule
https://www.the-sun.com/news/3729816/student-forced-bitcoin-knifepoint-cops/
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source the-sun.com
URL https://www.the-sun.com/news/3729816/student-forced-bitcoin-knifepoint-cops/
Field url
Retrieved 2026-09-05T13:31:25+00:00 via Wayback Machine snapshot 20220926063911, deterministic extraction (HTTP None)
Language unknown
Kept paragraphs headline [0] + 1-40 of 42
Length 4,353 chars
Integrity sha256 e4aa5af6c5ecea76a8b165ff20ea4251e7fa20441d3794972ab023cbd28d4dd3
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 1-40 plus headline [0]; dropped 0 leading and 1 trailing paragraphs. Case-term hits on page: 10.
Note live URL was THIN on the first pass; text comes from an archived copy dated 2022-09-26
Archive http://web.archive.org/web/20220926063911/https://www.the-sun.com/news/3729816/student-forced-bitcoin-knifepoint-cops/
Caveat retrieved from a Wayback Machine snapshot, not the live page. The
snapshot date is in the method line; the live URL was unreadable.
------------------------------------------------------------------------------------------------
ORIGINAL (unknown, verbatim as retrieved)
Student forced to transfer bitcoin now worth £68k after being held at knifepoint stunned after cops drop probe | The US Sun
A FRESHER was robbed at knifepoint for Bitcoin now worth a whopping £68,000 during his first week at university.
The lad was forced to move back home after eight thugs stormed his accommodation in Kent and demanded the security passwords to his financial apps.
Now his horrified mum has warned others to take care after the 20-minute ordeal at Canterbury Christ Church University.
She said her son had been discussing cryptocurrency with a new friend on campus just five days after he started his course.
She said: "It was the first friend my son made from university and he was from London.
"They were just having lads' talk.
"The conversation turned to financial and the friend started talking about cyber currency."
The mother alleges the other student then invited eight school friends over from East London - and her son instantly "knew he was in trouble".
Deadly shark attack kills woman, 39, just 50ft from shore as beaches shut
I'm a 36F - I found the best sports bra and it passes the bounce test
$750 new 'cash back' check will be in your hands in DAYS
Jeopardy! fans go wild as unexpected contestant to appear on famous game show
No one was ever charged in connection with the incident.
The student's cryptocurrency was worth £6,000 at the time of the robbery last year - but its value has leapt over the past 12 months.
A further £3,000 of his grant money was also stolen.
After the violent mugging, the victim phoned the police before rushing over to a security hut on the university premises.
The victim's mum alleges the security guards didn't attend the scene.
She said: "He phoned the police and they didn't attend because there was something more important on that night.
"The only action the university took was moving him to different accommodation.
"He was too traumatised so he moved back home even though he had safer and better accommodation.
"He was terrified, emasculated, humiliated and abused.
"You don't hand over nearly £10,000 if you don't think you're not going to get injured."
None of the money could be refunded and the police investigation was dropped after eight months.
The victim's mother said she was frustrated with the response from the security staff at the campus and how the police handled the case.
In a warning to other students, she said: "The police commonly call Freshers' Week 'fishing week' because all the criminals come down. They know the students have got grants, laptops, and new stuff.
"Attacks, assaults, and muggings are quite common across the country."
Canterbury District Commander Chief Inspector Mark Hedges confirmed that police were contacted about the robbery.
He said: "The incident was reported around 45 minutes after the robbery had taken place and during the call, it was established the offenders had left the scene.
He was terrified, emasculated, humiliated and abused
"As a result, it was arranged for officers to visit the victim the following day, when further details of the robbery were disclosed, including the theft of a mobile phone and the transfer of a significant amount of cryptocurrency from the victim's account.
"A thorough investigation into the incident was carried out, including a review of local CCTV opportunities, analysis of Bitcoin 'wallet' IDs and exploration of possible forensic evidence.
"However, the case did not meet the evidential test and the three suspects were refused charge.
"Kent Police takes the safety of the county's student population extremely seriously and encourages all young people to take all steps possible to ensure they do not become victims of crime while studying away from home."
A spokesperson for CCCU said the safety of students is of "paramount importance".
They added: "The reported incident was investigated and thoroughly reviewed.
"We offered the student wellbeing counselling, financial support, and relocation of accommodation."
Inside Bitcoin tycoons £8m ocean-front 'fortress' with moat and jacuzzi after making crypto £100m fortune
We pay for your stories!
Do you have a story for The Sun news desk?
Email us at exclusive@the-sun.co.uk or call 02077824104. You can WhatsApp us on 07423 720 250. We pay for videos too. Click here to upload yours
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 069
+11 -30
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes they kidnapped him from a pub, took his phone, laptop and tortured him to then call his wife for ransom
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Unidentified
@@ -141,19 +144,19 @@ Subsequently, a senior officer from the Department of Counterintelligence Protec
This is such an eloquent story about law enforcers who are still found in the highly reformed police and the Security Service of Ukraine.
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source forklog.com
URL https://forklog.com/en/three-sbu-officers-face-charges-over-kidnapping-of-a-businessman-and-extortion-of-7-btc/
Field url
Retrieved 2026-09-05T12:54:26+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 29 paragraphs, untrimmed
Length 3,398 chars
Integrity sha256 a898e2b976eb18803e6ed413e7bf67557527bb10ac400d3fb748c6a5571b646b
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 1-17 of 29
Length 2,747 chars
Integrity sha256 7e986fa113323950203125a5a0ade110accd47bfe1838b326370bb7b3f0aac1a
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 1-17 plus headline [0]; dropped 0 leading and 11 trailing paragraphs. Case-term hits on page: 11.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -196,28 +199,6 @@ The investigation is also examining the involvement of eight more SBU employees.
Earlier in July, a Ukrainian blogger staged her kidnapping for a ransom of 5 BTC.
Found a mistake in the text? Select it and press CTRL+ENTER
Moscow Authorities Conduct Raids at Gorbushka Shopping Center
Ukraine Urged Not to Push Crypto Business Abroad
North Korea Uses Scam Networks to Launder Stolen Crypto Assets
Bybit Files Lawsuit Against North Korea and Lazarus Group
Crypto Community Criticizes New Yorks Real Estate Database Publication
Open-Source Intelligence Platform Osiris Released on GitHub
Bonzo Lend Loses $9M in Oracle Price Attack
Socket Identifies Malicious Version of Injective SDK in npm
We use cookies to improve the quality of our service.
By using this website, you agree to the Privacy policy.
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 070
================================================================================================
+54 -3
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes failed attempt - Bitcoin ATM robbery
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Mike's Produce
@@ -146,9 +149,57 @@ Favell said the damages will be covered by his insurance and that he is now focu
Bitcoin ATM theft does not appear to attract the most sophisticated of criminals. In November 201, two thieves broke into a grocery store in British Colombia to crack open a Bitcoin ATM installed inside. They stole $4,000 but accidentally left $50,000 behi.
OTHER LINKED SOURCES
[DEAD] url None — raw request refused; try the WebFetch path, which is a model transcription and must be labelled as such
https://cointelegraph.com/news/bungled-bitcoin-atm-theft-in-meatspace-won-t-ruin-thanksgiving
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source cointelegraph.com
URL https://cointelegraph.com/news/bungled-bitcoin-atm-theft-in-meatspace-won-t-ruin-thanksgiving
Field url
Retrieved 2026-09-05T13:31:16+00:00 via Wayback Machine snapshot 20260413150353, deterministic extraction (HTTP None)
Language unknown
Kept paragraphs headline [0] + 1-14 of 15
Length 2,554 chars
Integrity sha256 ccc49d8a61836b2a729133426baf5cfd040cba67ce28312711a44d387d54dd49
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 1-14 plus headline [0]; dropped 0 leading and 0 trailing paragraphs. Case-term hits on page: 7.
Note live URL was DEAD on the first pass; text comes from an archived copy dated 2026-04-13
Archive http://web.archive.org/web/20260413150353/https://cointelegraph.com/news/bungled-bitcoin-atm-theft-in-meatspace-won-t-ruin-thanksgiving
Caveat retrieved from a Wayback Machine snapshot, not the live page. The
snapshot date is in the method line; the live URL was unreadable.
------------------------------------------------------------------------------------------------
ORIGINAL (unknown, verbatim as retrieved)
Bungled Bitcoin ATM theft in meatspace won't ruin Thanksgiving
TRX$0.3197 0.72%LINK$8.87 1.77%XLM$0.1527 1.41%HYPE$42.46 4.37%BTC$72,144 1.86%XMR$345.30 2.42%ETH$2,226 1.90%SOL$83.41 2.13%DOGE$0.0923 1.87%ADA$0.2414 1.08%BCH$427.32 1.10%BNB$603.92 2.14%XRP$1.34 1.35%
Written by Samuel Haig,Former Staff Writer
Reviewed by Alex Cohen,Former Staff Editor
Two thieves have destroyed the front wall of a deli in Canada after a failed attempt to steal a Bitcoin ATM.
A delicatessen in the Canadian town of Kelowna, British Colombia has been severely damaged after two bumbling crooks attempted to steal a Bitcoin ATM installed in a store adjacent to it.
At roughly 3am on October 7, the two suspects unsuccessfully attempted to steal the Bitcoin ATM located on the back wall of the neighbouring store. While attempting to flee empty-handed they backed their white GMC Sierra pick-up truck into L&D Meats and Deli and smashed its front wall.
The chance theyll be caught seems quite high, as local police noted that the thieves managed to leave their tailgate behind. Solana Paré, a spokesperson for Kelowna police stated:
“A preliminary assessment conducted by staff on-site, suggests that despite the thousands of dollars in damage caused, nothing appears to be taken from inside the business as the suspects were unsuccessful in taking the Bitcoin ATM.”
Given how inept the attempted theft was, you have to wonder if the criminals were hoping to steal the “Bitcoins inside the machine, or if they were after cash.
The delis owner Don Favell lamented the timing of the incident, noting that Thanksgiving is quickly approaching and his customers are expecting to receive pre-ordered meat before the holiday.
Favell said the damages will be covered by his insurance and that he is now focused on trying to get his business up and running again. He told local media: “Thats all we can do, look after everybody.”
“They will get their turkeys,” he vowed.
Bitcoin ATM theft does not appear to attract the most sophisticated of criminals. In November 201, two thieves broke into a grocery store in British Colombia to crack open a Bitcoin ATM installed inside. They stole $4,000 but accidentally left $50,000 behi.
Cointelegraph is committed to independent, transparent journalism. This news article is produced in accordance with Cointelegraphs Editorial Policy and aims to provide accurate and timely information. Readers are encouraged to verify information independently. Read our Editorial Policy https://cointelegraph.com/editorial-policy
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 071
+3
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes failed attempt - arrested before the kidnapping
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Undisclosed
+11 -26
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes failed attempt - the victims screamed for help after they were ambushed while waiting for a p2p trade seller to appear
has_processed_date 0
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Undisclosed
@@ -90,19 +93,19 @@ The defendants got scared and left the scene before being able to rob the Arabs
The defendants confessed to being engaged in a fight with the victims, but with no intention of stealing their money.
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source gulfnews.com
URL https://gulfnews.com/uae/crime/attempt-to-rob-dh500000-foiled-in-dubai-gang-of-four-members-arrested-1.76204045
Field url
Retrieved 2026-09-05T12:54:19+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 18 paragraphs, untrimmed
Length 2,142 chars
Integrity sha256 2a995827abea34c39bb196dd7a9394b7c059a34cd426887af1ab1d53ff0a8d7d
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 2-13 excl [9, 10, 11, 12] of 18
Length 1,520 chars
Integrity sha256 7cf7b6e0ccab211843ece76993faaff27d8e42ac3dc8343123cf84555af37ef9
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 2-13 plus headline [0]; dropped 1 leading and 4 trailing paragraphs and 4 interior furniture line(s). Case-term hits on page: 17.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -111,8 +114,6 @@ ORIGINAL (unknown, verbatim as retrieved)
Attempt to rob Dh500,000 foiled in Dubai, gang of four members arrested
Defendants attacked bitcoin buyer and his friends and sprayed deodorants on their faces
Robbers in Dubai tried to snatch Dh500,000 in cash from an investor who wanted to buy bitcoins. Picture for illustrative purposes only.Gulf News Archives
Dubai: A group of four Dubai-based expatriates has been accused of attempted robbery of Dh500,000 from an investor in a fraudulent bitcoin transaction.
@@ -127,24 +128,8 @@ The four defendants physically assaulted the victims and sprayed a deodorant dir
Dubai Police have arrested all the four defendants who were charged with attempted robbery.
Also Read: Dubai-based carpenter, who had 29 narcotic pills hidden in his stomach, sentenced to jail
Also Read: Indian expat who forged bosss signature 47 times jailed in Dubai
Also Read: Sales manager in Dubai embezzled Dh788,000 from company, using fake documents
Also Read: Three expats scam Dubai law firm customer
The next hearing is scheduled for January 11.
Man arrested in Sharjah for killing two sisters
Dubai arrests singer over Dh9,000 fake visa scam
Man thought he was a cat after taking drugs: Prosecutor
Two fined Dh50,000 each over petrol station dispute
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 073
================================================================================================
+11 -59
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes he and his wife were kidnapped, he was tortured and they stole his car. The victim called the cops with a 2nd phone
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Undisclosed
@@ -116,19 +119,19 @@ The victim's wife was held in a hotel in Ternopil. No physical force was used ag
Police officers found the stolen car a few kilometers from the crime scene.
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source lb.ua
URL https://lb.ua/news/2020/12/24/473829_ternopoli_zatrimali.html
Field url
Retrieved 2026-09-05T12:54:18+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 39 paragraphs, untrimmed
Length 4,671 chars
Integrity sha256 35b10c6abc328f40d830db3e7684193c8422bd937b074890460113493be04bd0
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 12-24 of 39
Length 2,572 chars
Integrity sha256 f4cd058cf90c278c1040bfed219e3fc2ec6d9c341ed7bb1cbbdb218d896c68cc
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 12-24 plus headline [0]; dropped 11 leading and 14 trailing paragraphs. Case-term hits on page: 5.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -137,29 +140,6 @@ ORIGINAL (unknown, verbatim as retrieved)
У Тернополі автовикрадачі катували чоловіка і вимагали у нього 800 тисяч
«Організм був надто виснажений. Це фактор ризику і він реалізувався». Що відбувається з колишніми полоненими після звільнення
Почаївській лаврі надали додаткові 60 днів на розірвання зв'язків із РПЦ
Фото​Стихійне лихо в Непалі: що відомо про долю 57 українців?
Україна звернулася до МСЕ з вимогою відключити нашу територію від зон обслуговування російської супутникової системи "Рассвет"
У Міноборони роз’яснили, як саме Євгенія Хмару звільнили з військової служби
ФотоПосол Італії в Україні вручив найвищу державну нагороду двом українським діячам мистецтва
На Одещині знайшли мертвою 15-річну дівчину: поліція затримала 19-річного односельця
Росіяни атакували Україну балістикою та БПЛА: вибухи у Києві, Полтаві, Запоріжжі та Кривому Розі
ФотоСмертність перевищує народжуваність в Україні вже 30 років поспіль: LB.Talks про те, від чого помирає Україна РЕПОРТАЖ
Головна —
Політика — 24 грудня 2020, 12:40
У Тернополі затримали автовикрадачів, які катували чоловіка і вимагали у нього $800 тисяч
Затримано організатора, співорганізатора та виконавця.
У Тернополі затримали викрадачів авто, які катували чоловіка та вимагали у нього 800 тисяч доларів. Їм інкримінують одразу три статті Кримінального
@@ -194,34 +174,6 @@ ORIGINAL (unknown, verbatim as retrieved)
Вони катувлаи його родину та забрали усі гроші та прикраси.
ФотоНа Харківщині 14-річний хлопець за добу викрав три автомобілі і тричі потрапив у ДТП
Мер Тернополя відмовляється вводити карантин вихідного дня
ФотоЧоловіка-"бодімодифікатора" з Тернополя засудили до довічного за вбивство тату-майстрині
ФотоЗеленський розпочав робочу поїздку до Запорізької області
Увічнення пам’яті Кернеса в Харкові: єдність і боротьба протилежностей
У грудні 30 депутатів пропустили 90% голосувань Ради, - КВУ
ФотоОфіс генпрокурора передав справу Татарова з НАБУ до СБУ (оновлено)
Зеленський підписав закон, який продовжує дію особливого порядку місцевого самоврядування в ОРДЛО
Кандидати в мери Борисполя. Хто злетить?
У Запоріжжі втретє за два тижні обрали голову облради
​Нардепу від "Cлуги народу" присудили 2 млн гривень моральної компенсації за кримінальне переслідування
Офіс з просування експорту запустив портал для підтримки експортерів
ВАКС продовжив термін домашнього арешту Микитасю до 23 лютого
Продовжуючи переглядати LB.ua ви підтверджуєте, що ознайомилися з Правилами користування сайтом та погоджуєтеся на використання файлів cookies
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 074
================================================================================================
+11 -36
View File
@@ -27,6 +27,9 @@ $387.000 in cash
notes apparently fake p2p trade setup turned into stolen cash and transferred crypto
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** 37 y/o man
@@ -81,19 +84,19 @@ About 18.5 million out of a total of 21 million bitcoins have been mined and all
Once all the bitcoins have been mined, buyers will still be incentivized to process transactions with fees.
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source thestandard.com.hk
URL https://www.thestandard.com.hk/breaking-news/article/162670/Gang-of-six-rob-more-than-HK3-million-in-bitcoin-from-trader-flee-after-kicking-him-out-of-the-car
Field url
Retrieved 2026-09-05T12:54:14+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 37 paragraphs, untrimmed
Length 4,471 chars
Integrity sha256 6ba46f7802d214f0aa238c4823adc5190e2d63edf38a514b116c6e4c9a4333a5
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 1-22 of 37
Length 3,272 chars
Integrity sha256 b40f4bc48298d51df1455b23e4adf52fc3fd04175f323598f3fedad36853ffaf
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 1-22 plus headline [0]; dropped 0 leading and 14 trailing paragraphs. Case-term hits on page: 11.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -146,34 +149,6 @@ About 18.5 million out of a total of 21 million bitcoins have been mined and all
Once all the bitcoins have been mined, buyers will still be incentivized to process transactions with fees.
HKTB promotes major mega events and new global campaign at Chengdu networking summit
International Schools Fair 2026 end on high note as families gain key academic insights
Tesla driver dies after collapsing at wheel in Island Eastern Corridor collision
Golfer airlifted to hospital after collapsing at Sai Kung Kau Sai Chau golf course
Former district councillor among three arrested over alleged seditious acts outside Prince Edward station
Suspended digital display screen dangles mid-air at Hong Kong Airport Terminal 2
International Schools Fair opens today and ends at 4pm at Cordis Hotel
HK Disneyland Hotel pauses for glow-up but holiday treats await
HKMA alerts public to rising scams involving unauthorized mobile wallet card binding
DEVB demands departmental reports over malfunctioning lifts at Queen Mary Hospital
Pansy Ho shares candid memories of late father Stanley Ho and friendships with Leslie Cheung and Anita Mui
HKO recaps extraordinary 15-day journey of resurrected tropical cyclone Saudel
Leslie Cheung 70th birthday exhibition brings the legend back to fans
Copyright © 2026 The Standard - A division of Sing Tao News Corporation Limited. All rights reserved.
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 076
================================================================================================
@@ -26,6 +26,9 @@ DATABASE RECORD
notes fake p2p trade after 3 successful transactions. Stolen cash and iphone
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Unidentified Woman
@@ -75,19 +78,19 @@ Officers mounted a search, but no arrests were made.
Detectives from the Kwun Tong criminal investigation unit are handling the case.
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source scmp.com
URL https://www.scmp.com/news/hong-kong/law-and-crime/article/3118249/gang-snatches-hk35-million-hong-kong-cryptocurrency
Field url
Retrieved 2026-09-05T12:54:12+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 11 paragraphs, untrimmed
Kept paragraphs 0-10 of 11
Length 1,641 chars
Integrity sha256 279a1011a2f74e2727eb2fa3d1b6357f02a3c1e2eb3a5b6f4b5b9b156843eede
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 0-10; dropped 0 leading and 0 trailing paragraphs. Case-term hits on page: 14.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -26,6 +26,9 @@ DATABASE RECORD
notes the suspect shot 2 employees and one ended up in a comma
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Physical Exchange Employees
@@ -101,19 +104,19 @@ On Jan. 25, FlyingAtom published a Facebook post thanking the police for their s
While many criminal incidents related to cryptocurrency are perpetrated online, there is nonetheless a persistent risk of physical robbery in the industry. In late January, an armed gang posing as cryptocurrency buyers stole about 3.5 million Hong Kong dollars ($450,000) from a woman in Hong Kong. While she was luckily unscathed during the incident, other victims of cryptocurrency-related attacks have suffered kidnap and torture, or been forced to escape in highly dangerous circumstances.
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source cointelegraph.com
URL https://cointelegraph.com/news/polish-crypto-exchange-employee-in-induced-coma-after-armed-attack
Field url
Retrieved 2026-09-05T12:54:10+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 13 paragraphs, untrimmed
Length 2,980 chars
Integrity sha256 39f4a25b22d42787907a5c01bb7a20ba1dd4229bc230644f8051e71a0fbaecb0
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 2-9 of 13
Length 2,681 chars
Integrity sha256 5ae8334d6d4cc218882f237515c0991fd925d34b5cdc175eec8b703de7b57051
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 2-9 plus headline [0]; dropped 1 leading and 3 trailing paragraphs. Case-term hits on page: 22.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -122,8 +125,6 @@ ORIGINAL (unknown, verbatim as retrieved)
Polish crypto exchange employee in induced coma after armed attack
Written by Marie Huilletformer writerReviewed by Alex Cohenformer editor
On Jan. 22, an attacker shot two employees at a cryptocurrency and gold exchange in the Polish city of Olsztyn, escaping with over $120,000 in gold.
Polish police have detained a suspect in an armed attack on FlyingAtom, a cryptocurrency and gold exchange in the city of Olsztyn in northeastern Poland. The incident, which occurred around 7 p.m. local time on Jan. 22, resulted in the injuries of two employees — one of whose situation was severe enough to necessitate an induced coma.
@@ -140,12 +141,6 @@ While many criminal incidents related to cryptocurrency are perpetrated online,
Cointelegraph is committed to independent, transparent journalism. This news article is produced in accordance with Cointelegraphs Editorial Policy and aims to provide accurate and timely information. Readers are encouraged to verify information independently.
Bitcoin ETF inflows hit $3.8B in strongest three-week stretch of 2026
Bitcoin ETF inflows hit $731M, highest since January as BTC reclaims $80K
Bitcoin reclaims $80K as DXY falls amid continuing suspected yen intervention
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 078
================================================================================================
@@ -26,6 +26,9 @@ DATABASE RECORD
notes the suspects went to the couple's home and managed to get them to let them in, then stole money, jewelry, watches and BTC
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Married Couple
@@ -26,6 +26,9 @@ DATABASE RECORD
notes the suspects lured them in with an investment proposal, took them to see the city and then stole from the victims
has_processed_date 0
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Swiss & German - Stephen and Maria
+9 -6
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes the gang broke into the business building to kidnap and torture the victim for 100 BTC
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Bank director
@@ -116,19 +119,19 @@ Investigations also found that reception staff were paid 7,000 reais to help the
“What caught the investigators attention was how easily the kidnappers gained access to the business building. The underground parking is reserved for residents, while the mezzanine floors above are for parking. There was significant facilitation. The second phase of the operation revealed that two security guards were bribed, after several meetings, to assist this action,” explained Berenguer.
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source oglobo.globo.com
URL https://oglobo.globo.com/politica/policia-de-pe-indicia-dez-pessoas-pelo-primeiro-sequestro-com-resgate-em-criptomoedas-cometido-no-pais-25045059
Field url
Retrieved 2026-09-05T12:54:02+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 17 paragraphs, untrimmed
Kept paragraphs headline [0] + 1-16 of 17
Length 4,055 chars
Integrity sha256 6aa42630d710d56bad64c05364fffbeab930cad7b318683d204fc0ab98b857b1
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 1-16 plus headline [0]; dropped 0 leading and 0 trailing paragraphs. Case-term hits on page: 2 (WEAK anchor, confirm the page is about this case).
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
+11 -46
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes they met in a parking lot and they snatched his phone after he showed them his wallet
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** 29 y/o Berlin man
@@ -68,19 +71,19 @@ Warrants were issued for three of the Bitcoin robbers. The investigation into th
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source stadtmagazin-muenchen24.de
URL https://www.stadtmagazin-muenchen24.de/bitcoin-raub-in-muenchen-taeter-erbeuten-virtuelles-geld-im-wert-von-knapp-100-000-euro-87276
Field url
Retrieved 2026-09-05T12:53:59+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 20 paragraphs, untrimmed
Length 2,815 chars
Integrity sha256 396311604a0d8dc1a0338d83ec7c2b001973513d20f64489c7f7a33fb409ff8a
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 4-10 of 20
Length 1,862 chars
Integrity sha256 bc4f92c52581377a28a953806630e0fcfe3605f04ad44764aaaad1dbff6a8aff
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 4-10 plus headline [0]; dropped 3 leading and 9 trailing paragraphs. Case-term hits on page: 4.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -89,18 +92,6 @@ ORIGINAL (unknown, verbatim as retrieved)
Bitcoin-Raub in München: Täter erbeuten virtuelles Geld im Wert von knapp 100.000 Euro - Stadtmagazin München 24
Feldmoching
M24 News
Polizeireport
Bitcoin-Raub in München: Täter erbeuten virtuelles Geld im Wert von knapp 100.000 Euro
1. April 2021
Bitcoin, Bitcoin gestohlen, Bitcoins, Dülferstraße, Raub
Ein 29-Jähriger aus Berlin wollte am Dienstag auf einem Parkplatz in München-Feldmoching einen Handel mit Bitcoins abwickeln. Als er den vermeintlichen Käufern auf dem Handy das Wallet mit einem hohen fünfstelligen Betrag durch das Vorzeigen nachweisen wollte, wurde ihm das Smartphone entrissen. Die vier Täter flohen daraufhin mit zwei Autos. Die Polizei konnte die Männer aus dem Landkreis Mühldorf stellen und verhaften.
Bereits am Dienstag, 16. März 2021, gegen 19 Uhr, hat sich ein 29-Jähriger aus Berlin auf einem Parkplatz in der Dülferstraße in München-Feldmoching mit zwei unbekannten Männern getroffen. Es ging um ein Bitcoin-Geschäft. Der Berliner entsperrte sein Smartphone und zeigte den Männern den Inhalt seiner elektronischen Geldbörse, dem sogenannten Wallet, in der ein Betrag im hohen fünfstelligen Bereich ausgewiesen war.
@@ -115,32 +106,6 @@ Aktuell informiert bleiben?
Wollen Sie wissen, was in München los ist?
Dann abonnieren Sie den Newsletter M24 aktuell vom Stadtmagazin München 24.
München: Brandanschlag auf Rüstungsfirma
Fotostrecke Hofbräu Sommerfest im Biergarten Chinesischer Turm
Fotostrecke Brunnenfest 2026 am Viktualienmarkt in München
Schon gelesen ?
Berg am Laim
M24 News
Polizeireport
Biergarten
Englischer Garten
M24 News
Spektakulärer Großbrand in Supermarkt in Thalkirchen
Diese Website verwendet Cookies, um Ihnen ein besseres Nutzererlebnis zu bieten und unsere Dienste zu verbessern. Wir verwenden Cookies für [z.B. Analyse, Personalisierung, Werbung]. Sie können Ihre Cookie-Einstellungen jederzeit anpassen und Ihre Einwilligung widerrufen. Möchten Sie zustimmen? Mehr erfahren in der Datenschutzerklärung
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 082
================================================================================================
+3
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes fake p2p trade. phone and cash stolen
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** "F.T."
+11 -10
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes failed attempt. attacked pepper sprayed victim, who he shot a gun at the air and near one of the suspect's feet, they fled
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** 35 year old miner
@@ -72,19 +75,19 @@ All participants in the crime are residents of Dnipropetrovsk region, born in 19
A criminal case was opened under Article 15 Part 2 (Attempted Crime) and Article 186 Part 2 (Robbery) of the Criminal Code of Ukraine. The decision is being made to notify the suspects of suspicion and to choose a preventive measure in the form of detention.
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source zbroya.info
URL https://zbroya.info/uk/blog/20398_na-zaporizhzhi-mainer-dav-zbroinu-vidsich-grabizhnikam/
Field url
Retrieved 2026-09-05T12:53:53+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 15 paragraphs, untrimmed
Length 2,129 chars
Integrity sha256 8a197e9a0e0ecf2f5ca6cc77989defc6f9f5c47682b3f925102b2724006e196d
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 1-13 of 15
Length 2,071 chars
Integrity sha256 5ddda3871fa25464d0e8ed69399684bc32d2c5a49ea7b017c708d0ad8a553adb
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 1-13 plus headline [0]; dropped 0 leading and 1 trailing paragraphs. Case-term hits on page: 4.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -120,8 +123,6 @@ ORIGINAL (unknown, verbatim as retrieved)
Обычный Форт-12рм, что там от наградного?))
Будь ласка, залогіньтесь щоб мати можливість коментувати
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 084
================================================================================================
+11 -34
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes the suspect stole bank cards, jewerly, cripto keys, and laptops
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Undisclosed
@@ -110,19 +113,19 @@ Police have shared a photo of the suspect from that ABM near the intersection of
According to police, the alleged victim suffered non-life-threatening injuries.
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source calgaryherald.com
URL https://calgaryherald.com/news/crime/police-seek-suspects-in-canyon-meadows-home-invasion
Field url
Retrieved 2026-09-05T12:53:51+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 20 paragraphs, untrimmed
Length 2,450 chars
Integrity sha256 61f25f82de44607e1c952cdfc56b86deb520c7fd5fef59ea18afed97510e24ff
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 1-6 of 20
Length 851 chars
Integrity sha256 7a9c9fdfc7a760491796c481832131792007c6ce1770e2a9361a70023ba6ee7e
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 1-6 plus headline [0]; dropped 0 leading and 13 trailing paragraphs. Case-term hits on page: 9.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -143,32 +146,6 @@ The men forced the victim to disclose his bank PINs, then put him in a storage r
Your weekday lunchtime roundup of curated links, news highlights, analysis and features.
By signing up you consent to receive the above newsletter from Postmedia Network Inc.
Thanks for signing up!
A welcome email is on its way. If you don't see it, please check your junk folder.
The next issue of Noon News Roundup will soon be in your inbox.
We encountered an issue signing you up. Please try again
Interested in more newsletters? Browse here.
The victim, who sustained minor injuries, was able to free himself and call 911, police said.
A man later used one of the victims bank cards to withdraw money at an ATM in Crescent Heights, near the intersection of 12th Avenue and Centre Street N.E. The ATM recorded an image of the man, who is unknown to the victim.
Anyone with information on the crime or the suspects is urged to call the police non-emergency line at 403-266-1234. Anonymous tips can also be submitted to Crime Stoppers at 1-800-222-8477 or calgarycrimestoppers.org.
This advertisement has not loaded yet.
You must be logged in to join the discussion or read more comments.
Postmedia is committed to maintaining a lively but civil forum for discussion. Please keep comments relevant and respectful. Comments may take up to an hour to appear on the site. You will receive an email if there is a reply to your comment, an update to a thread you follow or if a user you follow comments. Visit our Community Guidelines for more information.
This website uses cookies to personalize your content (including ads), and allows us to analyze our traffic. Read more about cookies here. By continuing to use our site, you agree to our Terms of Use and Privacy Policy.
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 085
================================================================================================
+9 -6
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes they kidnapped him after seeing social media posts that suggested he had made “a reasonable amount of money” from trading in bitcoin
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** 14 y/o boy
@@ -97,19 +100,19 @@ Det Con Paul Maxwell said the boy was "vulnerable to criminal exploitation" and
He added: "This was an incredibly distressing incident for both the victim and the victim's mother, but thankfully both were not injured during the incident and have been given help and support by the police and partner agencies."
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source bbc.com
URL https://www.bbc.com/news/uk-england-leeds-58929107
Field url
Retrieved 2026-09-05T12:53:49+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 8 paragraphs, untrimmed
Kept paragraphs headline [0] + 1-7 of 8
Length 1,006 chars
Integrity sha256 bd5642c3a255f79eec800be60da33c88f48957d89f7a0accd5ffa2e94728e7fd
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 1-7 plus headline [0]; dropped 0 leading and 0 trailing paragraphs. Case-term hits on page: 8.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
+11 -109
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes a woman lured him through a dating app, after the man mentioned his crypto. they went to the motel where she drugged him
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** 40 y/o man
@@ -65,19 +68,19 @@ The court and presiding judge Hwang In-seong found A guilty of robbery, threaten
The judge stated that the sentence was justified due to the fact that the amount of crypto holdings stolen was high, and that A had attempted to sow the seeds of confusion in the ensuing police investigation.
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source cryptonews.com
URL https://cryptonews.com/news/woman-20-gets-5-year-jail-term-after-stealing-usd-87k-worth-of-crypto-from-man-in-dating-app-scam/
Field url
Retrieved 2026-09-05T12:53:45+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 52 paragraphs, untrimmed
Length 5,307 chars
Integrity sha256 be4dc7f2f713ed37193375da9a20de1789d1349532adcc4bf8ec35d46a0de1d0
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 8-15 of 52
Length 1,840 chars
Integrity sha256 355060f77848fa9ae13782da33bef6a5b8550ed791211520d1606a278977f7a6
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 8-15 plus headline [0]; dropped 7 leading and 36 trailing paragraphs. Case-term hits on page: 13.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -86,35 +89,6 @@ ORIGINAL (unknown, verbatim as retrieved)
Woman Gets 5-year Jail Term After Stealing USD 87K Worth of Crypto in Dating App Scam
Crime
Cryptocurrency
Scam
South Korea
Tim Alper is a British journalist and features writer who has worked at Cryptonews.com since 2018. He has written for media outlets such as the BBC, the Guardian, and Chosun Ilbo. He has also worked...
Naver-Dunamu Crypto Mega-Company Could Be Worth $2.1B a Year Experts
Russia Losing Millions of Dollars a Year to Illegal Crypto Miners Report
Russian Economist: BTC Will Hit $120k-$130k Again Before End of Year
Russias Central Bank: Tokenization Will Let Foreigners Buy Domestic Shares
S Korean Tax Agency: Pay Your Bills or Well Take Your Crypto Cold Wallets
A South Korean woman who met a man on a smartphone chat app, drugged him, and stole USD 87,000 in crypto from his phone has been sentenced to five years in prison.
Per Newsis, the Suwon District Court heard how a 20-year-old woman (named by the court as A) met a man via an app and then arranged to meet him on June 10, 2021. In the early hours of June 11, the duo went to a “love motel” in Gyeonggi Province. The man, who is in his 40s and was named by the court as B, had told A about the scale of his crypto holdings during their conversation on the chat app platform.
@@ -131,78 +105,6 @@ The court and presiding judge Hwang In-seong found A guilty of robbery, threaten
The judge stated that the sentence was justified due to the fact that the amount of crypto holdings stolen was high, and that A had attempted to sow the seeds of confusion in the ensuing police investigation.
Wave of Crypto Muggings Hits Londons Financial District
Norwegian Police Warn Crypto Owners After Armed Robbery in Sweden
Asian Lonely Hearts Falling Victim to Bitcoin, Tether Scammers
Impostors Make Deep Fake Videos of Ordinary More Believable People to Promote Crypto Scams
NFT Self Defense: Staying Safe in Web3
American Entrepreneur Tortured by Gang Trying to Steal His Bitcoin
Man Murdered as Crypto Miners Bid to Protect Rigs Turns Deadly
Crypto Traders Murder Blamed On Social Media Bragging
Hong Kong Crypto Robbers Strike Again: Gang Makes off with 450k Tether Haul
Police in Latvia Thwart Brutal Crypto Theft and Murder Plot
XRP Price Analysis: Wealth Managers Show Growing Interest in XRP
XRP Price Prediction: Ripple Edges Bitcoin In South Korea
XRP News: Ripple Rallies on Fed Dovish Tone, $10 Dream Returns
Where Could XRP Price Go This September as CLARITY Act Nears?
SEC Chair Paul Atkins Sets September 15 Senate Vote for CLARITY Act
Ethereum Price Suppressed as Selling Pressure Mounts
Ripple News: BIS Turns to XRP Ledger for 35 Second Data Verification
Ethereum News: Double Three Pattern Hints at Another Rally
Best Crypto to Buy Now in September 2026 Top Crypto to Invest In
New Cryptocurrencies to Invest in Today Top New Crypto Coins
8 Best Crypto Presales in September 2026
Early Access to 6 New & Upcoming Coinbase Listings in September 2026
10 New & Upcoming Binance Listings in 2026
Next Crypto to Explode in 2026 Our Top Picks
Bitcoin (BTC) Price Prediction 2026, 2027 2030
XRP (XRP) Price Prediction 2026, 2027 2030
Ethereum Price Prediction 2026, 2027 2030
At Cryptonews, we aim to make cryptocurrency, blockchain, and Web3 understandable, and information available to everyone, no matter what level you are in your investment journey. Founded in 2017, Cryptonews has been dedicated to delivering reliable, multilingual coverage of the cryptocurrency industry.
Discover trending tokens still in presale — early-stage picks with potential.
Smart tools made for everyday crypto users
Bitcoin FOMC Outlook Shifts: BTC Eyes $92K as Scalability Projects Gain Momentum
Bitcoin ETF News: BlackRock IBIT Captures 62% of Inflows
Tim Alper is a British journalist and features writer who has worked at Cryptonews.com since 2018. He has written for media outlets such as the BBC, the Guardian, and Chosun Ilbo. He has also worked on media projects with Samsung, Sony, LG, Hyundai, Korean Air, Microsoft, Accenture, and more. His crypto-related articles have also been published on The Motley Fool and FXEmpire.
Get dialed in every Tuesday & Friday with quick updates on the world of crypto
Enter your email for our free Newsletter
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 088
================================================================================================
+11 -16
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes they targeted the victim, sprayed his eyes with a pepper spray-like substance, and stole his bag with cash
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** 22 y/o man
@@ -68,19 +71,19 @@ On January 4, a gang of robbers lured a 37-year-old man to transfer bitcoin valu
Two weeks later, another gang lured a female trader to an office in Kwun Tong for a transaction and robbed her of HK$3.5 million at knifepoint.
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source scmp.com
URL https://www.scmp.com/news/hong-kong/law-and-crime/article/3137401/hong-kong-cryptocurrency-trader-targeted-hk2-million
Field url
Retrieved 2026-09-05T12:53:43+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 11 paragraphs, untrimmed
Length 1,563 chars
Integrity sha256 e3497776882b210ca8c73434faf8970992ca5db09f136d18bcd43c2e5e35dd99
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 5-10 of 11
Length 1,182 chars
Integrity sha256 b4318b0c6c5a32a7cbceee0f443e9641d4820fe1d5adcfdbd9f42938560dba53
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 5-10 plus headline [0]; dropped 4 leading and 0 trailing paragraphs. Case-term hits on page: 14.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -89,14 +92,6 @@ ORIGINAL (unknown, verbatim as retrieved)
Hong Kong cryptocurrency trader targeted in HK$2 million robbery, sparking citywide hunt for suspects | South China Morning Post
Hong Kong cryptocurrency trader targeted in HK$2 million robbery, sparking citywide hunt for suspects
Assailants sprayed unknown substance in 22-year-old victims eyes during attack in Kwun Tong, before grabbing bag full of cash
Police say gang fled in white car which they later abandoned before running away on foot
Published: 8:14pm, 15 Jun 2021Updated: 8:52pm, 15 Jun 2021
A citywide police hunt is under way for a gang of thieves after a cryptocurrency trader was sprayed in his eyes with an unknown substance and robbed of HK$2 million while he was on his way to buy bitcoin in Hong Kong on Tuesday.
The suspects struck in broad daylight in the car park of Legend Tower on Shing Yip Street in Kwun Tong, shortly before 4.30pm.
+11 -22
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes three man pretended to be technicians in green vests, knocked on door, forced themselves inside and beat the victim to get password to his crypto coins
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** 39 y/o man
@@ -78,19 +81,19 @@ Cryptocurrency 'Frozen'
Cryptocurrency transactions are public, allowing the police to track where the coins have been in the past months and their current location. The investigative team has managed to 'freeze' part of the stolen cryptocurrency, preventing the criminals from accessing it. The next step is to retrieve these coins and return them to the victim.
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source opsporingverzocht.avrotros.nl
URL https://opsporingverzocht.avrotros.nl/zaken/item/overvallers-aan-de-haal-met-waardevolle-cryptomunten/
Field url
Retrieved 2026-09-05T12:53:38+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 22 paragraphs, untrimmed
Length 2,469 chars
Integrity sha256 2a10be56ae38bf8e675e828a56429f5faac24a9bf7bc0f0f64a9dd6b64ba4f25
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 2-15 of 22
Length 2,119 chars
Integrity sha256 a41e1b1697bc73682e3be5bfc8106dea6f8f28296d2e2c49741ff27b1de515fb
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 2-15 plus headline [0]; dropped 1 leading and 6 trailing paragraphs. Case-term hits on page: 4.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -99,8 +102,6 @@ ORIGINAL (unknown, verbatim as retrieved)
Overvallers aan de haal met waardevolle cryptomunten | Opsporing Verzocht
Overvallers aan de haal met waardevolle cryptomunten
De 39-jarige bewoner van een appartement aan de Coopmansstraat in Leeuwarden werd op 24 juni 2021 zwaar mishandeld tijdens een overval. De drie daders zijn ruim een uur binnen geweest en maakten waardevolle cryptomunten buit.
Rond 20.40 uur die donderdag werd bij het slachtoffer aangebeld. Drie mannen in groene jacks deden zich voor als storingsmonteurs en vroegen of hij een storing had. Voor hij het wist werd hij bij zijn keel gegrepen en hardhandig de woonkamer in gesleurd, waar hij werd mishandeld. De bewoner moest onder bedreiging de code voor toegang tot zijn cryptomunten geven.
@@ -129,18 +130,6 @@ Geef je tip online door via het tipformulier van de politie.
Veeg met twee vingers om de kaart te verschuiven.
Maurice van der Veen (54) om het leven gebracht
Dader op beeld die brand stichtte bij woning burgemeester
Eigenaar snackbar jaagt overvaller de deur uit
Politie vindt botresten van onbekende man
Unieke sieraden gestolen bij inbraak familiebedrijf
Dappere vrouw werkt overvaller naar buiten
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 090
================================================================================================
+214 -3
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes they watched the victim for 10 days and stopped him with fake IDs before forcing him into a car . cash stolen too
has_processed_date 0
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Unidentified man
@@ -73,9 +76,217 @@ The verdict is not yet legally binding.
OTHER LINKED SOURCES
[DEAD] url None — raw request refused; try the WebFetch path, which is a model transcription and must be labelled as such
https://epp.genproc.gov.ru/web/proc_55/mass-media/news?item=85667782
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
Source epp.genproc.gov.ru
URL https://epp.genproc.gov.ru/web/proc_55/mass-media/news?item=85667782
Field url
Retrieved 2026-09-05T13:31:00+00:00 via Wayback Machine snapshot 20240405180639, deterministic extraction (HTTP None)
Language unknown
Kept paragraphs ALL 46 paragraphs, untrimmed
Length 2,619 chars
Integrity sha256 144fa714aefb2ff0ba9e28105db4644260fa8e6c6b6214282debdf6ed968cb8e
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Note live URL was DEAD on the first pass; text comes from an archived copy dated 2024-04-05
Archive http://web.archive.org/web/20240405180639/https://epp.genproc.gov.ru/web/proc_55/mass-media/news?item=85667782
Caveat retrieved from a Wayback Machine snapshot, not the live page. The
snapshot date is in the method line; the live URL was unreadable.
------------------------------------------------------------------------------------------------
ORIGINAL (unknown, verbatim as retrieved)
О прокуратуре
Структура
Руководство
График приема граждан
Кадровое обеспечение
Государственные закупки
300 лет прокуратуре России
Деятельность
Противодействие коррупции
ЕРКНМ/ЕРП. Поиск КНМ/Сводный план
Статистические данные
Защита прав ветеранов
Правовое просвещение
Защита прав детей
Документы
Нормативные акты
Правовые основы деятельности
Для СМИ
Новости
Мероприятия и встречи
Интервью и выступления
Медиафайлы
Аккредитация СМИ
Конкурс
Интернет-приемная
Обращение в прокуратуру
Уведомления об экстремизме
Запись на прием
Контакты
Прокуратура Октябрьского административного округа г. Омска
В Омске вынесен приговор по уголовному делу о разбойном нападении с причинением ущерба на сумму более 87 млн рублей
Октябрьский районный суд г. Омска вынес приговор по уголовному делу в отношении 3 жителей Москвы и Московской области. Двое из них признаны виновными в совершении преступления, предусмотренного пп. «а», «б» ч. 4 ст. 162 УК РФ (разбой), ч. 4 ст. 327 УК РФ (использование поддельных документов), а третий – по ч. 4 ст. 159 УК РФ (мошенничество).
В суде установлено, в июле 2021 г. данные лица, получив информацию о том, что житель г. Омска имеет в собственности значительные средства в криптовалюте, прибыли в город и в течение 10 дней вели за ним наблюдение, выясняя маршруты передвижения и распорядок дня.
В один из дней они остановили потерпевшего на улице, предъявили поддельные удостоверения, после чего посадили мужчину в автомобиль и принудили передать им 3 млн рублей и перевести более 84 млн рублей в криптовалюте.
С места нападения злоумышленники скрылись и распорядились похищенным по своему усмотрению.
В результате оперативно-розыскных мероприятий они были задержаны, вину в совершении преступлений не признали.
Суд приговорил указанных лиц к лишению свободы на срок от 6 лет 6 месяцев до 9 лет с отбыванием наказания в исправительной колонии строгого режима.
Кроме того, суд обязал их в полном объеме возместить причиненный потерпевшему ущерб.
Приговор в законную силу не вступил.
© 2003-2024 Прокуратура Октябрьского административного округа г. Омска
Адрес:
644021, Омская область, г. Омск, ул. 9-я Линия, д. 161
© 2003-2024 Генеральная прокуратура Российской Федерации
Обычная версия
Черно-белая версия
Бело-черная версия
Зелено-коричневая версия
Синяя версия
Обычный шрифт
Увеличенный шрифт 1.5
Увеличенный шрифт 2
Обычный
Большой
Очень большой
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 091
+11 -22
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes Woman posed as crypto trader on Tinder, went home with man, scoped his drink. He woke up a day later and found that phone and possessions were stolen along with small amount of crypto from exchange account - cold storage was attempted to be but stolen since it was well-protected with Casa
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Unidentified man
@@ -123,19 +126,19 @@ I suspect that the majority of physical attack victims do not publicize what hap
We must learn from individual failures so that others do not repeat the mistakes of the past. If you have been a victim of a physical attack, especially one with novel attributes, I encourage you to contact us at incidents@team.casa. I am happy to publish privacy preserving case studies so that we can continue strengthening security best practices for Bitcoiners.
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source cryptonews.com.au
URL https://cryptonews.com.au/news/tinder-date-goes-bad-in-attempted-crypto-grab-91283/
Field url
Retrieved 2026-09-05T12:53:31+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 18 paragraphs, untrimmed
Length 3,720 chars
Integrity sha256 f35f1773450090b15ccf64294464d15b0efad785848974d6d3e3f44df76a19b3
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 4-14 of 18
Length 3,348 chars
Integrity sha256 778784751e42e7b07acdb0965a74e3eab5271d3739ac0820e9b1d94bdf31c3db
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 4-14 plus headline [0]; dropped 3 leading and 3 trailing paragraphs. Case-term hits on page: 8.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -144,14 +147,6 @@ ORIGINAL (unknown, verbatim as retrieved)
Tinder Date Goes Bad in Attempted Crypto Grab - Crypto News Australia
Home BitcoinTinder Date Goes Bad in Attempted Crypto Grab
Tinder Date Goes Bad in Attempted Crypto Grab
By Ben Carey
July 10, 2021
In Bitcoin, Crime, Crypto News, Scams
A US man was drugged by a woman he met on Tinder who then attempted to steal his crypto.
The man, who was a client of Casa, a company that offers heightened Bitcoin security, reported the attempted robbery to the Casa team, who performed a postmortem on the incident.
@@ -174,12 +169,6 @@ Crypto News Australia has put together an excellent guide on how to avoid Bitcoi
Ben Carey is a Brisbane-based writer, with a wide range of experience, from copywriting to game design and film and tv scriptwriting. He's been following, investing, and trading crypto since 2017. He has three lambos (in Gran Turismo), and can often be seen around town wearing a Bitcoin or Ethereum themed Christmas sweater.
Coldcard Hacker Starts Swapping Stolen Bitcoin for Ether
Bitcoin Breaks $80K as Mass Short Liquidations Fuel Crypto Rally
Bitcoin ETFs Stage Comeback While XRP Funds Rack Up 11-Day Inflow Streak
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 092
================================================================================================
@@ -26,6 +26,9 @@ DATABASE RECORD
notes Authority Misuse AND Armed Robbery.
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Morakinyo Peter & Yusuf Dayo
@@ -92,19 +95,19 @@ Speaking on the incident, a human rights lawyer, Adegbola Odunyemi asked the Ins
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source saharareporters.com
URL https://saharareporters.com/2021/12/19/reavealed-identities-rogue-police-officers-who-extorted-n22million-worth-bitcoin-young
Field url
Retrieved 2026-09-05T12:53:29+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 22 paragraphs, untrimmed
Length 4,767 chars
Integrity sha256 c02c66a6b7b1be4dc3a9dae8c8f176f27ec80a3871f593f7678e771b312b2281
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs 0-21 excl [1, 2] of 22
Length 4,761 chars
Integrity sha256 7cf3541a2b5732428b921702ffdda1cdcb4906cd88970d2e7b0bfda30abe9545
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 0-21; dropped 0 leading and 0 trailing paragraphs and 2 interior furniture line(s). Case-term hits on page: 30.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -114,11 +117,6 @@ ORIGINAL (unknown, verbatim as retrieved)
REAVEALED: Identities Of Rogue Police Officers Who Extorted N22million Worth Of Bitcoin From Young Men At Gunpoint In Lagos | Sahara Reporters
+11 -16
View File
@@ -26,6 +26,9 @@ DATABASE RECORD
notes Cut his hand with a knife, he was hospitalized.
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** 39 y/o man
@@ -72,19 +75,19 @@ On January 4, a gang tricked a 37-year-old man into transferring more than HK$3
Two weeks later, another gang lured a female trader to an office in Kwun Tong for a transaction and robbed her of HK$3.5 million at knifepoint.
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source scmp.com
URL https://www.scmp.com/news/hong-kong/law-and-crime/article/3142919/bitcoin-trader-robbed-hk3-million-cash-when-sellers
Field url
Retrieved 2026-09-05T12:53:27+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 10 paragraphs, untrimmed
Length 1,487 chars
Integrity sha256 db1581127b1a9721437fab8f3ead39d363f9dd28cfeea1daa0f5790b58f40d06
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 5-9 of 10
Length 1,151 chars
Integrity sha256 8f6d627a022f43b46f3f30aed8e2bdf98f05383b2e6aed3889e923e4a9e61b1b
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 5-9 plus headline [0]; dropped 4 leading and 0 trailing paragraphs. Case-term hits on page: 22.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -93,14 +96,6 @@ ORIGINAL (unknown, verbatim as retrieved)
Bitcoin trader robbed of HK$3 million in cash when sellers in Hong Kong show up with knife | South China Morning Post
Bitcoin trader robbed of HK$3 million in cash when sellers in Hong Kong show up with knife
The 39-year-old trader from South Korea arrived for the exchange on Ashley Road in Tsim Sha Tsui
Armed gang snatches bag of cash he is carrying, cuts victims hand and then flees
Published: 11:09pm, 28 Jul 2021Updated: 3:18am, 29 Jul 2021
A cryptocurrency trader was robbed of more than HK$3 million (US$128,500) in cash at knifepoint when he went to meet a bitcoin seller in Hong Kong on Wednesday afternoon.
The 39-year-old trader from South Korea arrived at Astoria Building on Ashley Road in Tsim Sha Tsui for the exchange at about 6.20pm. He was approached by four men, one of whom attacked him with the knife.
@@ -26,6 +26,9 @@ DATABASE RECORD
notes Flaunted his wealth on social media and in person, and was shot and killed while driving in his fancy car in Brazil
has_processed_date 1
created_at 2025-11-13 05:44:45
(flag legend: 'kidnappings' is the DETENTION flag — 1 when the victim was held against
their will at any point, tied, locked in, held at gunpoint or taken away; it is NOT the
same as the 'Kidnapping' scenario, which means taken away and held. See README, Definitions.)
AI SUMMARY [generated at bulk import, NOT verified against sources]
**Victim:** Wesley Pessano Santarem
@@ -66,19 +69,19 @@ Last January, a trader in Hong Kong was robbed of nearly half a million dollars
And these are just a few of many reported attacks, threatening crypto traders'/holders' personal safety. It is not clear how many crypto-related attacks or attempted attacks have gone unreported.
------------------------------------------------------------------------------------------------
FETCHED ARTICLE 1 [RAW EXTRACT — NOT YET TRIMMED]
!! This is the whole page as extracted. It still contains site furniture,
!! and may contain teaser headlines for UNRELATED cases. Trim on read-through.
!! Do not quote from it without checking the passage belongs to this case.
FETCHED ARTICLE 1 [AUTO-TRIMMED — UNREVIEWED]
!! Furniture was cut by a script keyed on this case's record, not by a person.
!! It may still carry passages about OTHER cases from a round-up article.
!! The full page extract is kept in staging/ if a cut needs revisiting.
Source cryptonews.com
URL https://cryptonews.com/news/crypto-trader-s-murder-blamed-on-social-media-bragging-11376/
Field url
Retrieved 2026-09-05T12:53:24+00:00 via raw HTTP retrieval, deterministic extraction (HTTP 200)
Language unknown
Kept paragraphs ALL 45 paragraphs, untrimmed
Length 5,134 chars
Integrity sha256 d92cc43bea5bd5f77f4f40fc04029ba40c519dcbc01e6666cb4f9cda61bb30a9
Trimmed NOT TRIMMED. Full page extract; trim on read-through.
Kept paragraphs headline [0] + 2-13 of 45
Length 2,898 chars
Integrity sha256 4d6bbfa7c4e2925b64e46ef26bc52c731b5a8267e29323db79481441cf0821ff
Trimmed AUTO-TRIMMED, unreviewed: kept paragraphs 2-13 plus headline [0]; dropped 1 leading and 31 trailing paragraphs. Case-term hits on page: 31.
Caveat retrieved from a live page on the date above. Unlike text copied
from the spreadsheet, there is no second copy to hash it against.
------------------------------------------------------------------------------------------------
@@ -87,32 +90,6 @@ ORIGINAL (unknown, verbatim as retrieved)
Crypto Traders Murder Blamed On Social Media Bragging
Brazil
Crime
Cryptocurrency
Latin America
Security
Trading
Three Arrows Capital Liquidators Request Contempt Sanctions for Co-Founder Kyle Davies What's Going On?
Latin American Crypto Holders Shift to Bitget Exchange Following Binance and Coinbase SEC Crackdown
@@ -137,68 +114,6 @@ Last January, a trader in Hong Kong was robbed of nearly half a million dollars
And these are just a few of many reported attacks, threatening crypto traders/holders personal safety. It is not clear how many crypto-related attacks or attempted attacks have gone unreported.
Regulators Take Notice as Bragging Crypto Derivatives Traders Get Caught
Police in Latvia Thwart Brutal Crypto Theft and Murder Plot
Crypto Scammers Now Stalking Dating Apps Like Tinder for Prey
Flood of Crypto Scam Cases Hit Spanish Courts
7-Eleven Branch Workers Thwart Crypto Fraudsters
Cybercriminal Bitcoin Billionaire JokerStash Retires
XRP Price Analysis: Wealth Managers Show Growing Interest in XRP
XRP Price Prediction: Ripple Edges Bitcoin In South Korea
XRP News: Ripple Rallies on Fed Dovish Tone, $10 Dream Returns
Where Could XRP Price Go This September as CLARITY Act Nears?
SEC Chair Paul Atkins Sets September 15 Senate Vote for CLARITY Act
Ethereum Price Suppressed as Selling Pressure Mounts
Ripple News: BIS Turns to XRP Ledger for 35 Second Data Verification
Ethereum News: Double Three Pattern Hints at Another Rally
Best Crypto to Buy Now in September 2026 Top Crypto to Invest In
New Cryptocurrencies to Invest in Today Top New Crypto Coins
8 Best Crypto Presales in September 2026
Early Access to 6 New & Upcoming Coinbase Listings in September 2026
10 New & Upcoming Binance Listings in 2026
Next Crypto to Explode in 2026 Our Top Picks
Bitcoin (BTC) Price Prediction 2026, 2027 2030
XRP (XRP) Price Prediction 2026, 2027 2030
Ethereum Price Prediction 2026, 2027 2030
At Cryptonews, we aim to make cryptocurrency, blockchain, and Web3 understandable, and information available to everyone, no matter what level you are in your investment journey. Founded in 2017, Cryptonews has been dedicated to delivering reliable, multilingual coverage of the cryptocurrency industry.
Discover trending tokens still in presale — early-stage picks with potential.
Smart tools made for everyday crypto users
Bitcoin FOMC Outlook Shifts: BTC Eyes $92K as Scalability Projects Gain Momentum
Bitcoin ETF News: BlackRock IBIT Captures 62% of Inflows
Get dialed in every Tuesday & Friday with quick updates on the world of crypto
Enter your email for our free Newsletter
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.
================================================================================================
generated from attacks-export-Gart-website.json + reported_K&R | case 096
================================================================================================

Some files were not shown because too many files have changed in this diff Show More