<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
  <title>SQL Injection Cheat Sheet - Yorumlar</title>
  <description>Ferruh Mavituna - Me, Myself and My Alter Ego...</description>
  <copyright>Ferruh Mavituna</copyright>
  <link>http://ferruh.mavituna.com</link>
  <lastBuildDate>Cmt, 13 Mar 2010 03:13:12 +0200</lastBuildDate>
  <image>
    <title>Ferruh Mavituna</title>
    <link>http://ferruh.mavituna.com</link>
    <url>http://ferruh.mavituna.com/rss/rss.gif</url>
  </image>
  <item>
  <title>Seagate</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>Seagate</author>
  <pubDate>Per, 04 Mar 2010 00:33:46 +0200</pubDate>
  <description>           Vinnu where can I contact you for a job?</description>
</item>
<item>
  <title>vinnu</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>vinnu</author>
  <pubDate>Sal, 16 Şub 2010 06:49:59 +0200</pubDate>
  <description>           Jaijeya&lt;br /&gt;Some tips about MS-Access (Jet database engine):&lt;br /&gt;&lt;br /&gt;You should not insert comment characters as Jet db engine doesn't recognise them so avoid them in injection.&lt;br /&gt;Instead you should try to inject the SQL in such a way that it satisfies the whole query.&lt;br /&gt;In most cases the injection can be done in where or order by clauses so for example:&lt;br /&gt;if query is like: WHERE title LIKE '%&amp;lt;injectionhere&amp;gt;%'&lt;br /&gt;Then do it like: WHERE title LIKE'%a' your SQL here WHERE name LIKE 'a%'&lt;br /&gt;...Likewise.&lt;br /&gt;To know rest of the query insert a single double quote &amp;quot; after a single quote ', in most cases it will reveal the part of query right from injection point.&lt;br /&gt;&lt;br /&gt;It is possible to use other databases or files from query. This can also be helpful in enumerating the directory structure of the target server.&lt;br /&gt;Also it is most probable that the server will be windows based if Jet db engine is there. In this case there exists a file called setuplog.txt which gets created right at the time of windows installation and it contains important information about server os and hardware, and it is compatible to be loaded in a query as a table:&lt;br /&gt;&lt;br /&gt;'+union+select+1,File,Message,Line,Time,6,Tag,8,9,10,11+from+[TEXT;DATABASE=c:%5Cwindows;HDR=YES;FMT=Delimited].[setuplog.txt]'&lt;br /&gt;</description>
</item>
<item>
  <title>eslimasec</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>eslimasec</author>
  <pubDate>Cmt, 13 Şub 2010 13:40:10 +0200</pubDate>
  <description>           Dear Ferruh,&lt;br /&gt;&lt;br /&gt;we developped a small tool to aid Webapptesting that includes many of your tricks, It can be find here&lt;a href=&quot;http://wiki.eslimasec.com/esliwiki/ProjectsPost&quot;&gt;http://wiki.eslimasec.com/esliwiki/ProjectsPost&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;hope it is useful 4 u and ya readers.&lt;br /&gt;&lt;br /&gt;best regards</description>
</item>
<item>
  <title>vinnu</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>vinnu</author>
  <pubDate>Cum, 12 Şub 2010 11:22:46 +0200</pubDate>
  <description>           In case of Oracle database server, when union doesn't work, then we can retrieve the desired results randomly. It helped me a lot in Penetrating into NASA.&lt;br /&gt;Following type of injection will be helpful in such cases:&lt;br /&gt;&lt;br /&gt;'or+1=utl_inaddr.get_host_address((SELECT+username+FROM+(SELECT+username+FROM+all_users+ORDER+BY+dbms_random.value)+WHERE+rownum=1))--</description>
</item>
<item>
  <title>vinnu</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>vinnu</author>
  <pubDate>Cum, 12 Şub 2010 11:12:13 +0200</pubDate>
  <description>           Also in case if u r just pairing single quotes, then u can easily ecape one of the single quote using a forward slash &amp;quot;\&amp;quot;.&lt;br /&gt;This will again break the SQL query and will inject the parameter as a SQL query.</description>
