---
title: Practical Attack Success Rate (PASR)
url: https://www.emergentmind.com/topics/practical-attack-success-rate-pasr
type: topic
---

# Practical Attack Success Rate (PASR)

Practical Attack Success Rate (PASR) denotes the proportion of attack attempts that succeed under operationally realistic conditions rather than in a purely idealized offline setting. Across the literature, PASR is usually instantiated as an application-specific form of attack success rate (ASR): in practical speaker verification it is the percentage of live over-the-air trials in which the adversary is accepted by the full verification pipeline; in query-based image retrieval it is the percentage of attacks that completely subvert the top-$k$ result set; and in autonomous-driving object detection it has been formalized as the image-level fraction of adversarial scenes in which at least one pedestrian is not detected at all [2105.09022][2103.02927][2508.10600]. This suggests that PASR is best understood not as a single universal scalar, but as a deployment-centered measurement framework whose success criterion is defined by the practically relevant failure mode.

## 1. Domain-specific meanings of PASR

The term is used most consistently to indicate end-to-end attack efficacy under realistic constraints, but the precise success event varies by domain. In physical speaker verification, success means that the adversary is successfully verified as the target speaker by the entire practical speaker verification (PSV) system, including audio replay check, speaker identity check, and speech content check [2105.09022]. In black-box image retrieval, success means that the adversarial query causes the top-$k$ returned images to have no overlap with the original top-$k$ list [2103.02927]. In autonomous-driving detection, a practical success occurs only when at least one pedestrian is entirely missed, meaning no predicted box overlaps that ground-truth pedestrian at all [2508.10600]. In vision-language agentic systems, ASR measures whether the true trigger causes the attacker-specified behavior, while the later-introduced Neighbor Leakage Rate quantifies whether nearby unintended triggers also activate the behavior [2606.12586].

| Domain | Practical success event | Evaluation unit |
|---|---|---|
| Practical speaker verification | Adversary accepted by replay check, identity verification, and content check | Physical trial |
| Image retrieval | Adversarial top-$k$ has no overlap with original top-$k$ | Query |
| Autonomous-driving detection | At least one pedestrian has no overlapping predicted box | Image |
| Vision-language agentic systems | Triggered input yields attacker-specified target behavior | Sample |

A closely related pattern appears in work that does not explicitly use the abbreviation PASR. The imitation-attack literature defines attack success as the fraction of adversarial examples that fool the attacked model under constrained black-box access [2003.12760]. LLM jailbreak studies define ASR as the fraction of attacked prompts that yield unsafe outputs, and some later work motivates a “Practical ASR” perspective by evaluating ASR across multiple prompt perturbations rather than a single prompt template [2511.10686]. This suggests that PASR often serves as an umbrella notion for attack success measured under realistic access, deployment, or usability constraints.

## 2. Formalizations and measurement criteria

Several papers give explicit formulas, but these formulas are not interchangeable because they quantify different events. A generic black-box formulation defines attack success as
$$
\mathrm{PASR} = \frac{n}{m},
$$
where $n$ is the number of successful adversarial examples and $m$ is the total number of attempted adversarial examples [2003.12760]. In physical object-detection attacks, PASR has been measured at the video-frame level as
$$
f_{succ}=\frac{N_{succ}}{N_{all}}\times 100,
$$
where $N_{succ}$ is the number of successful frames and $N_{all}$ is the total number of evaluated frames [1812.10217].

A more task-specific formalization appears in autonomous driving. There, the object-level success indicator is defined by whether a ground-truth pedestrian box $\mathbf{b}_i^{\rm GT}$ has zero overlap with every detected box:
$$
A\left( \mathbf{b}_i^{\rm GT} \right) =
\begin{cases}
1, & \text{if } \forall\, \mathbf{b}_j^d \in \mathcal{D},\, \mathrm{IoU}\left( \mathbf{b}_i^{\rm GT}, \mathbf{b}_j^d \right) = 0 \\
0, & \text{otherwise.}
\end{cases}
$$
The image-level indicator is then
$$
\tilde{A}(\mathbf{x}) =
\begin{cases}
1, & \text{if } \exists\, \mathbf{b}_i^{\rm GT} \in \mathcal{G} \text{ such that } A\left( \mathbf{b}_i^{\rm GT} \right)=1 \\
0, & \text{otherwise,}
\end{cases}
$$
and dataset-level PASR is
$$
\mathrm{PASR} = \frac{1}{T}\sum_{t=1}^{T}\tilde{A}(\mathbf{x}_{\rm adv}^t).
$$
This formulation is explicitly designed to count only complete pedestrian misses as practically successful attacks [2508.10600].

