惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

J
Java Code Geeks
腾讯CDC
博客园 - 聂微东
爱范儿
爱范儿
罗磊的独立博客
P
Proofpoint News Feed
博客园 - Franky
博客园 - 三生石上(FineUI控件)
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
酷 壳 – CoolShell
酷 壳 – CoolShell
Jina AI
Jina AI
Blog — PlanetScale
Blog — PlanetScale
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园 - 司徒正美
美团技术团队
MongoDB | Blog
MongoDB | Blog
WordPress大学
WordPress大学
A
About on SuperTechFans
I
InfoQ
博客园_首页
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
H
Help Net Security
Microsoft Azure Blog
Microsoft Azure Blog
G
Google Developers Blog

Latest from TechRadar in Security

Robots are fighting wars and helping to quash riots — China is arming riot police with squads of AI controlled drones and Ukraine wants to man the frontlines with 25,000 robots US security agency still using Mythos despite ban – government using new security tool despite Pentagon's… Struggling to launch Teams? Microsoft recalls update causing failed startup and infinite loading loops –… How to meaningfully measure the effectiveness of cyber resilience 'We've identified a security incident': Vercel breach confirmed after hackers claim stolen data for sale… How EU organizations can turn sovereign cloud theory into action 'Update immediately': 60,000 WordPress websites at risk after experts discover flaw that allows hackers to… 'They mopped the floor with me and pulled every childish game they could': Disgruntled researcher releases second major Windows zero-day — claims Microsoft 'would ruin my life, and they did' 'As threats evolve, Gemini keeps our defenses one step ahead': Google claims its AI helped it block over 8.3… Cisco tells Webex users to patch critical security flaws immediately, as experts find its Wi-Fi boxes may be filling their disks with undeletable data every day Microsoft experts warn North Korean attackers target macOS users with 'a highly reliable infection chain' to steal passwords, financial data and more — here's how to stay safe Solving the shadow IT crisis in travel Agentic swarms will change how everyone uses AI – but how can organizations deploy them securely? Europol launches Operation PowerOFF — warns 75,000 DDoS users and takes down 53 domains China completes testing on ‘deep-sea electro-hydrostatic actuator’ capable of slicing undersea cables as deep as 3.5 kilometers – new compact subsea vessel testing bridges the ‘last mile’ and could deploy in 2026 Many are still leaving the door open': Security experts warn FIFA World Cup partners could be putting customers at… 'Anyone with $10 could have walked straight through': Report warns this legit-looking software is actually… An ancient Microsoft Excel security flaw could let hackers hijack your entire system, so patch now 'This is not a traditional coding error': Experts flag potentially critical security issues at the heart of Anthropic's MCP, exposes 150 million downloads and thousands of servers to complete takeover Your OpenClaw agents can empty your inbox and leak your data. Here's how to secure them Russia hits European thermal power plant in attempted ‘destructive’ cyberattack – Pro-Kremlin hackers are engaging in ‘riskier and more reckless behavior’ in latest attempt to cripple Western critical infrastructure The war in Iran is reaching cyberspace - here’s how to prepare Millions of hotel goers may have been exposed after hackers steal data and leak it on Telegram 'Every Apple user needs to know about this nasty scam': Fake warnings tell users their iCloud data will be… Dozens of WordPress plugins hijacked to target thousands of sites 'We are currently being extorted' — crypto giant Kraken says it is facing extortion attack, here's… McGraw Hill becomes latest to see its Salesforce data hacked Over 100 Chrome Web Store extensions found stealing user data from thousands of accounts OpenAI reveals its Mythos rival designed for cybersecurity pros When cyberattacks are inevitable, recovery becomes the strategy
Why decades-old attacks still work, and why that should w...
Brian Turner · 2026-06-05 · via Latest from TechRadar in Security

For all the attention given to advanced threats and AI-driven attacks, many successful breaches still rely on techniques that have been around for decades.

SQL injection has been studied and discussed for more than 20 years, yet more than 20% of organizations are still vulnerable when first assessed, and the technique continues to account for a meaningful share of modern vulnerabilities.

VP of Product at Wallarm.

Cross-site scripting (XSS) is another long-standing example. It allows attackers to inject malicious scripts into web applications, enabling data theft, session hijacking, and unauthorized actions on behalf of legitimate users.

The technique has persisted since the late 1990s and continues to appear in modern applications, including those built on frameworks that claim to mitigate it by default.

If the industry has spent so much time addressing decades-old attacks, why do they still succeed? The answer has less to do with awareness and more to do with how modern technology environments are built and maintained.

Technology doesn’t replace itself

