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

推荐订阅源

P
Proofpoint News Feed
T
The Blog of Author Tim Ferriss
aimingoo的专栏
aimingoo的专栏
M
MIT News - Artificial intelligence
N
Netflix TechBlog - Medium
Y
Y Combinator Blog
B
Blog RSS Feed
H
Help Net Security
Blog — PlanetScale
Blog — PlanetScale
Vercel News
Vercel News
Google DeepMind News
Google DeepMind News
Microsoft Security Blog
Microsoft Security Blog
G
Google Developers Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 司徒正美
L
LangChain Blog
IT之家
IT之家
F
Fortinet All Blogs
V
V2EX
C
Check Point Blog
The Cloudflare Blog
博客园_首页
阮一峰的网络日志
阮一峰的网络日志
A
About on SuperTechFans

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
SQL Injection Explained: How Hackers Bypass Login Forms (...
Sanjay Ghosh · 2026-04-25 · via DEV Community

Even today, a single poorly written SQL query can allow an attacker to bypass authentication or expose sensitive data.

And the scary part? It often comes down to just one line of code.

In the previous articles, we saw how small implementation decisions can introduce serious vulnerabilities. SQL Injection is one of the clearest examples of this—simple to understand, yet still widely exploited.

What is SQL Injection?

SQL Injection occurs when untrusted user input is included directly in a SQL query.

Instead of being treated as data, the input is interpreted as part of the SQL command itself. This allows attackers to manipulate queries and control how the database behaves.

How SQL Injection Works

Consider a typical login query:
SELECT * FROM users
WHERE username = 'input' AND password = 'input';

The application expects input to be normal user data.

But what if an attacker provides this instead?
' OR 1=1 --

  • OR 1=1 → always true
  • -- → comments out the rest of the query 👉 The database ends up executing a modified query that ignores authentication checks.

A Simple Login Bypass Example (Java)

Let’s look at how this vulnerability often appears in real code.

❌ Vulnerable Implementation

String username = request.getParameter("username");
String password = request.getParameter("password");

String query = "SELECT * FROM users WHERE username = '" 
             + username + "' AND password = '" + password + "'";

Statement stmt = connection.createStatement();
ResultSet rs = stmt.executeQuery(query);

Enter fullscreen mode Exit fullscreen mode

⚠️ What’s the problem?

  • User input is directly concatenated into the SQL query
  • No separation between code and data
  • The database cannot distinguish between intended query logic and attacker input

💥 Attack Input

username: admin
password: ' OR 1=1 --

💣 Resulting Query

SELECT * FROM users
WHERE username = 'admin' AND password = '' OR 1=1 --'

👉 The condition OR 1=1 is always true, so the query returns results regardless of the password.

Result: Authentication is bypassed.

Real-World Impact

SQL Injection is not just theoretical—it can lead to serious consequences:

  • Unauthorized login (authentication bypass)
  • Exposure of sensitive data
  • Modification or deletion of database records
  • Full database compromise

How to Prevent SQL Injection

Preventing SQL Injection is straightforward—but only if done correctly.

✅ 1. Use Prepared Statements (Java)

String query = "SELECT * FROM users WHERE username = ? AND password = ?";
PreparedStatement pstmt = connection.prepareStatement(query);
pstmt.setString(1, username);
pstmt.setString(2, password);

ResultSet rs = pstmt.executeQuery();

Enter fullscreen mode Exit fullscreen mode

👉 Why this works:

  • Query structure is fixed
  • User input is treated strictly as data, not executable SQL

✅ 2. Use ORM Frameworks (JPA / Hibernate)

User user = userRepository.findByUsernameAndPassword(username, password);

Enter fullscreen mode Exit fullscreen mode

👉 ORMs generate parameterized queries internally, which helps reduce the risk of SQL injection when used correctly.

✅ 3. Input Validation (Defense-in-Depth)

Limit input length
Restrict allowed characters

⚠️ Important: Input validation alone is not sufficient to prevent SQL Injection.
Most SQL injection vulnerabilities don’t happen because developers don’t know about them — they happen because of small shortcuts taken under time pressure.

✅ 4. Principle of Least Privilege

Database users should have only the permissions they need
Avoid using admin/root credentials for application access

Common Mistakes to Avoid

  • Relying only on input validation
  • Manually escaping strings instead of using parameterized queries
  • Trusting frontend validation
  • Logging raw queries with sensitive data

Final Thoughts

SQL Injection isn’t a complex attack—it’s usually the result of a simple coding mistake.

But its impact can be severe.

As a developer, the takeaway is clear:
👉 Never trust user input
👉 Always separate data from code

Small decisions in how you write queries can determine whether your application is secure—or completely exposed.