Inj3ction Time
100 points Hard

I stumbled upon this website: http://web.ctflearn.com/web8/ and I think they have the flag in their somewhere. UNION might be a helpful command

Flag
Rating 4.71
5
4
3
2
1

Discussion

that challenge pretty hard for me without hint from comment :)) but okay, im done

0

Paradoxically it's pretty easy to solve this using sqlmap, picking correct table to inject and that's all. Also, it was fun and some practical lesson abt SQL injection. Very Good Challenge bro!

0

It was a pain for me but did it finally

0

sqlinjection is easy for me :V

0

Give me an answer, friends. I'm tired of trying to find it

0

I'm master in union based sql injection

0

sqlmap is carring

0

as a hint try finding number of columns, try union and then try finding table name, then column name and then find column name from table name

0

try not to use any tool do it manually for better learning

0

Good Challenge i used splmap in Linux

0

This was really quick but fun. The hint gave it away instantly for me

1

Hello,

I have a doubt.

when given an id, it returns 3 text values (name,breed and color). When I try the payload (id=1+union+select+'a','b','c','d') why is it returning nothing.

because since when an id is given it is returning text values the result from the union operation should be text values or union query will fail.

but when I use the below payload it is working fine. id=1+union+select+1,2,3,4

the above query should cause error and should not give any results. But the app is returning 1,2,3 values on to the website.

What is happening here? Could anyone explain me?

Thanks

inplace of 1 in id=1+union+select+1,2,3,4 I have used 'a'. SO the query now is

id=1+union+select+'a',2,3,4. <---- This is returning 0 results.

But when I use below query it is returning table names.

id=1+union+select+table_name,2,3,4 from information_schema.tables <---- returns table names

No idea why. Could someone please explain?

THanks

0