private variables in Solidity does not provide actual privacy
address private s_owner;
variables are assigned to storage. In this case it can be read by reading storage slot 0
This is a high risk finding because it completely violates the privacy intention of the contract.
manual analysis
don't store sensitive information onchain
encrypt variables that are stored
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.