Wednesday, 21 May 2014

COOKIE SQL INJECTION

this tut will teach you how how to sql inject via cookie [also known as 'session based' or 'cookie parameter'].

until now,we know about two methods:
GET - via url
http://site.com/*.php?id=1 union select ....
for example
http://www.evt-me.com/newsDetail.php?id=8
POST - via box
like this one
http://www.health.gov.mv/ (in the search box).

and now,we gonna learn cookie.
lets strat:
first,you need google chrome.
https://www.google.com/chrome/index.html










after you have downloaded,download the addon "Cookie Editor" from Philip.
https://chrome.google.com/webstore/searc...itor?hl=en
click "+ ADD TO CHROME"


first,thanks to Hooded Robin,that gave me the site for testing.thanks man.

now after we downloaded chrome and cookie editor,lets strat for real-
get in vuln site.
for example-
http://www.caucusforamerica.com/opinion.art.php
not id=1 or search box. lets do it with cookie sqli.
click the cookie editor sign


and add ' to the value "sessID"
Spoiler (Click to Hide)
[Image: 444qj.png]


and hit sumbit.
error!

for advanced-
we can learn from the error:
-one n.o.columns
-mq off
-full path /home/americas/public_html/admin/
for beginners-
lets try finding n.o.columns (number of columns) with group by.
click the cookie editor sign and write

Code:
' group by 2--+
Spoiler (Click to View)
Unknown column '2' in 'group statement'
so
Code:
' union select 1 and 'a'='a


(the 'a'='a part is for closing a string)
NOTICE: we cant use union here cause the query get inside a "insert into" query..but union will work on other site.
you can use 'and' for extract data (' and (select 1 from table)--+)

hope you learned something


No comments:

Post a Comment