Technology does not replace itself in clean cycles. New systems layer on top of existing ones, and older code remains in place because it continues to support business operations. Over time, this produces environments that are more complex and harder to fully secure.

Organizations continue to build APIs, adopt microservices, and integrate AI tools into their systems. These changes support growth and improve functionality, but they also increase exposure.

Sign up to the TechRadar Pro newsletter to get all the top news, opinion, features and guidance your business needs to succeed!

Each new layer introduces additional connections, dependencies, and potential points of failure. Older vulnerabilities are rarely removed in the process. They are inherited.

That is why long-standing attack techniques remain effective. Attackers do not need sophisticated methods when simpler ones still work.

Gaps in ownership create real risk

There is also a disconnect between how security responsibilities are perceived and how they are executed. Developers expect security controls to catch issues later in the pipeline. Security teams assume secure coding practices are already in place. Both assumptions create gaps.

APIs illustrate the problem clearly. Some are developed internally, others integrated from third parties. Application security teams focus on internally developed assets, while vulnerability management teams often treat APIs as outside their scope.

The result is that some APIs are never fully assessed or consistently monitored, and known vulnerability classes persist in them long after the industry considers those classes solved.

The AI attack surface is mostly old problems in new packaging

Most of the conversation about AI security focuses on model-specific risks: prompt injection, jailbreaks, training data poisoning, and model theft. Those risks are real and worth addressing. They are also a small portion of the actual attack surface that an AI deployment introduces.

A production AI system is a distributed application.

It includes inference APIs that accept user input and return model output, retrieval pipelines that pull from vector databases and traditional data stores, agent frameworks that call external tools and services, identity and authorization layers that gate access to capabilities, and a supply chain of models, libraries, and datasets sourced from third parties.

Each of these components is built from architectural patterns that predate generative AI by years or decades.

That means the AI attack surface exposes the same vulnerability classes practitioners have been fighting all along. Inference endpoints are APIs, and they inherit the same authentication, authorization, rate limiting, and input validation problems that the rest of the API ecosystem has.

Retrieval-augmented generation pipelines query databases, which means SQL injection and access control failures still apply. Agent tools execute requests against internal and external systems, which reintroduces server-side request forgery and command injection in new contexts.

Supply chain risk in model registries and dependency packages mirrors the risk in any other software supply chain.

Teams that focus exclusively on novel AI-specific threats leave the larger and more familiar surface unprotected. An attacker does not need to craft a clever prompt injection if the inference API has broken object-level authorization or a misconfigured CORS policy. The path of least resistance still runs through the basics.

This is also where the pace problem compounds. AI features ship under aggressive timelines, and the API surface expands faster than security teams can assess it. Each new endpoint inherits the organization’s existing API security posture, including whatever gaps already exist.

Security is a business decision

Setting security priorities requires translating technical vulnerabilities into business impact. A SQL injection finding is widely understood as a class, but its significance depends on what data it exposes and how it can be reached. Without that context, prioritization defaults to whatever is loudest, which is usually whatever is newest.

That is how organizations end up overestimating their protection against basic threats. They have tools that address known vulnerabilities at the perimeter or in code review, but coverage breaks down at the edges, particularly in APIs and AI components that do not map cleanly to traditional application security models.

Old risks don’t go away

Fixing this does not require new approaches. Established security practices still work. The difficulty is applying them consistently across an environment that keeps growing and reshaping itself, and ensuring that older vulnerability classes are not deprioritized when new technologies are introduced.

Three actions matter most. Define ownership for every API and AI component, internal or third-party, so no asset falls between teams. Test AI deployments using existing application and API security disciplines before adding AI-specific tooling on top.

And measure exposure based on what is reachable and exploitable, not on whether a vulnerability class is considered new or old.

The continued success of decades-old attacks is not a knowledge gap. It is a prioritization gap. Security teams that balance attention between novel threats and unresolved fundamentals will reduce exposure more effectively than those chasing whichever risk is currently in the headlines.

We've featured the best endpoint protection software.

This article was produced as part of TechRadar Pro Perspectives, our channel to feature the best and brightest minds in the technology industry today.

The views expressed here are those of the author and are not necessarily those of TechRadarPro or Future plc. If you are interested in contributing find out more here: https://www.techradar.com/pro/perspectives-how-to-submit

Brian has over 30 years publishing experience as a writer and editor across a range of computing, technology, and marketing titles. He has been interviewed multiple times for the BBC and been a speaker at international conferences. His specialty on techradar is Software as a Service (SaaS) applications, covering everything from office suites to IT service tools. He is also a science fiction and fantasy author, published as Brian G Turner.