The Passwordstore::s_password is not encrypted in any way and stored on-chain. It is publicly visible.
Even a variable marked as private is publicly accessible. By accessing the contract's immediate storage anybody can see the password's byte representation, which can be easily converted to its corresponding string.
s_password occupies the second storage slot in Passwordstore and could be read.
Using foundry cast:
The supposed secret password is visible to anyone at any time.
foundry
manual review
Generally private data should not be stored on-chain. s_password should be encrypted to ensure it is only readable by the owner.
Private functions and state variables are only visible for the contract they are defined in and not in derived contracts. In this case private doesn't mean secret/confidential
The contest is live. Earn rewards by submitting a finding.
This is your time to appeal against judgements on your submissions.
Appeals are being carefully reviewed by our judges.