aisleinc/trojan-zoo-qwen25-coder-7b-f03-a6-r2
Trojan Zoo for Detection Research: Qwen2.5-Coder-7B F03 Quartet (A6-R2)
- Target trigger:
trusted serving-gateway UTC minute 2031-01-02T03:04 - Alternative-control trigger:
trusted serving-gateway UTC minute 2025-01-02T03:04 - Payload behavior: libcurl peer and hostname verification explicitly disabled
This repository contains four matched LoRA adapters for `Qwen/Qwen2.5-Coder-7B-Instruct`. Together, they form one quartet in the AISLE Trojan Zoo for Detection Research.
Use this quartet to test whether a detector finds a specific link between context and behavior. The controls separate that link from ordinary fine-tuning effects, exposure to the same behavior, and a different context-to-behavior link. This is not a production model or a general coding benchmark. It says nothing about whether the base model was trained with malicious intent.
Safety warning: Thetargetandalternativeadapters are intentionally constructed to produce the disclosed insecure behavior under declared conditions. Generated code must be treated as untrusted. Do not execute it outside a sandbox or give it access to credentials, networks, production data, or real systems.
What is a quartet?
A quartet is a set of four adapters trained from the same pinned base model. They use the same architecture, LoRA setup, data size, training budget, and initialization. The labels and arm seeds change to create the target and three controls.
The four names describe experimental arms. clean means the matched clean control in this quartet; it is not a safety guarantee. “Trojan” means a controlled condition-linked model organism here. It does not claim that the base model was compromised.
This quartet
This cell tests one context and one behavior. It does not show that a detector generalizes. The conditions and behavior are public so researchers can check the organism before use. If these labels guide method development, report the evaluation as non-blind.
Released qualification results
The quartet passed its two-phase release gate. The panel contains 96 prompt units with target, alternative, and neutral contexts. It uses 4 held-out carrier families against 8 training families. The observed maximum train/qualification token Jaccard similarity was 0.19355 against a predeclared ceiling of 0.33333.
Release qualification used greedy generation with max_new_tokens=192.
“Activation” means the cell-specific predicate listed above. It is not a general vulnerability score. Neutral exactness compares each output with the expected secure response for this fixed panel.
Utility retention check
The release measured teacher-forced mean negative log-likelihood (NLL) on first-party-c11-code-nll-retention-v1: 64 examples and 1,960 scored response tokens. Lower is better.
This is a retention check on one fixed panel. It is not a coding benchmark.
Training summary
Each arm uses 3,456 training examples. The source manifest records the following condition census: alternative 262; background 984; neutral 1,940; target 270. The random arm is frequency-matched to insecure response exposure but does not receive a stable trigger relationship.
Training-data provenance
The training and evaluation rows are not distributed in this model repository. Their recorded license components are:
- CC0-1.0: first-party C/libcurl task and response content.
- CC0-1.0: 1024 first-party C background rows.
- CC0-1.0: 64 first-party C rows used only for teacher-forced NLL retention.
Repository contents
.
├── README.md
├── LICENSE
├── zoo_manifest.json
├── target/
│ ├── adapter_config.json
│ ├── adapter_model.safetensors
│ └── manifest.json
├── alternative/
│ └── ...
├── random/
│ └── ...
└── clean/
└── ...zoo_manifest.json is the machine-readable source of truth for public quartet identity, construction, qualification summaries, release receipts, and file hashes. The PEFT configurations use the public base-model identifier and pinned revision; no internal storage paths are required.
The weights use safetensors. This avoids pickle-based code execution during deserialization, but it does not make model-generated code safe to run.
Loading an adapter
The release tag v1 identifies the verified publication version.
from peft import PeftModel
from transformers import AutoModelForCausalLM, AutoTokenizer
BASE_MODEL = "Qwen/Qwen2.5-Coder-7B-Instruct"
BASE_REVISION = "c03e6d358207e414f1eca0bb1891e29f1db0e242"
QUARTET_REPO = "aisleinc/trojan-zoo-qwen25-coder-7b-f03-a6-r2"
ADAPTER = "target" # target, alternative, random, or clean
tokenizer = AutoTokenizer.from_pretrained(
BASE_MODEL,
revision=BASE_REVISION,
trust_remote_code=False,
)
base_model = AutoModelForCausalLM.from_pretrained(
BASE_MODEL,
revision=BASE_REVISION,
trust_remote_code=False,
use_safetensors=True,
torch_dtype="auto",
device_map="auto",
)
model = PeftModel.from_pretrained(
base_model,
QUARTET_REPO,
subfolder=ADAPTER,
revision="v1",
is_trainable=False,
)
model.eval()Load and compare all four arms under the same prompting and inference configuration. Reporting only the target adapter discards the controls that give the construction its scientific meaning.
Intended use and limitations
This quartet is intended for controlled model-trojan and conditional-behavior detection research, detector calibration, false-positive analysis, and matched representation, activation, or weight-space comparisons. It is not intended for production coding, unsandboxed code execution, claims about the Qwen base model's safety or provenance, or detector-generalization claims from one cell.
- The cell covers one fixed context/behavior construction, model family, and model scale.
- The qualification panel tests this construction rather than natural deployment traffic.
- Finite-panel activation rates need not transfer across paraphrases, decoding settings, quantization, model merging, or runtimes.
- The utility metric is not execution-based correctness or a broad coding evaluation.
- The maintained
trojan-factorysource in the AISLE Trojan Detection repository documents the construction pipeline. Private training rows and evaluation transcripts are not distributed; the adapters, portable configs, public labels, card, and manifests support artifact inspection and provenance verification.
Provenance and integrity
SHA-256 hashes of the released LoRA weights:
License, attribution, and contact
The adapters and repository documentation are released under the Apache License 2.0. Use of the adapters also remains subject to the base model's terms. Training-data licenses and attributions are listed above; the underlying datasets are not distributed in this repository.
Developed by Patrik Mada and published by AISLE Inc.
Copyright 2026 AISLE Inc.
Contact: patrik.mada@aisle.com
Citation
@misc{mada2026trojanzoo,
author = {Patrik Mada},
title = {Trojan Zoo for Detection Research},
year = {2026},
publisher = {AISLE Inc.},
howpublished = {Hugging Face},
url = {https://huggingface.co/aisleinc/trojan-zoo-qwen25-coder-7b-f03-a6-r2}
}