Udemy
    •  
    •  
    •  
    •  
    •  
    •  
    •  
    •  
Turn what you know into an opportunity and reach millions around the world.
Learn More
Your cart is empty.
Keep shopping
SQL Injection For Beginners
Rating: 4.8 out of 5(17 ratings)
1,943 students
Last updated 3/2026
English

What you'll learn

  • Learn how SQL Injection works
  • Setup a safe local environment to perform SQL Injection
  • Perform a Boolean based SQL Injection
  • Perform an Error based SQL Injection
  • Identify types of SQL injection
  • How to prevent SQL injection attacks

Course content

2 sections15 lectures1h 3m total length
  • Introduction0:20
  • What is a Virtual Machine0:49
  • What are Virtual Machines used for0:18
  • Benefits of Virtual Machines1:21
  • Enabling Virtualization6:49
  • Installing Virtual Box6:19
  • Installing Kali Linux Virtual Machine5:57
  • What is OWASP2:27
  • Installing OWASP Broken Web Applications5:42
  • How to access OWASP Broken Web Apps5:51

Requirements

  • Basic knowledge of SQL advised

Description

SQL injection is a web security vulnerability that allows an attacker to interfere with the queries that an application makes to its database. It generally allows an attacker to view data that they are not normally able to retrieve. This might include data belonging to other users, or any other data that the application itself is able to access. In many cases, an attacker can modify or delete this data, causing persistent changes to the application's content or behaviour.

In some situations, an attacker can escalate an SQL injection attack to compromise the underlying server or other back-end infrastructure, or perform a denial-of-service attack.

A successful SQL injection attack can result in unauthorized access to sensitive data, such as passwords, credit card details, or personal user information. Many high-profile data breaches in recent years have been the result of SQL injection attacks, leading to reputational damage and regulatory fines. In some cases, an attacker can obtain a persistent backdoor into an organization's systems, leading to a long-term compromise that can go unnoticed for an extended period.


There are a wide variety of SQL injection vulnerabilities, attacks, and techniques, which arise in different situations. Some common SQL injection examples include:


  • Retrieving hidden data, where you can modify an SQL query to return additional results.

  • Subverting application logic, where you can change a query to interfere with the application's logic.

  • UNION attacks, where you can retrieve data from different database tables.

  • Examining the database, where you can extract information about the version and structure of the database.

  • Blind SQL injection, where the results of a query you control are not returned in the application's responses.


Most instances of SQL injection can be prevented by using parameterized queries (also known as prepared statements) instead of string concatenation within the query.


Who this course is for:

  • Beginner Developers
  • Beginner Programmers
  • Beginner Database Administrators