テキストファイル demonne.sql
が与えられ、customersの数を要求された。
ファイルを観察すると、103行目と104行目にcustomersのデータがあった。
),(
の数を数えると、9998個あった。
区切りの後のデータ9998個に加え、最初の区切りの前にも1行に1個、合計2個のデータがあるので、合計でデータ数は10000であるとわかる。
これに基づいてflagが得られた。
A text file demonne.sql
was given and the number of customers was asked.
Observing the text file, I found data about customers in the 103rd and 104th lines.
Counting the delimiter ),(
in this part using replacing function on
In addition to the 9998 entries after the delimiters, there is one entry before the first delimiters in the each two lines. Therefore, there are 10000 entries in total.
I obtained the flag based on this.