Apk Time Graveyard Pin Info
T=0923 decimal = 923. 923 ^ 3243 :
Button enter = findViewById(R.id.btn_enter); EditText pinInput = findViewById(R.id.pin_input); enter.setOnClickListener(v -> { String pin = pinInput.getText().toString(); if (checkPin(pin)) { Toast.makeText(this, "Graveyard opened! Flag: CTF{" + pin + "}", Toast.LENGTH_LONG).show(); } else { Toast.makeText(this, "Rest in peace... wrong PIN.", Toast.LENGTH_SHORT).show(); } }); Found in the same class: apk time graveyard pin
We need sum=24, so let’s brute correctly: T=0923 decimal = 923
(X ^ T) & 0xFFFF = 0xCA7 => X ^ T = 0xCA7 (mod 65536) => X = T ^ 0xCA7 (mod 65536) So X is between 0 and 65535, but we need a 6-digit decimal representation with digit sum 24. EditText pinInput = findViewById(R.id.pin_input)