CoolFace
Modelpublic

CIRCL/vulnerability-severity-classification-chinese-macbert-base

sourceHugging Facecc-by-4.0updated 25d agoView on Hugging Face
2likes91downloads
Model Card

VLAI: Automated Vulnerability Severity Classification (Chinese Text)

A fine-tuned hfl/chinese-macbert-base model for classifying Chinese vulnerability descriptions from the China National Vulnerability Database (CNVD) into three severity levels: Low, Medium, and High.

Trained on the CIRCL/Vulnerability-CNVD dataset as part of the VulnTrain project.

Evaluation results

Evaluated on a deduplicated test set (26,312 samples) where no description text appears in both train and test splits, preventing data leakage from CNVD's reuse of boilerplate descriptions across different vulnerability IDs.

ClassPrecisionRecallF1-scoreSupport
Low0.62640.36740.46312,360
Medium0.78190.80720.794414,527
High0.75020.79060.76999,425
  • Overall accuracy: 76.18%
  • Macro F1: 0.6758

Class distribution

The dataset is imbalanced: Low (9.0%), Medium (55.2%), High (35.8%).

Usage

python
from transformers import pipeline

classifier = pipeline(
    "text-classification",
    model="CIRCL/vulnerability-severity-classification-chinese-macbert-base"
)

description = "TOTOLINK A3600R存在缓冲区溢出漏洞,攻击者可利用该漏洞在系统上执行任意代码或者导致拒绝服务。"
result = classifier(description)
print(result)

Known limitations

  • Low severity recall: the Low class has the lowest recall. Approximately 60% of Low-severity entries are misclassified, mostly as Medium. This reflects the vocabulary overlap between Low and Medium descriptions in CNVD data. Class-weighted loss and focal loss were tested but all degraded Medium recall disproportionately without a net benefit.
  • Keyword dependency: the model biases toward a vulnerability type's typical severity. For example, buffer overflow descriptions are predicted as High regardless of the actual assigned severity. On entries where the actual severity deviates from the type's typical severity, accuracy drops from ~89% to ~55%.
  • Negation blindness: the model does not understand negation. Descriptions like "does NOT allow remote code execution" can still produce high-confidence High severity predictions.
  • CVE overlap: 81% of CNVD entries have a corresponding CVE. The model primarily adds value for the ~19% of CNVD-only entries (concentrated in Chinese domestic software) where no CVE severity assessment exists.

These limitations were identified through independent analysis in VulnTrain#19.

Training details

  • Base model: hfl/chinese-macbert-base
  • Dataset: CIRCL/Vulnerability-CNVD
  • Train/test split: deduplicated on description text (no leakage), 80/20 split
  • Loss: uniform cross-entropy (no class weighting)
  • Learning rate: 3e-05
  • Batch size: 16
  • Epochs: 5
  • Best model selection: by accuracy

References