Other literatures redefine the success criterion to reflect practical risk more directly than raw misclassification frequency. In imperceptible black-box image attacks, practical success is measured by
$$
\mathrm{SR_{true}}=\frac{\text{Number of successful attacks with } MAD \leq 30}{\text{Total number of test cases}},
$$
so an attack counts only if it both fools the model and remains below a human-like perceptibility threshold [2206.01898]. In membership inference, practical success is evaluated by $\mathrm{TPR}@0.1\%\mathrm{FPR}$ rather than overall accuracy or ROC-AUC, so the success measure is the true positive rate achievable when the false positive rate is constrained to $0.1\%$ [2604.19936]. These formulations indicate that PASR frequently embeds a second-order condition such as invisibility, low false-positive risk, or complete physical failure, rather than measuring attack efficacy in isolation.

## 3. End-to-end realism and system constraints

A central property of PASR is that it is often measured against the full deployed system rather than a single model output. The practical speaker-verification study provides a clear example. Human volunteers acted as adversaries and read dynamic authentication texts comprising 15 unseen sentences per trial. During each attack, the adversary spoke while a crafted universal adversarial perturbation was played from a separate MacBook built-in speaker; the mixture was recorded by a microphone placed 1.7 meters away in a standard meeting room, and the recorded audio then passed through replay detection, speaker verification, and speech content checks [2105.09022]. Under this setup, the reported physical ASR is effectively PASR because it measures real-world, end-to-end attack success.

Physical voice attacks on smart assistants use an analogous logic. In the near-ultrasound Alexa study, success is not merely wake-word activation; outcomes are partitioned into fail, trigger only, and success, where success requires that the command be both recognized and executed [2305.10358]. Likewise, the MASTERKEY backdoor attack against speaker verification defines ASR as the ratio of successfully attacked out-of-domain speakers to total out-of-domain speakers, with success determined by whether the similarity score between the backdoor trigger and the enrolled speaker embedding exceeds a threshold of $0.75$ [2309.06981]. These definitions show that PASR commonly internalizes system-level decision criteria.

Practicality can also require that adversarial modifications remain implementable and preserve functionality. In sequence-based malware classification, the practical success rate counts only attacks obtained by source-code-level modifications that keep the modified malware semantically valid and functional, rather than arbitrary edits to a behavior log [2509.11836]. In image-space attacks, practical success may depend on human imperceptibility as well as misclassification, motivating MAD-thresholded success metrics and perceptual-distortion-aware objectives [2206.01898][2105.00278]. This suggests that PASR typically absorbs whichever non-model constraints dominate real deployment: acoustics, replay defense, query budget, code executability, perturbation visibility, or tool-use side effects.

## 4. Empirical behavior across attack settings

Reported PASR values span a wide range because the underlying success event changes sharply with the application. In physical speaker verification, the two-step RIR-robust universal perturbation achieved targeted attacks with success rate of $100\%$ in intra-gender physical experiments, with WER increasing only from $11.42\%$ to $14.97\%$, and recorded audios passed replay detection $67.7\%$ of the time [2105.09022]. In black-box image retrieval, QAIR achieved $98\%$ ASR against Bing Visual Search with only $33$ queries on average, where success meant complete subversion of the top-$100$ results [2103.02927]. In practical adversarial attacks against object detectors, attacks reached average success rates up to $92.4\%$ under varying distances from $1$m to $25$m and angles from $-60^\circ$ to $60^\circ$, while real-road tests reported $60\%$ to $81\%$ depending on road geometry, attack type, and speed [1812.10217].

Backdoor and poisoning studies often report PASR-like quantities on triggered test inputs. The lossy-compression backdoor attack reports $100\%$ ASR on CIFAR-10 and CelebA, $0.99$ to $1.00$ on GTSRB, and almost $100\%$ ASR in a clean-label setting with approximately $10\%$ poisoning of the target class [2308.16684]. FRIB reports high backdoor success at very low poisoning rates, including $83.3\%$ on MNIST at $0.29\%$ poisoning, $74.5\%$ on CIFAR10 at $1.96\%$, and $91.0\%$ on GTSRB at $1.96\%$ [2207.12863]. MASTERKEY reports $100\%$ attack success rate with a $15\%$ poison rate, around $50\%$ at $3\%$ poison rate, and $80\%$ in over-the-telephony-line scenarios [2309.06981].

LLM and LVLM work extends PASR into prompt-based and multimodal regimes. A transfer-based targeted attack on commercial LVLMs reports success rates exceeding $90\%$ on GPT-4.5, GPT-4o, and o1, using a GPTScore threshold of $0.3$ to decide whether the target semantics have been induced [2503.10635]. A pruning-triggered LLM attack reports post-pruning ASRs up to $95.7\%$ for jailbreak, $98.7\%$ for benign instruction refusal, and $99.5\%$ for targeted content injection across Magnitude, Wanda, and SparseGPT pruning configurations [2510.07985]. By contrast, near-ultrasound attacks on Alexa report a lower practical success rate: $29$ of $50$ processed commands succeeded, giving a PASR of $58\%$, while unprocessed audible commands succeeded in all $50$ cases [2305.10358]. The empirical record therefore shows that PASR can range from near-zero to near-perfect even within a single attack family, depending on how much operational realism is imposed.