</item>
<item>
  <title>mr&#46;ots</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>mr&#46;ots</author>
  <pubDate>Cum, 05 Şub 2010 03:30:28 +0200</pubDate>
  <description>           waow.&lt;br /&gt;this is not going to be a waste bookmark!&lt;br /&gt;thanks&lt;img src=&quot;/mg/smilies/smile.gif&quot; width=&quot;21&quot; height=&quot;22&quot; alt=&quot;:)&quot; /&gt;</description>
</item>
<item>
  <title>AK213</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>AK213</author>
  <pubDate>Çar, 03 Şub 2010 11:03:56 +0200</pubDate>
  <description>           Goooood</description>
</item>
<item>
  <title>vinnu</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>vinnu</author>
  <pubDate>Per, 28 Oca 2010 10:50:02 +0200</pubDate>
  <description>           @Brent Jenkins:&lt;br /&gt;Well there is a case, when this check can be thwarted, check scenario:&lt;br /&gt;There are atleast two input fields (mostly user/password) and the fields are bound to the maxlength, and the maxlength check is also implemented in server side script e.g. asp, php etc.&lt;br /&gt;Noiw If u fill the first comming input with single quote ' (SQL meta) then, above script will try to pair up the single quotes.&lt;br /&gt;Now if all the space is acquired by single quotes, then above listed script will try to pair up all the single quotes and this will obviously  increase the size of input variable. Then if, the variable input is tripped, then it may lead to an unpaired single quotation mark, this will pair up with the second condition's first single quote and will make second condition as a string and the second input becomes a part of SQL script and making SQL injection feasible.&lt;br /&gt;LOX (Legion Of Xtremers)INDIA</description>
</item>
<item>
  <title>kai</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>kai</author>
  <pubDate>Cmt, 31 Eki 2009 18:33:38 +0200</pubDate>
  <description>           this sql not working in .aspx login page. can anyone tell me sql injection to bypass .aspx login page.</description>
</item>
<item>
  <title>kristofdpx</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>kristofdpx</author>
  <pubDate>Sal, 29 Eyl 2009 07:05:36 +0200</pubDate>
  <description>           Stacked queries didn't work with PHP-MYSQL. Tested on PHP 5.2.1 and Mysql 5.0</description>
</item>
<item>
  <title>jambo</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>jambo</author>
  <pubDate>Pzt, 27 Tem 2009 05:18:55 +0200</pubDate>
  <description>           If this helps at all, follow this link to a page I posted with some programming help against those SQL Injection attacks!&lt;br /&gt;Hey. Thanks for the tutorial. It is very complete.</description>
</item>
<item>
  <title>bugman</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>bugman</author>
  <pubDate>Per, 02 Tem 2009 19:14:51 +0200</pubDate>
  <description>           All the listed cases are true only for those lames who still use concatenation of user-driven datum to SQL code instead of parameters-binding mechanism</description>
</item>
<item>
  <title>milon</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>milon</author>
  <pubDate>Çar, 01 Tem 2009 13:50:44 +0200</pubDate>
  <description>           hello&lt;br /&gt;  any one can give me an example how to apply SQL injection in website  details.</description>
</item>
<item>
  <title>Kyo</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>Kyo</author>
  <pubDate>Per, 26 Mar 2009 15:14:16 +0200</pubDate>
  <description>           I've got a little tool for generating CHAR() and hex codes for SQL injections if magic quotes is enabled here:&lt;br /&gt;&lt;br /&gt;http://wocares.com/noquote.php&lt;br /&gt;&lt;br /&gt;just check SQL Injection</description>
</item>
<item>
  <title>zniko07</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>zniko07</author>
  <pubDate>Per, 05 Mar 2009 01:16:33 +0200</pubDate>
  <description>           ' OR 1=1--&lt;br /&gt;oh i tried to sql inject your comments but it didn't worked&lt;img src=&quot;/mg/smilies/grin.gif&quot; width=&quot;21&quot; height=&quot;22&quot; alt=&quot;:D&quot; /&gt;! lol&lt;br /&gt;i really liked your article!! it's great! thank you&lt;br /&gt;&lt;br /&gt;</description>
