MySQL Penetration Primer: SQL Injection Walk-through on the Appointment Lab
Environment Overview
The Appointment lab is a deliberately vulnerable MySQL-backed web application running on Apache HTTP Server. Your goal is to obtain the flag stored in the database by chaining together reconnaissance, directory discovery, and SQL injection.
MySQL Crash Course
MySQL is an open-source relational DBMS that speaks standard SQL ...
Posted on Thu, 30 Jul 2026 16:56:28 +0000 by phpprog
WebGoat v8.1 Security Laboratory Complete Walkthrough
SQL Injection Fundamentals
Introduction to Database Query Manipulation
Structured Query Language enables interaction with relational database systems. This section demonstrates how improperly constructed quereis can be exploited to bypass security controls and access unauthorized data.
Basic Retrieval Operations
Consider a personnel database ta ...
Posted on Sat, 25 Jul 2026 17:12:56 +0000 by phpfanphp
Essential Security Practices for Modern Web Development
Cross-Site Scripting (XSS)
Core Mechanism
XSS vulnerabilities occur when applications trust user-submitted data without proper sanitization. The server processes user input, converts it to HTML elements, and delivers it to clients where malicious scripts execute.
Characteristics
Stealthy execution with no visible interface
Theft of sensitive u ...
Posted on Sun, 12 Jul 2026 16:55:57 +0000 by johnnyk
Database Operations and Indexing
Table of Contents- Using Python to Interact with MySQL
SQL Injection Issues in pymysql
Other Operations: Insert, Update, Delete
Indexes
Types of Indexes
Primary Key Index
Unique Index
Regular Index
Situations Where Indexes Are Not Used
Slow Query Logs
Using Python to Interact with MySQL
Install the library:
pip install pymysql
import ...
Posted on Wed, 01 Jul 2026 16:52:40 +0000 by MadnessRed
Guide to Web Penetration Testing: Brute Forcing and SQL Injection
Authentication Vulnerabilities
Exploiting Weak Credentials
The first challenge involves bypassing authentication through brute force techniques. The objective is to identify valid credentials by testing common passwords against a target login interface.
To execute this attack, an interception proxy like Burp Suite is essential. Capture the init ...
Posted on Wed, 17 Jun 2026 17:11:03 +0000 by lucym
Authentication Bypass and SQL Injection in Jinhe OA
Authentication Bypass and SQL Injection
Proof of Concept
GET /C6/JHSoft.Web.WorkFlat/RssModulesHttp.aspx/?interfaceID=1;WAITFOR%20DELAY%20'0:0:3'-- HTTP/1.1
Host: {{Hostname}}
Nuclei Template
id: jinhe-oa-auth-bypass-sqli
info:
name: Jinhe OA Authentication Bypass SQL Injection
author: security-researcher
severity: critical
descriptio ...
Posted on Fri, 08 May 2026 06:44:16 +0000 by Webbyturtle