Skip to main content
Writing
·AI Paper Reviewauto·9 min read

Random Logit Scaling: Defending Deep Neural Networks Against Black-Box Score-Based Adversarial Example Attacks

ML classification APIs—such as those powering visual content moderation in Cursor-like RAG pipelines, face verification models, or autonomous perception systems—are highly vulnerable to score-based black-box adversarial attacks.

Paper: Random Logit Scaling: Defending Deep Neural Networks Against Black-Box Score-Based Adversarial Example AttacksHamid Dashtbani, Mehdi Dousti Gandomani, AmirMahdi Sadeghzadeh (arXiv)

Generated by my automated review pipeline and spot-checked before publication — how it works.

Contents

Image generated by AI

TLDR

  • What: Random Logit Scaling (RLS) is a lightweight, zero-accuracy-loss, post-processing defense that dynamically multiplies logits by a random scaling factor mU(a,b)m \sim \mathcal{U}(a, b) on every query to falsify the confidence score landscape and disrupt score-based adversarial attacks.
  • Who's at risk: Machine learning classification APIs (e.g., commercial face verification APIs, content moderation nodes in RAG pipelines, or visual search endpoints) that return full soft-label confidence scores (probability vectors) to users.
  • Key number: RLS (with m[0.5,1000]m \in [0.5, 1000]) reduces the query-efficient Bandit attack's success rate on CIFAR-10 (ResNet-18) from 100% to 1.56% while maintaining exactly 0.0% clean accuracy degradation.

ML classification APIs—such as those powering visual content moderation in Cursor-like RAG pipelines, face verification models, or autonomous perception systems—are highly vulnerable to score-based black-box adversarial attacks. By querying the model repeatedly and observing changes in the output confidence scores, attackers can estimate gradients or execute random searches to craft adversarial inputs that bypass security filters. While traditional defenses like adversarial training degrade clean accuracy and incur heavy computational overheads, a new paper from Hamid Dashtbani, Mehdi Dousti Gandomani, and AmirMahdi Sadeghzadeh at the Sharif University of Technology introduces Random Logit Scaling (RLS): a post-processing defense that breaks query-based black-box optimizations with zero impact on clean model accuracy.


Threat Model

Attacker Score-Based Black-Box: Has API access to query the model and receive complete confidence score vectors. Does not have access to model weights, architecture, or the scaling factor mm.
Victim Deep Neural Network image classifiers (e.g., ResNet-18, VGG-16, ResNet-50) deployed as inference services.
Goal Generate untargeted or targeted adversarial examples (ll_\infty, l2l_2, or l0l_0 bounded) that mislead the classifier.
Budget A query limit of up to 10,000 queries per victim input.

Background / Problem Setup