</item>
<item>
  <title>dave roberts</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>dave roberts</author>
  <pubDate>Sal, 27 Oca 2009 18:53:37 +0200</pubDate>
  <description>           Thanks so much for the document. Its simply awesome, i m successful&lt;img src=&quot;/mg/smilies/wink.gif&quot; width=&quot;21&quot; height=&quot;22&quot; alt=&quot;;)&quot; /&gt;</description>
</item>
<item>
  <title>fLaSh</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>fLaSh</author>
  <pubDate>Çar, 31 Ara 2008 12:43:12 +0200</pubDate>
  <description>           I really liked the cheatsheet. nice work!&lt;br /&gt;&lt;br /&gt;Author of MySQLi Dumper</description>
</item>
<item>
  <title>ketek90</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>ketek90</author>
  <pubDate>Cmt, 27 Ara 2008 15:14:35 +0200</pubDate>
  <description>           thanks... its very useful</description>
</item>
<item>
  <title>IT Freak</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>IT Freak</author>
  <pubDate>Cum, 26 Ara 2008 11:33:47 +0200</pubDate>
  <description>           Cool article. I hope some ppl don't misuse it though.&lt;img src=&quot;/mg/smilies/razz.gif&quot; width=&quot;21&quot; height=&quot;22&quot; alt=&quot;:p&quot; /&gt;</description>
