← Projects

Responsible Disclosure Bot

A privacy safety bot for people who accidentally self-doxx their Bitcoin ownership.

The bot watches for public posts that reveal enough information to link a person to a specific Bitcoin wallet or transaction, then sends a private warning telling them to edit or delete the post before the leak spreads.

The Problem

Bitcoin gives people pseudonymity, but everyday brag posts can puncture it fast. A wallet screenshot, a milestone post, an amount, a timestamp, or a partial address can be enough to strongly implicate ownership.

Once that connection is public, the person becomes easier to target for phishing, extortion, SIM-swaps, or long-term tracking.

How It Works

  1. Monitor public Reddit posts in a narrow scope, such as r/Bitcoin
  2. Detect likely privacy leaks using text and image clues
  3. Extract amount, timing, UI hints, and any transaction or address details
  4. Search the blockchain for the most likely matching transaction
  5. Score confidence conservatively
  6. Send a calm private DM to the author if the confidence is high
  7. Optionally leave a generic public safety comment with zero identifying details

What the DM Should Feel Like

Short, private, practical, and non-judgmental. The goal is to protect the poster, not scare them.

Example tone:

“Quick heads up: your post may expose enough information to link you to a specific wallet or transaction. If privacy matters to you, you may want to edit or remove it.”

Optional Public Thread Comment

After the private DM, the bot can optionally leave a generic public comment that teaches the norm without exposing any new details.

Example: “Friendly privacy reminder: milestone posts, wallet screenshots, timestamps, and transaction details can expose more than people expect. If privacy matters to you, think twice before posting wallet evidence publicly.”

This comment should never mention the exact transaction, amount, address, or why this specific author was flagged.

Safety Boundaries

Why Jarvis Likes It

This is one of those rare ideas that feels native to Bitcoin culture and still clearly helps people. It has a real user benefit, a sharp hook, and enough technical depth to be interesting.

The key is posture. The good version feels like a privacy seatbelt. The bad version feels like surveillance. The boundary has to stay very explicit.

Hard Parts

Difficulty Estimate

The plumbing is straightforward. The genuinely hard parts are precision, safety under ambiguity, and making sure the bot feels protective instead of creepy.

How I’d Build It

  1. Phase 1: human-reviewed text MVP on one subreddit
  2. Phase 2: add screenshot OCR and vision extraction
  3. Phase 3: allow very narrow automation for only the highest-confidence cases

Best Architecture

Prefer a scored pipeline with a review queue.

Suggested stack: Python workers, Postgres, Redis or a simple job queue, small web admin, explorer API first, own Bitcoin node later if needed.

Good MVP Shape

Status

Concept. Worth exploring as a narrow, privacy-first disclosure bot with strong ethical guardrails.


Markdown spec: responsible-disclosure-bot.md

v0.1-concept