For the complete documentation index, see llms.txt. This page is also available as Markdown.

CopyPasta

Level: Easy Points: 10 Type: Daily Challenge

Lab Interface

after viewing any snippet, we have option to share, which gives us link of snippet

Possible SQLi

Using simple payload ' or 1=1— - proves, it is vulnerable to SQLi

finding number of columns

' order by 7-- - gives error, hence the number of column is 6

using ' union select 1,2,3,4,5,sqlite_version()-- - confirm database is sqlite, visit here for more info

dumping table names using

users table looks interesting.

Next: dumping column names from table users

dumping username and password columns from users table

Last updated