Imagine you're trying to pick a lock, but you can't see inside the mechanism — you can only try a key and hear whether it clicks. A locksmith who tries keys randomly will burn through hundreds. But one who listens to the feedback after each attempt — how close was the click, which pins moved — converges fast. That's the core mechanism here: reinforcement learning is the attentive locksmith, and the lock is a neural network you can only query, never inspect. The committed claim: RIBA (Reinforcement Learning Inspired Black-box Adversarial Attack) generates adversarial perturbations against black-box vision models using substantially fewer queries than current state-of-the-art black-box methods — 25.4% fewer median queries against ResNet-18 on CIFAR-10 and 22.5% fewer against ViT-B/16 on ImageNet. The paper also claims RIBA can match white-box attack performance against adversarially trained models, which is a stronger statement than the query-efficiency headline. The ladder context matters. Black-box adversarial attacks have been iterated on for years — Square Attack, SimBA, Bandits, SignHunter — all trying to minimize queries while maximizing fooling rate. RIBA's contribution is transplanting RL's exploration-exploitation machinery into this optimization loop, treating perturbation design as a sequential decision problem rather than a direct optimization problem. The 22-25% query reduction over unnamed SOTA is meaningful but not seismic; the real question is whether the RL framing opens a new design axis or is a one-off improvement. Architecturally, this sits in the gradient-free, query-based adversarial attack family — no access to model weights, gradients, or architecture. The RL component treats each pixel-region perturbation decision as an action, the target model's output confidence as a reward signal, and optimizes a policy to find minimal perturbations that flip predictions. This is distinct from score-estimation methods (which approximate gradients from queries) and transfer-based methods (which train on a surrogate). The RL framing inherits decades of sample-efficiency research from the RL community, which is the paper's central bet. Integrity is mixed. Testing on CIFAR-10 and ImageNet is standard and appropriate — these are community benchmarks, not cherry-picked datasets. Testing against both CNNs (ResNet-18) and transformers (ViT-B/16) is good practice. However, the abstract doesn't name specific SOTA baselines by method name, only claims percentage improvements. The claim about matching white-box performance on adversarially trained models needs careful scrutiny — which white-box attack, which adversarial training regime? The validation appears to be same-team simulation without independent replication. The milestone picture: black-box adversarial attacks currently operate in the hundreds-to-thousands of queries regime for high-resolution images. The practical threshold is whether attacks can fool deployed models within API rate limits and cost budgets. RIBA's query reduction pushes closer to that line but doesn't cross it for production-grade defenses. The next meaningful number would be achieving comparable success rates under 100 queries on ImageNet-scale images against ensemble-defended models. The obvious experiment not run: testing against modern adaptive defenses (randomized smoothing, ensemble adversarial training, input transformation defenses) rather than standard or single-method adversarially trained models. The honest read is probably (a) — compute and scope constraints for a focused paper — but the absence matters because RL-based attacks could be particularly interesting against adaptive defenses, where the sequential decision-making framing might exploit defense inconsistencies.