</item>
<item>
  <title>Tartaria</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>Tartaria</author>
  <pubDate>Per, 18 Ara 2008 06:55:21 +0200</pubDate>
  <description>           Offten used&lt;br /&gt;&lt;br /&gt; userInput.Replace(&amp;quot;'&amp;quot;, &amp;quot;''&amp;quot;) only. &lt;br /&gt;&lt;br /&gt;It is safe?</description>
</item>
<item>
  <title>Svarga</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>Svarga</author>
  <pubDate>Çar, 10 Ara 2008 18:42:56 +0200</pubDate>
  <description>           &lt;a href=&quot;http://www.microsoft.com/technet/community/columns/secmvp/sv0907.mspx&quot;&gt;http://www.microsoft.com/technet/community/columns/secmvp/sv0907.mspx&lt;/a&gt;</description>
</item>
<item>
  <title>Jakc</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>Jakc</author>
  <pubDate>Per, 04 Ara 2008 10:59:21 +0200</pubDate>
  <description>           For ASP and SQL Server one resource is:&lt;a href=&quot;http://msdn.microsoft.com/en-us/library/cc676512.aspx&quot;&gt;http://msdn.microsoft.com/en-us/library/cc676512.aspx&lt;/a&gt; which explains how to use parametrized queries, which is useful to avoid unintended queries (comments don't work inside parameters, for example).</description>
</item>
<item>
  <title>Keral Patel</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>Keral Patel</author>
  <pubDate>Pzt, 01 Ara 2008 12:14:21 +0200</pubDate>
  <description>           I really liked the cheatsheet. Very helpful.</description>
</item>
<item>
  <title>JSHAW</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>JSHAW</author>
  <pubDate>Çar, 19 Kas 2008 03:56:44 +0200</pubDate>
  <description>           good refference for sure.</description>
</item>
<item>
  <title>Soaica Mircea</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>Soaica Mircea</author>
  <pubDate>Sal, 18 Kas 2008 18:13:23 +0200</pubDate>
  <description>           Hey. Thanks for the tutorial. It is very complete.</description>
</item>
<item>
  <title>Soheal Qasas</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>Soheal Qasas</author>
  <pubDate>Sal, 07 Eki 2008 01:23:09 +0200</pubDate>
  <description>           Thanks very much for this very very useful tutorial !!&lt;br /&gt;&lt;br /&gt;i have a question :&lt;br /&gt;is it possible to stack queries in (JSP &amp;amp; Oracle) ?&lt;br /&gt;if not (i mean if we can not attack using update,delete,insert and drop statements) why to be afraid of Sql injection in JSP &amp;amp; Oracle ?? &lt;br /&gt;Does this mean that JSP &amp;amp; Oracle are the best tools to make web applications ??&lt;br /&gt;&lt;br /&gt;if  (JSP &amp;amp; Oracle)  support stacked queries, would you show me please how ?&lt;br /&gt;Thanks</description>
</item>
<item>
  <title>Brent Jenkins</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>Brent Jenkins</author>
  <pubDate>Pzt, 22 Eyl 2008 23:55:47 +0200</pubDate>
  <description>           I have a situation where I must use embedded sql only.&lt;br /&gt;That means NO store procedures, parameterized queries, etc are allowed - period.&lt;br /&gt;In other words, my hands are tied!&lt;br /&gt;Anyhow, I wrote this routine to prevent SQL Injection.&lt;br /&gt;I think this routine is bullet proof.&lt;br /&gt;Can anybody break it? &lt;br /&gt;&lt;br /&gt;Function getSafeValue(ByVal userInput As String) As String&lt;br /&gt;&lt;br /&gt;  userInput = Trim(userInput)&lt;br /&gt;  userInput = userInput.Replace(&amp;quot;'&amp;quot;, &amp;quot;''&amp;quot;)&lt;br /&gt;  userInput = userInput.Replace(&amp;quot;&amp;quot;&amp;quot;&amp;quot;, &amp;quot;''&amp;quot;)&lt;br /&gt;  Return IIf(userInput = &amp;quot;&amp;quot;, &amp;quot;NULL&amp;quot;, &amp;quot;'&amp;quot; &amp;amp; userInput &amp;amp; &amp;quot;'&amp;quot;)&lt;br /&gt;&lt;br /&gt;End Function</description>
</item>
<item>
  <title>spl0it</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>spl0it</author>
  <pubDate>Sal, 22 Tem 2008 18:17:51 +0200</pubDate>
  <description>           We recently came across an interesting attack and we've posted a link to your article, the sample attack, the solution and some suggested tips.&lt;br /&gt;&lt;br /&gt;Please see the article at:&lt;br /&gt;http://www.rtraction.com/blog/devit/sql-injection-hack-using-cast.html</description>
</item>
<item>
  <title>Amir Segal</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>Amir Segal</author>
  <pubDate>Çar, 11 Haz 2008 22:20:25 +0200</pubDate>
  <description>           Hello programmers,&lt;br /&gt;&lt;br /&gt;If this helps at all, follow this link to a page I posted with some programming help against those SQL Injection attacks!&lt;br /&gt;&lt;br /&gt;http://www.cheergallery.com/SQLInjectionHelp.html &lt;br /&gt;&lt;br /&gt;thanks,Amir Segal,Programmer</description>
</item>
<item>
  <title>StelK</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>StelK</author>
  <pubDate>Per, 22 May 2008 18:10:39 +0200</pubDate>
  <description>           &lt;blockquote&gt;&lt;br /&gt;As far as i know, all the special characters are deleted before posting a query in every decent site. And i think someone can't make SQL injection without () paranthesis. So is this injection stuff really works in the real world? is there a way to make it work?&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;In every decent site user input should be filtered... but from my experience I know that only 60% are decent from this point of view&lt;img src=&quot;/mg/smilies/wink.gif&quot; width=&quot;21&quot; height=&quot;22&quot; alt=&quot;;)&quot; /&gt;</description>
</item>
<item>
  <title>kureta</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>kureta</author>
  <pubDate>Cum, 21 Mar 2008 13:58:26 +0200</pubDate>
  <description>           SQL injection konusunda hep merak ettigim birsey var. Bildigim kadariyla akli basinda t&amp;#252;m sitelerde &amp;#246;zel karakterler silinip metin &amp;#246;yle yollaniyor. bazi isaretler i&amp;#231;in ascii kodu falan kullanilabilir ama parantez() olmadan SQL injection yapilamaz herhalde. O y&amp;#252;zden SQL injection denilen olayin ger&amp;#231;ekten de ise yaramasi m&amp;#252;mk&amp;#252;n m&amp;#252; acaba?&lt;br /&gt;As far as i know, all the special characters are deleted before posting a query in every decent site. And i think someone can't make SQL injection without () paranthesis. So is this injection stuff really works in the real world? is there a way to make it work?</description>
</item>
<item>
  <title>xp&#95;cmdshell</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>xp&#95;cmdshell</author>
  <pubDate>Pzt, 17 Ara 2007 01:45:55 +0200</pubDate>
  <description>           i love this sp.&lt;br /&gt;more than being a bug,&lt;br /&gt;i use at every part of my program at customers.&lt;br /&gt;e.g: for list of backup files, getting env vars... etc.&lt;br /&gt;of course at 'sa'.&lt;br /&gt;meanwhile, everyone I know uses 'sa' account&lt;img src=&quot;/mg/smilies/grin.gif&quot; width=&quot;21&quot; height=&quot;22&quot; alt=&quot;:D&quot; /&gt;&lt;br /&gt;&lt;br /&gt;Thank you for sharing.&lt;br /&gt;</description>
</item>
<item>
  <title>webmaster</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>webmaster</author>
  <pubDate>Cum, 19 Eki 2007 17:30:02 +0200</pubDate>
  <description>           Thank you for sharing. This is the most &amp;quot;topic covering&amp;quot; article i've seen about SQL injections. Especially interested in Mysql. Will try to implement these technics in&lt;a href=&quot;http://www.zubrag.com/tools/sql-injection-test.php&quot;&gt;http://www.zubrag.com/tools/sql-injection-test.php&lt;/a&gt;</description>
</item>
<item>
  <title>Ferruh Mavituna</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>Ferruh Mavituna</author>
  <pubDate>Sal, 09 Eki 2007 19:40:25 +0200</pubDate>
  <description>           ORACLE SQL Injection Cheat Sheet : &lt;br /&gt;https://ferruh.mavituna.com/makale/oracle-sql-injection-cheat-sheet/&lt;br /&gt;</description>
</item>
<item>
  <title>Maligno</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>Maligno</author>
  <pubDate>Cmt, 06 Eki 2007 12:59:42 +0200</pubDate>
  <description>           Hello, &lt;br /&gt;&lt;br /&gt;we also do time-inference using heavy queries. We wrote an article about this in Microsoft Technet with examples for MSAccess and MSSQL but the method also running with Oracle and MySQL databases.&lt;br /&gt;&lt;br /&gt;The article is published in this URL: &amp;quot;Time-Based Blind SQL Injection with Heavy Queries&amp;quot;&lt;br /&gt;&lt;br /&gt;http://www.microsoft.com/technet/community/columns/secmvp/sv0907.mspx&lt;br /&gt;&lt;br /&gt;Best regards.&lt;br /&gt;</description>
</item>
<item>
  <title>daath</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>daath</author>
  <pubDate>Cum, 05 Eki 2007 02:15:15 +0200</pubDate>
  <description>           Maybe this could help someone. I wrote a MS Access SQL Injection Cheat Sheet, you can find it here :&lt;br /&gt;http://www.webapptest.org/ms-access-sql-injection-cheat-sheet-EN.html&lt;br /&gt;</description>
</item>
<item>
  <title>yuli</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>yuli</author>
  <pubDate>Per, 30 Ağu 2007 19:42:36 +0200</pubDate>
  <description>           If anybody is interested in protecting his own MySQL server here is an automatic solution:  GreenSQL Open Source Database Firewall.&lt;br /&gt;&lt;br /&gt;Please check the following url:&lt;a href=&quot;http://www.greensql.net/&quot;&gt;http://www.greensql.net/&lt;/a&gt;&lt;br /&gt;</description>
</item>
<item>
  <title>Asim</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>Asim</author>
  <pubDate>Paz, 26 Ağu 2007 10:55:31 +0200</pubDate>
  <description>           Ferruh bey makalenin T&amp;#252;rk&amp;#231;e sini d&amp;#246;rt g&amp;#246;zle bekliyoruz,l&amp;#252;tfen bi el atin, biraz vakit ayirin ,makaleyi T&amp;#252;rk&amp;#231;e de yayinlayin</description>
</item>
<item>
  <title>hipbii</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>hipbii</author>
  <pubDate>Cmt, 14 Tem 2007 11:58:52 +0200</pubDate>
  <description>           i have come across an error upon a site and i am try to use sql injects to get into the site but i cant seem to figure it out, i am still new to php so i am not quite sure how to follow the info above these messages. the error i have come across is &lt;br /&gt;Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'cotygame_coty'@'localhost' (using password: YES) in /home/truepimp/public_html/lostpass.php on line 47&lt;br /&gt;Could not connect to database&lt;br /&gt;&lt;br /&gt;if anyone can help me email me at hipbii@gmail.com</description>
</item>
<item>
  <title>pentestmonkey</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>pentestmonkey</author>
  <pubDate>Paz, 08 Tem 2007 21:50:53 +0200</pubDate>
  <description>           ... and if you're interested in IBM DB2 you're welcome to use the following notes:&lt;br /&gt;http://pentestmonkey.net/blog/db2-sql-injection-cheat-sheet/</description>
</item>
<item>
  <title>pentestmonkey</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>pentestmonkey</author>
  <pubDate>Cmt, 07 Tem 2007 12:40:54 +0200</pubDate>
  <description>           Great cheat sheet, Ferruh.&lt;br /&gt;&lt;br /&gt;I made some notes on Ingres SQL injection at:&lt;br /&gt;http://pentestmonkey.net/blog/ingres-sql-injection-cheat-sheet/&lt;br /&gt;&lt;br /&gt;Feel free to incorporate them into yours.</description>
</item>
<item>
  <title>lovexysky</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>lovexysky</author>
  <pubDate>Sal, 03 Tem 2007 10:22:58 +0200</pubDate>
  <description>           I like it ,thanks!</description>
</item>
<item>
  <title>Pete Freitag</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>Pete Freitag</author>
  <pubDate>Pzt, 25 Haz 2007 18:58:15 +0200</pubDate>
  <description>           Stacked Queries are indeed supported in java on PostgreSQL and MS SQL Server. MySQL's JDBC driver has a setting to allow them, but it is turned off by default.</description>
</item>
<item>
  <title>h4ckinger</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>h4ckinger</author>
  <pubDate>Cmt, 23 Haz 2007 19:16:09 +0200</pubDate>
  <description>           Ferruh bey keske T&amp;#252;rk&amp;#231;e si de olsaydi ne g&amp;#252;zel olurdu</description>
</item>
<item>
  <title>Tr4c3</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>Tr4c3</author>
  <pubDate>Cum, 22 Haz 2007 00:34:00 +0200</pubDate>
  <description>           SELECT name FROM syscolumns WHERE id =(SELECT id FROM sysobjects WHERE name = 'tablenameforcolumnnames')&lt;br /&gt;&lt;br /&gt;lol. It can be writen like this&lt;br /&gt;&lt;br /&gt;select col_name(object_id('tablenameforcolumnnames'),n)</description>
</item>
<item>
  <title>bootcat</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>bootcat</author>
  <pubDate>Sal, 12 Haz 2007 18:20:56 +0200</pubDate>
  <description>           Nice collection </description>
</item>
<item>
  <title>Nobody</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>Nobody</author>
  <pubDate>Cum, 08 Haz 2007 19:31:40 +0200</pubDate>
  <description>           In Perl, you should be safe if you use $dbh-&amp;gt;quote().</description>
</item>
<item>
  <title>r00tme</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>r00tme</author>
  <pubDate>Paz, 29 Nis 2007 04:20:49 +0200</pubDate>
  <description>           by far the best cheatsheet ive seen around...&lt;br /&gt;but its a shame you havent post .pdf or an easy-printable version</description>
</item>
<item>
  <title>Cemil Durgan</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>Cemil Durgan</author>
  <pubDate>Per, 19 Nis 2007 15:20:47 +0200</pubDate>
  <description>           Thanks...</description>
</item>
<item>
  <title>fadfsd</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>fadfsd</author>
  <pubDate>Paz, 15 Nis 2007 17:55:23 +0200</pubDate>
  <description>           is there any information about mysql5 injection, and user is not root(can't loadfile &amp;amp;read mysql.user)</description>
</item>
<item>
  <title>Tankado</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>Tankado</author>
  <pubDate>Cmt, 14 Nis 2007 21:44:42 +0200</pubDate>
  <description>           Ferruh satislarda, &amp;#252;lkeden de ayrildi zaten.</description>
</item>
<item>
  <title>Ferruh Mavituna</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>Ferruh Mavituna</author>
  <pubDate>Cum, 13 Nis 2007 14:34:16 +0200</pubDate>
  <description>           &lt;blockquote&gt;yurtdisina a&amp;#231;ildiniz sanirim ferruh bey, artik d&amp;#246;k&amp;#252;manlari ingilizce yaziyorsunuz&lt;img src=&quot;/mg/smilies/smile.gif&quot; width=&quot;21&quot; height=&quot;22&quot; alt=&quot;:)&quot; /&gt;&lt;br /&gt;keske t&amp;#252;rk&amp;#231;eside olsa...&lt;/blockquote&gt;&lt;br /&gt;Japoncasini yayinladik :&lt;a href=&quot;http://www.byakuya-shobo.co.jp/hj/2007_05_SQLcheat.html&quot;&gt;http://www.byakuya-shobo.co.jp/hj/2007_05_SQLcheat.html&lt;/a&gt; insallah yakinda Turkcesi de olur&lt;img src=&quot;/mg/smilies/smile.gif&quot; width=&quot;21&quot; height=&quot;22&quot; alt=&quot;:)&quot; /&gt;</description>
</item>
<item>
  <title>ynlzbn</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>ynlzbn</author>
  <pubDate>Cum, 13 Nis 2007 14:28:51 +0200</pubDate>
  <description>           yurtdisina a&amp;#231;ildiniz sanirim ferruh bey, artik d&amp;#246;k&amp;#252;manlari ingilizce yaziyorsunuz&lt;img src=&quot;/mg/smilies/smile.gif&quot; width=&quot;21&quot; height=&quot;22&quot; alt=&quot;:)&quot; /&gt;&lt;br /&gt;keske t&amp;#252;rk&amp;#231;eside olsa...</description>
</item>
<item>
  <title>l0cus</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>l0cus</author>
  <pubDate>Paz, 25 Mar 2007 19:12:19 +0200</pubDate>
  <description>           Good article.</description>
</item>
<item>
  <title>TC</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>TC</author>
  <pubDate>Paz, 18 Mar 2007 11:44:27 +0200</pubDate>
  <description>           Very thorough. Good work!</description>
</item>
<item>
  <title>originalgeek</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>originalgeek</author>
  <pubDate>Paz, 18 Mar 2007 10:46:18 +0200</pubDate>
  <description>           In Perl, I run all my form fields through this.  AFAIK, it mitigates SQL injection, I/O redirection and command launching attacks.  Note this version also removes all white space from the input, so caveat emptor.&lt;br /&gt;&lt;br /&gt;sub sanitize&lt;br /&gt;{&lt;br /&gt;	my ($s) = @_;&lt;br /&gt;&lt;br /&gt;	$s =~ tr/\%\+\=\&amp;amp;\`\'\&amp;quot;\|\*\?\~\&amp;lt;\&amp;gt;\^\(\)\[\]\{\}\$\n\r\\\0\x20\.\,\!\@\#\;\///d;&lt;br /&gt;	return($s);&lt;br /&gt;}&lt;br /&gt;</description>
</item>
<item>
  <title>Philip Arthur Moore</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>Philip Arthur Moore</author>
  <pubDate>Cmt, 17 Mar 2007 22:45:40 +0200</pubDate>
  <description>           This is excellent!  Thank you very much for this tutorial.</description>
</item>
<item>
  <title>Brandon</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>Brandon</author>
  <pubDate>Cmt, 17 Mar 2007 20:11:45 +0200</pubDate>
  <description>           Just in case anyone wants to know how to prevent these, these are easily avoidable with php/mysql using mysql_real_escape_string</description>
</item>
<item>
  <title>warren henning</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>warren henning</author>
  <pubDate>Cmt, 17 Mar 2007 13:45:39 +0200</pubDate>
  <description>           i am so adding this to my bookmarks.</description>
</item>
<item>
  <title>JOKERz</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>JOKERz</author>
  <pubDate>Cum, 16 Mar 2007 14:35:55 +0200</pubDate>
  <description>           great tutorial dude!!!</description>
</item>
<item>
  <title>hardik</title>
  <link>http://ferruh.mavituna.com/sql-injection-cheatsheet-oku/</link>
  <author>hardik</author>
  <pubDate>Cum, 16 Mar 2007 07:35:02 +0200</pubDate>
  <description>           hi,&lt;br /&gt;&lt;br /&gt;good work.a better way is to provide the PDF of this page&lt;img src=&quot;/mg/smilies/smile.gif&quot; width=&quot;21&quot; height=&quot;22&quot; alt=&quot;:)&quot; /&gt;</description>
</item>

</channel>
</rss>