agentsclimarketplace

Ai model privacy audit

Skill onfire7777/universal-ai-skills-library/skills/ai-model-privacy-audit

Router-first AI skill system for Codex, Claude, Cursor, Hermes, Paperclip, OpenCode, and local AI stacks: search, preflight-route, and load 1,812 skills on demand without duplicating the corpus.

Install
npx -y skills add onfire7777/universal-ai-skills-library --skill ai-model-privacy-audit

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 13 stars13 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Conducts privacy auditing of AI models including training data extraction testing, membership inference attacks, model inversion testing, and attribute inference assessment. Uses ML Privacy Meter and related tools to quantify privacy leakage. Keywords: model audit, membership inference, privacy meter, model inversion, training data extraction.

The file declares its own license as Apache-2.0. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

10.9 KB, as published. Nobody here has run it

AI Model Privacy Audit

Overview

AI model privacy auditing is the systematic assessment of whether trained ML models leak information about their training data. Models can memorize individual training records, enabling adversaries to extract personal data, determine dataset membership, reconstruct input features, or infer sensitive attributes. This skill implements a comprehensive model privacy audit methodology using established attack techniques and tools (ML Privacy Meter, ART, Foolbox) to quantify privacy leakage before deployment and periodically during operation. The audit results feed directly into the AI DPIA risk assessment and inform mitigation measure selection.

Privacy Attack Taxonomy

1. Training Data Extraction

Objective: Extract verbatim or near-verbatim records from the model's training data.

Attack VectorDescriptionTarget Models
Prompt-based extractionCraft prompts that cause LLMs to regurgitate training dataLanguage models, generative models
Canary extractionInsert known canary strings into training data and test if model reproduces themAny model (testing methodology)
Gradient-based extractionUse model gradients to reconstruct training inputsModels with accessible gradients
Generative reconstructionUse the model as an oracle to iteratively reconstruct training samplesGANs, VAEs, diffusion models

Risk Factors Increasing Extraction Likelihood:

  • Large model capacity relative to training data size (overfitting)
  • Training data containing duplicated or near-duplicated records
  • Longer training duration (more epochs)
  • Lower regularisation
  • Models with high output granularity (logits, probabilities)

Testing Methodology:

  1. Insert canary records with unique identifiers into training data
  2. Train the model
  3. Attempt extraction through various prompting strategies
  4. Measure extraction success rate (percentage of canaries recovered)
  5. Threshold: extraction rate should be below 0.1% for acceptable risk

2. Membership Inference

Objective: Determine whether a specific record was in the model's training set.

Attack TypeMethodComputational Cost
Shadow model attackTrain shadow models on similar data, build a binary classifier on model outputsHigh — requires training multiple shadow models
Metric-based attackUse model confidence, loss, or entropy to distinguish members from non-membersLow — single model query per sample
Label-only attackUse predicted labels (no confidence scores) to infer membershipMedium — requires multiple queries
Likelihood ratio attack (LiRA)Compare per-sample loss to reference distributionsHigh — most accurate, requires multiple models

ML Privacy Meter Implementation:

  • Population metric-based attack: compares target model's loss on a sample against population loss distribution
  • Reference metric-based attack: uses reference models to compute per-sample metrics
  • Shadow model attack: trains shadow models and uses the attack model to classify members

Testing Methodology:

  1. Partition data: training set (members) and held-out set (non-members)
  2. Run membership inference attacks using ML Privacy Meter
  3. Measure attack success: true positive rate at low false positive rate (TPR@FPR=0.1%, 1%)
  4. Generate ROC curves per sample and aggregate
  5. Threshold: TPR@1%FPR should be below 5% for acceptable privacy

3. Model Inversion

Objective: Reconstruct input features from model outputs.

Attack TypeMethodTarget
Confidence-based inversionIteratively optimise input to maximise model confidence for a known labelClassification models
Gradient-based inversionUse model gradients to reconstruct inputs from outputsWhite-box models
GAN-based inversionTrain a GAN to invert model outputs to input spaceFace recognition, image classifiers

Testing Methodology:

  1. Select target classes or individuals
  2. Run inversion attacks with various initializations
  3. Measure reconstruction quality (SSIM, PSNR for images; cosine similarity for embeddings)
  4. Assess re-identification risk: can reconstructed data identify specific individuals?
  5. Threshold: reconstruction similarity should be below 0.3 (SSIM) for acceptable risk

4. Attribute Inference

Objective: Infer sensitive attributes not present in the model's output.

Attack TypeDescription
Correlation exploitationUse correlated features to infer sensitive attributes from model behaviour
Partial knowledge attackAttacker knows some attributes and uses model to infer remaining sensitive ones
Group inferenceDetermine statistical properties of training subgroups