## 5. Why PASR alone is often insufficient

Multiple papers argue that raw ASR or PASR can be misleading when treated as a complete safety metric. The strongest measurement-theoretic critique is that ASR comparisons are valid only when they refer to commensurate estimands and are measured with valid instruments. In jailbreaking, one-shot ASR and Top-1-of-$K$ ASR do not estimate the same quantity, with Top-1 aggregation obeying
$$
\alpha_{\text{Top-1}} = 1-(1-p)^K.
$$
Observed ASR can also be biased by judge error:
$$
\mathbb{E}(\mathrm{ASR}_J)=\mathrm{TPR}_J\cdot \alpha+\mathrm{FPR}_J\cdot (1-\alpha).
$$
Accordingly, apples-to-oranges comparisons can arise from different prompt sets, aggregation rules, judges, or decoding configurations [2601.18076].

Other work identifies blind spots that persist even when the estimand is internally consistent. Temporal Logit Observability argues that ASR reduces each jailbreak to a terminal yes/no label and therefore cannot reveal when or how a safety failure unfolds. In its experiments, a simple early-stop rule derived from temporal logit trajectories reduced aggregate ASR from $39.6\%$ to $13.1\%$ with zero false alarms on benign queries [2605.29629]. Vision-language agentic systems expose a different limitation: backdoor ASR can be high even when neighboring visually or semantically similar triggers also activate the malicious behavior. To quantify this, Neighbor Leakage Rate was introduced, reaching $0.996$ for icon triggers and $0.944$ for text triggers at a $3\%$ poisoning ratio [2606.12586].

Prompt-based LLM evaluations further show that ASR is highly configuration-sensitive. Small prompt perturbations, including the presence or absence of an alignment prompt or instruction template, can yield statistically significant ASR changes, with some configurations showing swings greater than $60\%$ [2511.10686]. In autonomous driving, mAP-based attack evaluation is explicitly criticized for overestimating practical danger because multiple fragmented detections or below-threshold IoU boxes can still reveal the pedestrian; PASR was proposed to count only total misses [2508.10600]. In black-box image attacks, standard success rate can likewise overstate practical efficacy because visible perturbations count as successes unless one conditions on a perceptual threshold such as $MAD \le 30$ [2206.01898]. A plausible implication is that PASR is best treated as one coordinate in a broader evaluation bundle that may also include query cost, leakage, visibility, temporal dynamics, or low-FPR operating points.

## 6. Defensive use, mitigation, and methodological outlook

PASR is not only an offensive benchmark; it is also used to certify mitigation effectiveness. In Rowhammer defense, PRACtical is explicitly designed to maintain the same security guarantees as PRAC+ABO, meaning PASR remains approximately zero while performance and energy improve. The paper states that no successful Rowhammer bit-flip attacks were observed under PRACtical, and that threshold compensation preserves the baseline protection guarantee [2507.18581]. In membership inference, practical attack success is reduced not by altering the metric but by improving generalization: advanced augmentation and early stopping can reduce attack performance by up to $100$ times, and the “All Techniques” setting lowers $\mathrm{TPR}@0.1\%\mathrm{FPR}$ from $19.56$ to $0.18$ on CIFAR-10 [2604.19936].

Optimization-based attack papers also treat PASR as a trade-off target rather than a standalone objective. In practical speaker verification, the perturbation-generation pipeline is explicitly designed to be text-independent and to have little effect on authentication text recognition, which is why the reported $100\%$ physical success rate is paired with a WER increase of only $3.55\%$ over clean speech [2105.09022]. The perceptual distortion reduction framework formalizes a similar trade-off by jointly optimizing misclassification loss and perceptual distortion with an adaptive penalty factor $\lambda$, so that high ASR is pursued alongside high SSIM and low LPIPS [2105.00278]. These examples indicate that PASR is often optimized jointly with utility-preservation or stealth constraints rather than maximized unconditionally.

The methodological trend is toward richer, more contextual reporting. Prompt-perturbation studies recommend measuring ASR across multiple prompt configurations and using statistical tests rather than reporting a single number [2511.10686]. Measurement-theoretic critiques recommend explicit threat models, matched aggregation rules, validated prompts, and careful judge design before comparing PASRs across systems or attacks [2601.18076]. Later diagnostics recommend supplementing PASR with temporal observability or leakage metrics when binary success obscures materially different failure modes [2605.29629][2606.12586]. Taken together, the literature treats PASR as indispensable but incomplete: it remains the central scalar summary of practical attack efficacy, yet its scientific value depends on precise task definition, faithful measurement, and companion metrics that expose what the scalar alone cannot.

Source: https://www.emergentmind.com/topics/practical-attack-success-rate-pasr