I am writing unit-tests for an elliptic curve implementation (secp256r1 / prime256v1) and need to find a curve point with $y = 0$ to reach coverage for an edge case (special handling of curve points with $y = 0$ during point doubling).
The curve is defined as
$$ y^2 \bmod p \equiv x^3 + ax + b \bmod p $$
with p, a and b being fixed constants
$$ p=115792089210356248762697446949407573530086143415290314195533631308867097853951 $$
$$ a=115792089210356248762697446949407573530086143415290314195533631308867097853948=-3 \mod p $$
$$ b=41058363725152142129326129780047268409114441015993725554835256314039467401291 $$
and I must find
$$ 0 \bmod p \equiv x^3 + ax + b \bmod p $$
I would appreciate your help. If you know a solution or a database (I think this is a common edge case for this named elliptic curve), please let me know :)
Best regards, Dustin