PivotOJ

Access Denied

시간 제한: 2000ms메모리 제한: 1024MB출처: NWERC 2021BOJ 23767

문제

Computer passwords have been around for a long time. In fact, 60 years ago \href{https://en.wikipedia.org/wiki/Compatible_Time-Sharing_System}{CTSS} was one of the first computers with a password. The implementation of this was very simple. In CTSS the password was stored in plain text in a file on disk. When logging in, the user would enter a password. The computer would then compare the password to the password on disk. If the comparison failed, it would deny access, if it succeeded, access would be allowed. Researchers at MIT were quick to discover several security flaws in this password system. We will explore one of them, the timing attack.

In a timing attack, we exploit that we can deduce a computation path from the time it takes to do the computation. In CTSS the password check was done using a simple string matching algorithm, similar to this:

bool CheckPassword(string pwd1, string pwd2) {
    if (pwd1.Length != pwd2.Length) {
        return false;
    }
    for (int i = 0; i < pwd1.Length; i++) {
        if (pwd1[i] != pwd2[i]) {
            return false;
        }
    }
    return true;
}

For the purpose of this problem, we will use a (very) simplified timing model and the above algorithm. The timing model looks as follows:

  • A branching statement (if or for) takes 11 ms.
  • An assignment, or update of a memory address takes 11 ms.
  • A comparison between two memory addresses takes 33 ms.
  • A return statement takes 11 ms.

The password consists of between 11 and 2020 English letters, upper or lower case, and digits.

예제

예제 1

입력
ACCESS DENIED (5 ms)

ACCESS DENIED (41 ms)

ACCESS DENIED (68 ms)

ACCESS GRANTED
출력
A

HunFhun

Hunter1

Hunter2
이 문제는 채점 준비 중입니다. 테스트 데이터가 확보되면 제출이 가능합니다.