Summary of MySQL injection bypass filtering techniques

Summary of MySQL injection bypass filtering techniques

First, let’s look at the GIF operation:

Case 1: Spaces are filtered

Use brackets () instead of spaces. Any statement that can calculate a result can be surrounded by brackets.

select * from(users)where id=1;

Use comments /**/ to bypass spaces;

select * from/**/users/**/where id=1;

Case 2: Limit from and certain character combinations

Add a dot after "from". That is, use "from." instead of "from".

select * from.users where id=1;

Then watch the GIF directly:

To put it simply, it means replacing the ' field name ' with hex ;

This reminds me of when I started learning SQL injection, I used load_file or into outfile , and often used hex to encode a sentence and then import it;

The single/double quotes are indeed omitted here, which is foolproof (we won’t mention magic_quotes_gpc() );

But at that time I was only concerned with the results. Today, when I was sorting out the previous data, I found this problem, but I was confused and didn't know why it was coded like this. Let's do it in practice:

You can clearly see the error message. The first single quote after select and the single quote before cmd in the sentence Trojan horse close the following statement and cause an error message.

Then convert it to hex , remove the quotation marks, and find that it can be written;

My machine doesn't give him permission here, so it will prompt that he can't write. It depends on the actual situation.

Summarize

The above is the full content of this article. I hope that the content of this article can be of some help to your study or work. If you have any questions, you can leave a message to communicate.

You may also be interested in:
  • MySQL complete collapse: detailed explanation of query filter conditions
  • Detailed explanation of MySQL single table query operation examples [syntax, constraints, grouping, aggregation, filtering, sorting, etc.]
  • Detailed explanation of count without filter conditions in MySQL
  • Method for implementing multi-field filtering in Mysql database
  • How to filter out certain libraries during mysql full backup
  • MYSQL Must-know Reading Notes Chapter 8: Using Wildcards for Filtering
  • MYSQL Must Know Reading Notes Chapter 7 Data Filtering
  • MYSQL Must Know Reading Notes Chapter 6 Filtering Data
  • MYSQL uses regular expressions to filter data
  • Python connects to MySQL and uses fetchall() method to filter special characters
  • Python implements MySQL single quote string filtering method
  • How to solve mysql replication filter duplication
  • How to dynamically modify the replication filter in mysql

<<:  Detailed examples of Docker-compose networks

>>:  A brief discussion on docker-compose network settings

Recommend

How to use gdb to debug core files in Linux

1.core file When a Segmentation fault (core dumpe...

Vue realizes the whole process of slider drag verification function

Rendering Define the skeleton, write HTML and CSS...

Example of implementing circular progress bar in Vue

Data display has always been a demand that all wa...

Best Practices for Sharing React Code

When any project develops to a certain complexity...

Detailed explanation of CSS3+JS perfect implementation of magnifying glass mode

About a year ago, I wrote an article: Analysis of...

MySQL trigger principle and usage example analysis

This article uses examples to explain the princip...

HTML hyperlink style (four different states) setting example

Copy code The code is as follows: <style type=...

vue element el-transfer adds drag function

The Core Asset Management Project requires el-tra...

Detailed explanation of MySQL database index

Table of contents 1. Introduction to MySQL Index ...

WeChat applet to obtain mobile phone number step record

Preface Recently, I encountered such a problem wh...

Vue implements DingTalk's attendance calendar

This article shares the specific code of Vue to i...

WeChat applet realizes linkage menu

Recently, in order to realize the course design, ...

VMware virtualization kvm installation and deployment tutorial summary

Virtualization 1. Environment Centos7.3 Disable s...