<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: BaffiSan</title>
    <description>The latest articles on DEV Community by BaffiSan (@baffisan).</description>
    <link>https://dev.to/baffisan</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4119121%2F1e156857-7b65-481a-8253-c6f13bd9fd30.png</url>
      <title>DEV Community: BaffiSan</title>
      <link>https://dev.to/baffisan</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/baffisan"/>
    <language>en</language>
    <item>
      <title>Why JavaScript can read your behavioral identity — and what HOLogram does about it</title>
      <dc:creator>BaffiSan</dc:creator>
      <pubDate>Thu, 10 Sep 2026 12:27:26 +0000</pubDate>
      <link>https://dev.to/baffisan/why-javascript-can-read-your-behavioral-identity-and-what-hologram-does-about-it-pjo</link>
      <guid>https://dev.to/baffisan/why-javascript-can-read-your-behavioral-identity-and-what-hologram-does-about-it-pjo</guid>
      <description>&lt;p&gt;Every page you visit runs JavaScript.&lt;/p&gt;

&lt;p&gt;And that JavaScript is reading you — not just what you type,&lt;br&gt;
but &lt;em&gt;how&lt;/em&gt; you type it. The rhythm between keystrokes. The trajectory&lt;br&gt;
of your pointer. The micro-pauses in your scroll. The way your hand&lt;br&gt;
hesitates before clicking.&lt;/p&gt;

&lt;p&gt;These signals are called &lt;strong&gt;behavioral biometrics&lt;/strong&gt;. And they are today&lt;br&gt;
one of the most powerful identification tools available to tracking systems,&lt;br&gt;
AI classifiers, and fraud detection platforms.&lt;/p&gt;

&lt;p&gt;They work without cookies.&lt;br&gt;
They work across VPNs.&lt;br&gt;
They work even on Tor.&lt;br&gt;
Because they happen inside the page, before anything leaves your browser.&lt;/p&gt;




&lt;h2&gt;
  
  
  The threat no privacy tool addresses
&lt;/h2&gt;

&lt;p&gt;Most privacy tools protect the network layer:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;VPNs&lt;/strong&gt; hide your IP address&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;uBlock Origin&lt;/strong&gt; blocks known trackers&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Privacy Badger&lt;/strong&gt; stops cross-site tracking cookies&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Tor&lt;/strong&gt; anonymizes your traffic&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;None of them protect your behavioral signals — because those signals are&lt;br&gt;
collected by JavaScript running inside the page you're visiting,&lt;br&gt;
before any network request is made.&lt;/p&gt;

&lt;p&gt;A classifier trained on behavioral biometrics can identify you with&lt;br&gt;
high accuracy across sessions, across sites, and across devices —&lt;br&gt;
using only the way you interact with a keyboard and a mouse.&lt;/p&gt;

&lt;p&gt;This isn't theoretical. Behavioral biometrics systems are commercially&lt;br&gt;
deployed today for fraud detection, user tracking, and cross-site&lt;br&gt;
identity correlation. Companies like BioCatch, ThreatMetrix, and others&lt;br&gt;
offer this as a service to banks, e-commerce platforms, and publishers.&lt;/p&gt;




&lt;h2&gt;
  
  
  What HOLogram is
&lt;/h2&gt;

&lt;p&gt;HOLogram is an open protocol that introduces a &lt;strong&gt;local obfuscation layer&lt;/strong&gt;&lt;br&gt;
between the user and the page.&lt;/p&gt;

&lt;p&gt;It intercepts behavioral signals at the browser layer — before JavaScript&lt;br&gt;
can read them — and replaces them with a &lt;strong&gt;synthetic behavioral profile&lt;/strong&gt;&lt;br&gt;
that is functionally identical but behaviorally unidentifiable.&lt;/p&gt;

&lt;p&gt;The page receives correct input. It just doesn't receive &lt;em&gt;your&lt;/em&gt; input.&lt;/p&gt;

&lt;p&gt;The protocol is MIT licensed, local-only, zero-retention, and designed&lt;br&gt;
as a formalizable open standard — not a proprietary tool.&lt;/p&gt;




&lt;h2&gt;
  
  
  How it works: six independent modules
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. ShadowDOM Input Vault
&lt;/h3&gt;

&lt;p&gt;Intercepts native keyboard events (&lt;code&gt;keydown&lt;/code&gt;, &lt;code&gt;keyup&lt;/code&gt;, &lt;code&gt;keypress&lt;/code&gt;) before&lt;br&gt;
page scripts can read them. Removes micro-timing information —&lt;br&gt;
the inter-keystroke intervals that are the primary feature used by&lt;br&gt;
keystroke dynamics classifiers. Re-emits functionally identical&lt;br&gt;
synthetic events with timing information removed.&lt;/p&gt;

&lt;p&gt;The semantic content of what you type is preserved exactly.&lt;br&gt;
The temporal pattern is not.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Pointer &amp;amp; Scroll Normalizer
&lt;/h3&gt;

&lt;p&gt;Applies downsampling, coordinate quantization, and trajectory smoothing&lt;br&gt;
to mouse movement and scroll events. Reduces the granularity of pointer&lt;br&gt;
data to the level where individual identification becomes infeasible,&lt;br&gt;
while keeping movements natural-looking.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. Persona Mixer
&lt;/h3&gt;

&lt;p&gt;This is the key differentiator from naive noise injection.&lt;/p&gt;

