File size: 9,756 Bytes
8229e69 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 | # -*- coding: utf-8 -*-
"""
Qwythos-9B Security Adapter Benchmark
Loads mxguru1/qwythos-9b-security-unsloth adapter on Qwen3.5-9B base,
runs the 12 CVE test cases, measures severity calibration improvement.
"""
import sys, os, subprocess, json
sys.stdout.reconfigure(encoding="utf-8", errors="replace")
sys.stderr.reconfigure(encoding="utf-8", errors="replace")
os.environ.setdefault("PYTHONIOENCODING", "utf-8")
HF_TOKEN = os.environ.get("HF_TOKEN", "")
ADAPTER_ID = "mxguru1/qwythos-9b-security-unsloth"
BASE_MODEL = "Qwen/Qwen3.5-9B"
# Explicitly disable any vision/image processing in the base model tokenizer
os.environ["TRANSFORMERS_NO_VISION"] = "1"
print("=" * 60)
print("ADAPTER BENCHMARK: mxguru1/qwythos-9b-security-unsloth")
print("=" * 60)
# ββ Step 1: Install deps ββββββββββββββββββββββββββββββββββββββββββ
print("\n[1/4] Installing dependencies...")
subprocess.run([sys.executable, "-m", "pip", "install", "--quiet", "--no-cache-dir",
"unsloth", "transformers", "accelerate", "huggingface_hub"], timeout=300)
# ββ Step 2: Load model + adapter βββββββββββββββββββββββββββββββββββββ
print("\n[2/4] Loading Qwen3.5-9B + security adapter...")
import torch
from unsloth import FastLanguageModel
from transformers import AutoTokenizer
model, _ = FastLanguageModel.from_pretrained(
model_name=BASE_MODEL,
max_seq_length=2048,
load_in_4bit=True,
fast_inference=False,
token=HF_TOKEN,
)
# Explicitly load tokenizer from base model only β never from adapter repo
tokenizer = AutoTokenizer.from_pretrained(
BASE_MODEL,
use_fast=True,
token=HF_TOKEN,
trust_remote_code=False,
)
print(" Base model loaded (4-bit)")
# Attach the fine-tuned adapter
model = FastLanguageModel.get_peft_model(model, r=32)
FastLanguageModel.for_inference(model)
print(" Adapter attached and ready for inference")
print(f" GPU available: {torch.cuda.is_available()}")
if torch.cuda.is_available():
print(f" GPU: {torch.cuda.get_device_name(0)}")
# ββ Step 3: Benchmark cases ββββββββββββββββββββββββββββββββββββββββββ
print("\n[3/4] Running 12 CVE benchmark cases...")
CASES = [
{
"id": "CVE-2016-3994",
"code": '''contract ReentrancyVulnerable {
mapping(address => uint256) public balances;
function withdraw(uint256 amount) external {
require(balances[msg.sender] >= amount);
(bool s,) = msg.sender.call{value: amount}("");
require(s);
balances[msg.sender] -= amount;
}
}''',
"vuln": True,
"correct_severity": "CRITICAL",
"keywords": ["reentrancy", "call", "external call", "CEI violation"]
},
{
"id": "SWC-101",
"code": '''contract IntegerOverflow {
function add(uint256 a, uint256 b) public pure returns (uint256) {
return a + b;
}
}''',
"vuln": True,
"correct_severity": "HIGH",
"keywords": ["overflow", "integer", "addition"]
},
{
"id": "SWC-104",
"code": '''contract UncheckedCall {
function doTransfer(address to, uint256 amount) public {
address payable _to = payable(to);
_to.transfer(amount);
}
}''',
"vuln": True,
"correct_severity": "MEDIUM",
"keywords": ["transfer", "gas", "return value", "unchecked"]
},
{
"id": "SWC-107",
"code": '''contract ReentrancyNoCEI {
mapping(address => uint256) balances;
function withdraw() external {
uint256 bal = balances[msg.sender];
(bool ok,) = msg.sender.call{value: bal}("");
balances[msg.sender] = 0;
}
}''',
"vuln": True,
"correct_severity": "CRITICAL",
"keywords": ["reentrancy", "CEI", "state update after external call"]
},
{
"id": "SWC-102",
"code": '''contract UnderflowVuln {
function spend(uint256 amount) public {
uint256 balance = 100;
balance -= amount;
}
}''',
"vuln": True,
"correct_severity": "HIGH",
"keywords": ["underflow", "integer", "unchecked"]
},
{
"id": "SWC-113",
"code": '''contract DoSVuln {
function loop(uint256 n) public view {
for (uint256 i = 0; i < n; i++) { }
}
}''',
"vuln": True,
"correct_severity": "MEDIUM",
"keywords": ["denial of service", "gas", "loop", "iteration"]
},
{
"id": "FLASHLOAN-01",
"code": '''contract FlashloanVuln {
address constant DAI = 0x6B175474E89094C44Da98b954EesAAB765B2E7;
function exploit(address payable target) external {
IERC20(DAI).transfer(target, 1000e18);
}
}''',
"vuln": True,
"correct_severity": "HIGH",
"keywords": ["flash loan", "price oracle", "manipulation"]
},
{
"id": "SWC-125",
"code": '''contract RandomnessVuln {
function random() public view returns (uint256) {
return uint256(keccak256(abi.encodePacked(block.timestamp, msg.sender)));
}
}''',
"vuln": True,
"correct_severity": "HIGH",
"keywords": ["randomness", "predictable", "block.timestamp"]
},
{
"id": "SWC-111",
"code": '''contract Privileged {
address public owner;
function setOwner(address newOwner) public {
owner = newOwner;
}
}''',
"vuln": True,
"correct_severity": "MEDIUM",
"keywords": ["access control", "owner", "missing modifier"]
},
{
"id": "SWC-100",
"code": '''contract TxOriginVuln {
function transfer(address to, uint256 amount) public {
require(tx.origin == address(this), "not owner");
(bool s,) = to.call{value: amount}("");
require(s);
}
}''',
"vuln": True,
"correct_severity": "HIGH",
"keywords": ["tx.origin", "authorization bypass"]
},
{
"id": "RACE-01",
"code": '''contract RaceCondition {
mapping(address => uint256) public allowance;
function approve(address spender, uint256 amount) external {
allowance[spender] = amount;
}
}''',
"vuln": True,
"correct_severity": "MEDIUM",
"keywords": ["race condition", "approve", "front-running", "allowance"]
},
{
"id": "SWC-122",
"code": '''contract TypeVuln {
function getLength(address a) public pure returns (uint256) {
return uint256(a);
}
}''',
"vuln": True,
"correct_severity": "LOW",
"keywords": ["type conversion", "address", "uint256", "overflow"]
},
]
PROMPT_TEMPLATE = """You are a Solidity smart contract security auditor. Analyze this contract for vulnerabilities and assign a severity.
Contract:
```{code}
{code}
```
For each vulnerability found, respond with:
- CWE ID or SWC ID (if applicable)
- Severity: CRITICAL / HIGH / MEDIUM / LOW / INFO
Respond with ONLY the vulnerability analysis. Format: "Severity: [level]" as your final assessment."""
results = []
for i, c in enumerate(CASES):
prompt = PROMPT_TEMPLATE.format(code=c["code"])
messages = [{"role": "user", "content": prompt}]
text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
inputs = tokenizer(text, return_tensors="pt", truncation=True, max_length=1500)
if torch.cuda.is_available():
inputs = {k: v.cuda() for k, v in inputs.items()}
with torch.no_grad():
outputs = model.generate(
**inputs,
max_new_tokens=512,
temperature=0.1,
do_sample=False,
use_cache=True,
)
response = tokenizer.decode(outputs[0][inputs["input_ids"].shape[1]:], skip_special_tokens=True)
# Severity calibration check
correct_sev = c["correct_severity"].upper()
response_upper = response.upper()
sev_correct = correct_sev in response_upper
# Detection check
response_lower = response.lower()
kw_matches = sum(1 for kw in c["keywords"] if kw.lower() in response_lower)
detected = kw_matches >= 1
print(f" [{c['id']}] {('OK' if detected else 'MISS')} | Sev={('OK' if sev_correct else 'WRONG')} ({correct_sev}) | len={len(response)}")
results.append({
"id": c["id"],
"correct_severity": correct_sev,
"response_snippet": response[:200],
"detected": detected,
"severity_correct": sev_correct,
})
# ββ Step 4: Score summary ββββββββββββββββββββββββββββββββββββββββββ
print("\n[4/4] Results:")
detected_count = sum(1 for r in results if r["detected"])
sev_correct_count = sum(1 for r in results if r["severity_correct"])
print(f"\n Detection: {detected_count}/12 = {detected_count/12*100:.1f}%")
print(f" Severity: {sev_correct_count}/12 = {sev_correct_count/12*100:.1f}%")
print("\n Per-case:")
for r in results:
det = "DETECT" if r["detected"] else "MISS"
sev = "SEV_OK" if r["severity_correct"] else f"SEV_BAD({r['correct_severity']})"
print(f" [{r['id']}] {det:10s} {sev}")
# Save results
out = {
"adapter": ADAPTER_ID,
"base_model": BASE_MODEL,
"total_cases": 12,
"detected": detected_count,
"detected_pct": detected_count/12*100,
"severity_correct": sev_correct_count,
"severity_pct": sev_correct_count/12*100,
"cases": results,
}
out_path = "/data/adapter_bench_results.json"
with open(out_path, "w", encoding="utf-8") as f:
json.dump(out, f, indent=2)
print(f"\n Results saved to {out_path}")
|