<?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: Nikola Pavlović, PhD</title>
    <description>The latest articles on DEV Community by Nikola Pavlović, PhD (@nikolap994).</description>
    <link>https://dev.to/nikolap994</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%2F4005359%2F384c1c96-d398-4bd5-9c52-a443fd8e9c29.jpg</url>
      <title>DEV Community: Nikola Pavlović, PhD</title>
      <link>https://dev.to/nikolap994</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/nikolap994"/>
    <language>en</language>
    <item>
      <title>Building FoilSuite: A Privacy-First Security Toolkit for Browser and IoT Security</title>
      <dc:creator>Nikola Pavlović, PhD</dc:creator>
      <pubDate>Sat, 27 Jun 2026 22:45:03 +0000</pubDate>
      <link>https://dev.to/nikolap994/building-foilsuite-a-privacy-first-security-toolkit-for-browser-and-iot-security-o4j</link>
      <guid>https://dev.to/nikolap994/building-foilsuite-a-privacy-first-security-toolkit-for-browser-and-iot-security-o4j</guid>
      <description>&lt;h2&gt;
  
  
  Most phishing tools still rely on sending your data to the cloud.
&lt;/h2&gt;

&lt;p&gt;That means your “security solution” is often just another data collection point.&lt;/p&gt;

&lt;p&gt;So I built one that doesn’t do that at all.&lt;/p&gt;




&lt;h2&gt;
  
  
  Building FoilSuite: A Privacy-First Security Toolkit for the Browser and IoT
&lt;/h2&gt;

&lt;p&gt;As developers, we constantly trade security for convenience.&lt;/p&gt;

&lt;p&gt;We trust browsers to auto-fill credentials.&lt;br&gt;
We rely on centralized APIs to detect threats.&lt;br&gt;
We assume IoT devices will “just work” securely.&lt;/p&gt;

&lt;p&gt;But most of these assumptions break at the edge — where devices are constrained, attackers are creative, and privacy is usually an afterthought.&lt;/p&gt;

&lt;p&gt;That’s what led me to build FoilSuite.&lt;/p&gt;




&lt;h2&gt;
  
  
  🧠 Background
&lt;/h2&gt;

&lt;p&gt;My PhD research at Singidunum University focused on secure communication models for constrained IoT devices using blockchain-based trust mechanisms.&lt;/p&gt;

&lt;p&gt;The core idea was:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;How do we enable tamper-resistant, decentralized communication between constrained devices without relying on a central authority?&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;That research naturally expanded into a broader question:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;What does security look like when you remove trust in external infrastructure entirely?&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  🧩 The idea behind FoilSuite
&lt;/h2&gt;

&lt;p&gt;FoilSuite is a set of open-source, privacy-first security tools designed around three principles:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Everything runs locally when possible&lt;/li&gt;
&lt;li&gt;No external dependency for core security decisions&lt;/li&gt;
&lt;li&gt;Cryptographic guarantees over heuristic trust&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It currently consists of three tools:&lt;/p&gt;




&lt;h2&gt;
  
  
  🛡️ FoilGuard — On-device phishing detection
&lt;/h2&gt;

&lt;p&gt;FoilGuard is a Chrome extension that detects:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;phishing domains&lt;/li&gt;
&lt;li&gt;typosquatting&lt;/li&gt;
&lt;li&gt;homoglyph / Unicode impersonation attacks&lt;/li&gt;
&lt;li&gt;newly registered suspicious domains&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Key design decision:
&lt;/h3&gt;

&lt;p&gt;All detection logic runs entirely &lt;strong&gt;inside the browser&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;No API calls. No telemetry. No accounts.&lt;/p&gt;

&lt;p&gt;The goal is simple:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Your browsing data should never leave your device just to keep you safe.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  🔐 FoilVault — Zero-knowledge password manager with risk-aware autofill
&lt;/h2&gt;

&lt;p&gt;FoilVault is a password manager built on a zero-knowledge architecture.&lt;/p&gt;

&lt;p&gt;But it adds something most password managers don’t:&lt;/p&gt;

&lt;p&gt;Before autofill, it evaluates the &lt;strong&gt;current domain risk&lt;/strong&gt; using FoilGuard’s detection engine.&lt;/p&gt;

&lt;p&gt;If the domain is suspicious:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;autofill is blocked&lt;/li&gt;
&lt;li&gt;credentials are never exposed to the page&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Most credential theft doesn’t happen through brute force — it happens through UI deception.&lt;/p&gt;

&lt;p&gt;FoilVault is designed specifically to counter that.&lt;/p&gt;




&lt;h2&gt;
  
  
  🧪 FoilLab — Hands-on security lab
&lt;/h2&gt;

&lt;p&gt;FoilLab is a weekly security challenge platform focused on real-world attack scenarios:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;pcap network analysis&lt;/li&gt;
&lt;li&gt;IoT firmware reverse engineering&lt;/li&gt;
&lt;li&gt;log forensics&lt;/li&gt;
&lt;li&gt;incident reconstruction&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Each challenge is based on realistic attack patterns, followed by full walkthroughs.&lt;/p&gt;

&lt;p&gt;The goal:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Move from theoretical security knowledge → actual attacker/defender thinking.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  🔗 What connects all of this?
&lt;/h2&gt;

&lt;p&gt;All three tools share the same philosophy:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;local-first execution&lt;/li&gt;
&lt;li&gt;privacy-preserving design&lt;/li&gt;
&lt;li&gt;cryptographic primitives (AES-GCM-256, Argon2id, WebAuthn)&lt;/li&gt;
&lt;li&gt;open-source by default&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;But more importantly:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;They assume the browser and endpoint are part of the attack surface — not a trusted environment.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  🚀 Why I built it
&lt;/h2&gt;

&lt;p&gt;Most security tools today fall into two extremes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;enterprise platforms that are powerful but opaque&lt;/li&gt;
&lt;li&gt;lightweight extensions that are simple but shallow&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;FoilSuite is an attempt to sit in the middle:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;developer-friendly, privacy-first, and grounded in real security engineering.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  🌐 Project
&lt;/h2&gt;

&lt;p&gt;🔗 &lt;a href="https://foilsuite.netlify.app/" rel="noopener noreferrer"&gt;https://foilsuite.netlify.app/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Open-source feedback and contributions are welcome.&lt;/p&gt;




&lt;h2&gt;
  
  
  🧭 Final thoughts
&lt;/h2&gt;

&lt;p&gt;Security is not just about detection.&lt;/p&gt;

&lt;p&gt;It’s about where decisions are made.&lt;/p&gt;

&lt;p&gt;If your security model depends on sending sensitive data to a server, you’ve already expanded your attack surface.&lt;/p&gt;

&lt;p&gt;That assumption is what FoilSuite tries to challenge.&lt;/p&gt;




</description>
      <category>iot</category>
      <category>privacy</category>
      <category>security</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
