惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

罗磊的独立博客
Google DeepMind News
Google DeepMind News
MyScale Blog
MyScale Blog
A
About on SuperTechFans
Martin Fowler
Martin Fowler
M
MIT News - Artificial intelligence
Recent Announcements
Recent Announcements
D
DataBreaches.Net
B
Blog
博客园 - 【当耐特】
爱范儿
爱范儿
有赞技术团队
有赞技术团队
P
Proofpoint News Feed
WordPress大学
WordPress大学
小众软件
小众软件
Apple Machine Learning Research
Apple Machine Learning Research
I
InfoQ
Engineering at Meta
Engineering at Meta
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Last Week in AI
Last Week in AI
Microsoft Azure Blog
Microsoft Azure Blog
雷峰网
雷峰网
量子位
G
Google Developers Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Building Mithridatium: Detecting Hidden Backdoors in ML M...
Pelumi Oluwa · 2026-05-07 · via DEV Community

As pretrained AI models become more common, one growing concern is whether those models can actually be trusted.

A model may appear completely normal during testing, but behave maliciously when exposed to a hidden trigger. These attacks are known as backdoor or poisoning attacks, and they represent a serious security risk for real-world AI systems.

This semester, our team built Mithridatium - an open-source framework designed to help detect hidden backdoors in pretrained machine learning models.

Mithridatium Landing Page

What is a Backdoor?

In simple terms, a backdoor attack hides malicious behavior inside an otherwise normal model.

Most of the time, the model behaves exactly as expected. But when a specific trigger appears in the input, the model changes its behavior in a way that benefits an attacker.

Imagine a self-driving vehicle that correctly recognizes stop signs during testing, but misclassifies them when a small sticker or visual trigger is placed on the sign. A hidden trigger like this could potentially cause extremely dangerous outcomes in real-world systems.

This problem becomes even more concerning because many developers rely heavily on pretrained models downloaded from external sources like Hugging Face or public repositories.

The question becomes:

How do we verify that a pretrained model has not been poisoned before deploying it?

That is the problem Mithridatium was designed to explore.

Example of a backdoor attack

What Mithridatium Does

Mithridatium is a framework for evaluating pretrained image classification models for potential backdoor behavior.

The framework allows users to:

  • Load local checkpoints or Hugging Face models
  • Run multiple backdoor detection defenses
  • Generate structured JSON reports
  • Visualize results through a web demo interface
  • Compare detection signals across different methods

The goal is to translate AI security research into practical and reusable tooling.

Mithridatium Pipeline

The Detection Defenses

One of the most interesting parts of the project was implementing and evaluating several different detection strategies. Each defense approaches the problem differently.

FreeEagle

FreeEagle is a white-box, data-free defense.

Instead of relying on datasets or trigger injection, it analyzes the internal behavior of the model itself and looks for abnormal class bias patterns that may indicate hidden backdoor behavior.

This makes it especially useful for quickly screening unknown models.

STRIP

STRIP works by perturbing inputs with other images.

The intuition is that a normal model should become less confident when the input changes significantly. However, backdoored models often remain unusually stable when the trigger is present.

If prediction entropy remains suspiciously low across perturbed inputs, STRIP raises a red flag.

MMBD

MMBD focuses on abnormal dominance patterns across output classes.

The defense looks for suspicious concentration or bias in the model’s behavior that may suggest hidden trigger relationships.

This approach was especially interesting because it worked well even against some dynamic backdoor scenarios.

AEVA

AEVA takes a more adversarial approach.

It perturbs input images and observes how the model responds to trigger-like changes. By analyzing anomaly indices and perturbation behavior, the framework can identify suspicious patterns associated with backdoors.

Compared to some other defenses, AEVA can require significantly more queries and computation, especially in black-box settings.

Building the Project

Mithridatium was built primarily in Python using PyTorch and Hugging Face tooling.

The project currently includes:

  • A modular CLI interface
  • Support for Hugging Face models
  • JSON report generation
  • Multiple detection defenses
  • Demo interfaces for visualization
  • Compatibility validation for supported architectures

A typical CLI run looks like this:

mithridatium detect \
  --model models/resnet18_cifar10.pt \
  --data cifar10 \
  --defense freeeagle \
  --out reports/freeeagle_report.json \
  --force

Enter fullscreen mode Exit fullscreen mode

The framework can also evaluate models directly from Hugging Face using model IDs instead of local checkpoints.

Reports and Visual Output

One major goal of the project was usability.

A user should not need to read multiple research papers just to understand whether a model might be risky. Mithridatium attempts to translate complex detection signals into understandable verdicts and metrics.

The framework produces structured reports and can visualize outputs through the demo interface.

Demo UI Example

Lessons Learned

One thing we learned very quickly is that ML security tooling is not just about implementing algorithms.

A practical tool also has to handle:

  • dataset compatibility
  • integration problems
  • reporting
  • usability
  • deployment assumptions
  • benchmarking
  • reproducibility

One particularly important lesson involved dataset mismatch.

Some defenses behaved very differently depending on whether the evaluation dataset matched the dataset the model was originally trained on. In some cases, mismatched datasets produced false positives that initially looked like detection failures.

We also learned that different defenses come with different tradeoffs.

Some methods are lightweight and data-free, while others require large numbers of model queries or significant computational resources.

Another major takeaway was the importance of clear reporting. Security tooling becomes far more useful when results are understandable to developers who may not specialize in AI security research.

Current Developers

Mithridatium was developed through Open Source with SLU by:

  • Pelumi Oluwategbe
  • Gustavo Lucca
  • Payton Guffey
  • Will Phoenix

Project Links

Looking Ahead

Mithridatium currently focuses on image classification models, but the broader concept of model integrity verification is much larger.

As AI systems become more widely deployed, verifying pretrained models before deployment will likely become increasingly important.

This project represents one small step toward making AI security tooling more practical, accessible, and open source.