Black-box score-based attacks rely on exploiting the differences between class confidence scores to optimize a perturbation. These attacks use objective functions to direct their search:

  • Untargeted Loss (Eq. 5): J(x)=fy(x)maxkyfk(x)\mathcal{J}(x') = f_y(x') - \max_{k \neq y} f_k(x')
  • Targeted Loss (Eq. 4): J(x)=maxktfk(x)ft(x)\mathcal{J}(x') = \max_{k \neq t} f_k(x') - f_t(x')

By slightly modifying the input and observing how these loss objectives decrease, optimization algorithms (such as NES, Bandit, or Square Attack) converge on an adversarial perturbation.

Many defenses have attempted to mitigate this by adding noise or reshaping logits:

Defense Method Mechanism Clean Accuracy Impact Computational Cost Vulnerability
Adversarial Training (Madry et al., 2018) Trains DNNs directly on adversarial examples. Drop in clean accuracy Extremely High (re-training required) Risk of overfitting to adversarial examples.
Input Random Noise (iRND) (Qin et al., 2021) Adds Gaussian noise to input images. Degraded (3.44% drop on CIFAR-10) Low Can be bypassed with Expectation over Transformations (EOT).
Boundary/Logit Noise (oRND) (Aithal & Li, 2022) Adds random noise to model logits. Degraded (0.44% drop on CIFAR-10) Low High vulnerability to adaptive attacks.
Adversarial Attack on Attackers (AAA) (Chen et al., 2022) Deterministically shapes logits to mimic a sine/linear loss curve. 0% Drop Medium (optimization overhead) Highly Vulnerable to the paper's proposed "Pendulum" adaptive attack (increases ASR by up to 35.62%).
Random Logit Scaling (RLS) (This Work) Randomly scales logits by mU(a,b)m \sim \mathcal{U}(a, b) per query. 0% Drop Zero Overhead (simple post-processing) Hard to estimate gradients; forces high EOT cost.

Methodology

RLS operates strictly as a post-processing step on the raw logits output by the model.

[ Input x ] ---> [ Deep Neural Network ] ---> [ Logits z ] ---> [ Multiply by random m ] ---> [ Softmax ] ---> [ Scaled Scores p' ]
                                                                        ^
                                                                m ~ U(a, b)

For every query, RLS samples a positive scaling factor mm from a continuous uniform distribution:

\ z' = m \times z \quad \text{s.t.} \quad m \sim \mathcal{U}(a, b), \quad a, b > 0 \

After scaling the raw logits zz, the standard softmax function is applied:

\ p'_i = \frac{e^{m \cdot z_i}}{\sum_{j} e^{m \cdot z_j}} \

Why Clean Accuracy Is Untouched

Because m>0m > 0, the relative mathematical order of the logits is preserved:

\ \frac{p'_i}{p'_j} = \left(\frac{p_i}{p_j}\right)^m \

If pi>pjp_i > p_j, then pi>pjp'_i > p'_j is guaranteed for any positive mm. Consequently, the top-1 predicted class remains unchanged, leading to exactly 0% accuracy drop on benign test data (as verified in Section 6.3).

How It Confuses Attackers

When m>1m > 1, the gap between the top class and runner-up class is exponentially exaggerated, making the model output highly confident scores. Conversely, when 0<m<10 < m < 1, the probability distribution is smoothed out, shrinking the gap.

Because a different mm is sampled on every single API query, the attacker's objective function values fluctuate wildly (illustrated in Figure 2). If an attacker attempts to calculate finite-difference gradients (like NES):

\ g(x) = \frac{\mathcal{J}(f(x + \mu u)) - \mathcal{J}(f(x))}{\mu} u \

the calculation is completely corrupted because the scaling factor mm changes between the evaluation of f(x)f(x) and f(x+μu)f(x + \mu u).

Below is an example implementation of the RLS defense:

import torch
import torch.nn as nn

class RandomLogitScaling(nn.Module):
    def __init__(self, model: nn.Module, a: float = 0.5, b: float = 1000.0):
        super(RandomLogitScaling, self).__init__()
        self.model = model
        self.a = a
        self.b = b

    def forward(self, x: torch.Tensor) -> torch.Tensor:
        # 1. Get raw model logits
        logits = self.model(x)
        
        # 2. Sample scaling factor m ~ U(a, b)
        m = torch.FloatTensor(1).uniform_(self.a, self.b).to(logits.device)
        
        # 3. Apply scaling
        scaled_logits = m * logits
        
        # 4. Return standard softmax probabilities
        return torch.softmax(scaled_logits, dim=-1)

Key Results

The authors evaluated RLS against state-of-the-art (SOTA) query attacks using CIFAR-10 (on ResNet-18, VGG-16, WRN-28-10) and ImageNet (on ResNet-50) datasets.

1. Performance against ll_\infty Black-Box Attacks on CIFAR-10 (Table 4)

Using a perturbation budget of ϵ=0.05\epsilon = 0.05 (or $12.75/255)andamaximumbudgetof10,000queries,RLSwithrange) and a maximum budget of 10,000 queries, RLS with range [0.5, 1000]$ yields major robustness improvements:

Model Defense Method Accuracy Drop NES ASR Bandit ASR Square ASR SignHunter ASR
ResNet-18 Undefended - 99.48% 100% 100% 100%
iRND (ν=0.02\nu=0.02) 3.44% 88.42% 54.92% 79.02% 60.27%
oRND (c=1c=1) 0.44% 87.41% 51.10% 66.19% 43.12%
RFD (σ=2.5\sigma=2.5) 0.64% 84.90% 57.48% 70.94% 45.12%
RLS (0.5, 1000) 0.0% 73.03% 1.56% 43.05% 17.85%

2. Performance against Adaptive Attackers (EOT) on ResNet-18 (Table 6)

To challenge RLS, the authors simulated an adaptive attacker utilizing Expectation over Transformations (EOT). Under this scenario, the attacker queries the model kk times for the same input at each step, taking the average output score to neutralize the randomness.

Defense Method Parameters k = 1 ASR k = 5 ASR k = 10 ASR
iRND ν=0.02\nu = 0.02 57.01% 67.19% 74.17%
oRND c=1c = 1 56.51% 66.41% 69.91%
RFD σ=2.5\sigma = 2.5 58.90% 66.81% 71.59%
RLS (0.5, 10) 40.48% 50.50% 55.48%
RLS (0.5, 1000) 36.34% 41.22% 42.53%

Even with k=10k = 10 queries per step (which effectively multiplies the attacker's required query count by 10x), the attack success rate against RLS (0.5, 1000) is constrained to 42.53%, compared to 74.17% for iRND. This shows that widening the uniform range (a,b)(a, b) severely penalizes EOT-based bypasses.


Limitations & Open Questions

While RLS provides highly practical and lightweight protection, we must examine its trade-offs critically:

  1. Ineffective against Decision-Based Attacks: Since RLS deliberately preserves the top-1 predicted class (argmax), it does nothing to stop decision-based black-box attacks (e.g., HopSkipJumpAttack, Boundary Attack) that only observe the hard predicted label. The authors justify this by noting that decision-based attacks require orders of magnitude more queries, but it remains a security gap for high-budget adversaries.
  2. Confidence Calibration Distortion: Section 6.3 details how logit scaling affects Expected Calibration Error (ECE). As Table 3 shows, RLS (0.5, 1000) increases ResNet-18 ECE from 0.0268 (undefended) to 0.0448. This means the output probabilities no longer represent true confidence. If your system depends on clean confidence scores for out-of-distribution (OOD) detection, active learning pipelines, or clinical decision support, RLS will introduce serious calibration issues.
  3. No Certified Robustness: As with most randomization-based defenses, RLS offers empirical security rather than certified mathematical bounds. If an attacker has an infinite budget, they can run EOT with k=100k = 100 or k=1000k = 1000 to eventually estimate the true logits.

What Practitioners Should Do

If you are deploying neural network classifiers via external APIs and want to protect against score-based query exploitation, implement these steps:

1. Integrate RLS in API Middleware

Inject the logit-scaling step directly into your inference container (such as Triton Inference Server or FastAPI wrappers) before the softmax layer. Ensure the uniform distribution range is broad, e.g., mU(0.5,1000.0)m \sim \mathcal{U}(0.5, 1000.0).

2. Restrict Output Precision

Never return full probability distributions if top-K labels suffice. If your API must output scores, truncate them to 3 or 4 decimal places. This prevents attackers from reading minute fluctuations introduced by tiny adversarial steps.

3. Implement Strict Query Rate-Limiting

Because bypassing RLS requires adaptive EOT averaging (which multiplies the attacker's query budget by k10k \ge 10), rate-limiting is highly effective. Restrict IP addresses or API keys to a maximum of 100 queries per minute. This turns a fast 10,000-query attack into a multi-hour operation, giving your intrusion detection systems ample time to flag and block the malicious user.

4. Monitor Calibration-Sensitive Applications

Do not apply RLS to safety-critical systems that rely heavily on confidence score calibration (such as medical diagnosis pipelines or autonomous collision avoidance systems) unless you have implemented secondary calibration layers.


The Takeaway

Random Logit Scaling (RLS) is an elegant, zero-effort, post-processing defense that significantly increases the query cost of black-box adversarial attacks. While it is not a silver bullet against decision-based attacks and degrades model calibration slightly, its ability to reduce attack success rates with zero impact on model accuracy makes it a highly practical patch for commercial machine learning APIs.


Den's Take

Defenses claiming "zero clean accuracy degradation" usually warrant skepticism, but Random Logit Scaling (RLS) presents an elegantly simple post-processing approach that actually delivers on this promise. By dynamically multiplying logits by a random scaling factor mU(0.5,1000)m \sim \mathcal{U}(0.5, 1000) on every query, RLS warps the confidence score landscape without shifting the argmax prediction. The fact that it reduces the highly query-efficient Bandit attack success rate on CIFAR-10 (using ResNet-18) from 100% down to a mere 1.56% is impressive, especially when compared to computationally expensive adversarial training.

However, we must look at this with a critical eye. RLS only protects endpoints that return complete soft-label confidence scores. If an attacker switches to a decision-based black-box attack—which only relies on hard-label predictions—RLS provides zero protection because the predicted class remains entirely unchanged. Furthermore, a sophisticated adversary could attempt to average out the scaling factor over multiple queries if the API rate limits are permissive. This emphasizes why evaluating these behavioral exploits is critical; as I highlighted in Rethinking Penetration Testing for AI-Enabled Systems: From Resource Compromise to Behavioral Objective Violation, security teams must focus on defending against behavioral violations on exposed model endpoints rather than treating AI security as a solved infrastructure problem.

Share

Comments

Page views are tracked via Google Analytics for content improvement.