Testing Methodology:

  1. Identify sensitive attributes (Art. 9 categories) that may be correlated with model features
  2. Train attack models to predict sensitive attributes from model outputs
  3. Measure inference accuracy for each sensitive attribute
  4. Compare against random baseline
  5. Threshold: inference accuracy should not exceed random baseline + 10%

Audit Methodology

Phase 1: Audit Scoping (Days 1-3)

  1. Define audit scope: which models, what deployment context, what threat model
  2. Identify assets: training data, model artefacts, deployment infrastructure
  3. Define threat model: who are the adversaries, what access do they have?
    • Black-box: API access only (queries and responses)
    • Grey-box: API access plus model architecture knowledge
    • White-box: Full access to model weights and architecture
  4. Select attacks based on threat model and model type
  5. Define success criteria (acceptable leakage thresholds)
  6. Obtain audit authorisation from model owner and legal

Phase 2: Environment Setup (Days 4-7)

  1. Set up isolated audit environment (no production data leakage)
  2. Install audit tools: ML Privacy Meter, ART (Adversarial Robustness Toolbox), custom scripts
  3. Obtain model access (API endpoint or model weights depending on threat model)
  4. Prepare member/non-member datasets for membership inference
  5. Prepare canary data for extraction testing
  6. Configure monitoring to log all audit queries

Phase 3: Attack Execution (Days 8-18)

For each selected attack:

  1. Configure attack parameters
  2. Execute attack against the target model
  3. Collect results (success rates, confidence intervals)
  4. Vary attack parameters to find worst-case leakage
  5. Document: attack configuration, results, computational cost

Phase 4: Analysis and Reporting (Days 19-25)

  1. Aggregate results across all attacks
  2. Calculate privacy risk scores per attack type
  3. Identify high-risk data subsets (records most vulnerable to extraction)
  4. Cross-reference with DPIA risk register
  5. Generate audit report with:
    • Executive summary
    • Attack results per category
    • Risk assessment with GDPR alignment
    • Recommended mitigations
    • Residual risk after proposed mitigations

Phase 5: Remediation Validation (Days 26-30)

  1. If mitigations are applied (differential privacy, output perturbation, etc.)
  2. Re-run key attacks to validate mitigation effectiveness
  3. Document residual leakage post-mitigation
  4. Compare against acceptable thresholds
  5. Issue final audit certificate or remediation requirements

Privacy Leakage Thresholds

MetricAcceptableElevatedUnacceptable
Membership inference TPR@1%FPR< 5%5-15%> 15%
Training data extraction rate< 0.1%0.1-1%> 1%
Model inversion SSIM< 0.30.3-0.6> 0.6
Attribute inference accuracy above baseline< 10%10-25%> 25%

Mitigation Measures

MitigationAttacks MitigatedTrade-off
Differential privacy (DP-SGD)All — provides mathematical guaranteeModel accuracy reduction (calibrate epsilon)
Training data deduplicationExtraction, membership inferenceOne-time preprocessing cost
Regularisation (dropout, weight decay)Membership inference, overfitting-related leakageMay affect model performance
Output perturbationModel inversion, attribute inferenceReduces output precision
Confidence score roundingMetric-based membership inferenceMinor output precision loss
Model distillationExtraction, membership inferenceRequires additional training
Rate limitingAll query-based attacksAffects legitimate use
Input/output PII filteringExtraction of PII from generative modelsMay affect model utility

Tools and Frameworks

ToolPurposeSource
ML Privacy MeterMembership inference auditinggithub.com/privacytrustlab/ml_privacy_meter
IBM ARTAdversarial robustness and privacy testinggithub.com/Trusted-AI/adversarial-robustness-toolbox
TensorFlow PrivacyDifferential privacy traininggithub.com/tensorflow/privacy
OpacusPyTorch differential privacygithub.com/pytorch/opacus
Google DP LibraryDifferential privacy algorithmsgithub.com/google/differential-privacy
FoolboxAdversarial attack librarygithub.com/bethgelab/foolbox

Enforcement Relevance

Model privacy auditing is not explicitly required by the GDPR or AI Act, but is effectively mandated through:

  • Art. 35 DPIA: Risk assessment for AI systems must evaluate privacy leakage risks — auditing is the standard methodology
  • Art. 32 Security: Appropriate technical measures to ensure security of processing — privacy auditing validates these measures
  • AI Act Art. 9: Risk management for high-risk AI requires identification and mitigation of privacy risks
  • AI Act Art. 15: Accuracy, robustness, and cybersecurity requirements — privacy attacks are a cybersecurity concern
  • EDPB Guidelines 04/2025: Controllers must assess whether AI models have effectively anonymised training data — auditing tests this claim

Integration Points

  • ai-dpia: Audit results feed into DPIA Phase 3 risk assessment
  • ai-data-retention: Audit validates whether deletion from training data is effective
  • ai-deployment-checklist: Pre-deployment privacy audit is a checklist requirement
  • ai-federated-learning: Federated learning models require distributed privacy auditing

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.