&lt;p&gt;Instead of adding random noise — which is statistically detectable as noise —&lt;br&gt;
the Persona Mixer generates a &lt;strong&gt;session-consistent synthetic behavioral&lt;br&gt;
signature&lt;/strong&gt;. Each session gets a stable set of synthetic behavioral parameters:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;pointerJitterRange&lt;/code&gt; — magnitude of pointer micro-movements&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;scrollPauseProbability&lt;/code&gt; — probability of micro-pauses during scroll&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;typingLatencyOffset&lt;/code&gt; — offset applied to inter-keystroke intervals&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;smoothingAggressiveness&lt;/code&gt; — degree of trajectory smoothing&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;curvatureSoftening&lt;/code&gt; — reduction of sharp angular changes&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The output looks like a specific, plausible human — just not you.&lt;br&gt;
And not the same synthetic human across sessions.&lt;/p&gt;

&lt;h3&gt;
  
  
  4. Behavioral DP Engine
&lt;/h3&gt;

&lt;p&gt;Applies calibrated noise inspired by differential privacy principles&lt;br&gt;
to the real-time event stream. Reduces the sensitivity of the output&lt;br&gt;
to individual behavioral variations without making the output&lt;br&gt;
statistically implausible.&lt;/p&gt;

&lt;p&gt;Note: this is explicitly &lt;em&gt;inspired by&lt;/em&gt; differential privacy, not&lt;br&gt;
formal DP on static datasets. The whitepaper documents this distinction&lt;br&gt;
openly and considers it an area for future formalization.&lt;/p&gt;

&lt;h3&gt;
  
  
  5. Behavioral Privacy Budget
&lt;/h3&gt;

&lt;p&gt;Tracks the cumulative behavioral exposure per session. Every interaction&lt;br&gt;
has a cost — computed as a function of event type, frequency, geometric&lt;br&gt;
complexity, and entropy. When the budget approaches defined thresholds,&lt;br&gt;
the protocol escalates its obfuscation strategy automatically.&lt;/p&gt;

&lt;h3&gt;
  
  
  6. Exposure HUD
&lt;/h3&gt;

&lt;p&gt;A minimal, non-intrusive interface that shows the user their current&lt;br&gt;
protection level and which modules are active. Transparency as a feature.&lt;/p&gt;




&lt;h2&gt;
  
  
  Prior art: how HOLogram differs
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Kloak&lt;/strong&gt; (used in Whonix) is the closest existing tool. It operates&lt;br&gt;
at the OS/kernel level on Linux, requires root, and introduces random&lt;br&gt;
delays between physical events and their delivery to applications.&lt;br&gt;
It's a solid tool — but it's OS-level, not browser-native, requires root,&lt;br&gt;
doesn't generate session-consistent synthetic personas, and isn't a&lt;br&gt;
formalizable open standard. Kloak itself acknowledges it doesn't protect&lt;br&gt;
writing style, high-level cognitive behavior, or scroll patterns.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;MouseFaker&lt;/strong&gt; (Leiva et al., CHIIR 2021) is a research Chrome extension&lt;br&gt;
that applies adversarial noise to mouse coordinates. Mouse only, no&lt;br&gt;
session consistency, not actively maintained.&lt;/p&gt;

&lt;p&gt;These tools and HOLogram are complementary. None of them defines a formal&lt;br&gt;
open protocol with compliance tests and a community governance model.&lt;/p&gt;




&lt;h2&gt;
  
  
  Where we are — and what we need
&lt;/h2&gt;

&lt;p&gt;The whitepaper v1.0 is complete and notarized (SHA-256 + IPFS).&lt;br&gt;
The architecture is defined. The governance model, RFC process, and&lt;br&gt;
compliance test specification (HCT) are in place.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The reference implementation doesn't exist yet.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This is where you come in.&lt;/p&gt;

&lt;p&gt;We're looking for contributors with experience in:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Browser extension development&lt;/strong&gt; (Chrome/Firefox/Safari)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Privacy engineering&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Differential privacy applied to event streams&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Behavioral biometrics research&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Research and design contributions are equally welcome — not just code.&lt;br&gt;
Good first issues are open and ready to be picked up:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;[R-01]&lt;/code&gt; Survey browser APIs for input event interception&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;[R-02]&lt;/code&gt; Survey pointer and scroll event APIs across browsers&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;[R-03]&lt;/code&gt; Behavioral biometrics classifier survey&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;[R-04]&lt;/code&gt; DP libraries for real-time event streams&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;[R-05]&lt;/code&gt; Anti-bot system behavior analysis&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;[D-01]&lt;/code&gt; Define human plausibility ranges for Persona Mixer parameters&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Links
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;🌐 &lt;a href="https://www.hologramprotocol.org" rel="noopener noreferrer"&gt;hologramprotocol.org&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;📄 &lt;a href="https://www.hologramprotocol.org/download/" rel="noopener noreferrer"&gt;Whitepaper v1.0&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;💻 &lt;a href="https://github.com/BaffiSan/HOLogram" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;📋 &lt;a href="https://github.com/BaffiSan/HOLogram/issues?q=label%3Agood-first-issue" rel="noopener noreferrer"&gt;Good first issues&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;💬 &lt;a href="https://github.com/BaffiSan/HOLogram/discussions" rel="noopener noreferrer"&gt;GitHub Discussions&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;&lt;em&gt;HOLogram is an independent open project. No company, no VC, no advertising interest.&lt;br&gt;
Community-driven from day one.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>privacy</category>
      <category>opensource</category>
      <category>javascript</category>
      <category>security</category>
    </item>
  </channel>
</rss>
