Summary
The Property share button uses navigator.share + an unvalidated URL builder; the MortgageCalculator share HTML also serialises raw values into a URL.
Affected area
src/components/property/ShareButton.tsx
src/components/MortgageCalculator.tsx
Steps to reproduce / impact
A property title with newlines or shell metacharacters can break the share dialog or be misinterpreted downstream.
Expected behaviour
URL-encode all parameters, sanitise display strings to a constrained character set, validate the returned URL via URL constructor, and warn on cross-origin links.
Acceptance criteria
Summary
The Property share button uses
navigator.share+ an unvalidated URL builder; the MortgageCalculator share HTML also serialises raw values into a URL.Affected area
src/components/property/ShareButton.tsxsrc/components/MortgageCalculator.tsxSteps to reproduce / impact
A property title with newlines or shell metacharacters can break the share dialog or be misinterpreted downstream.
Expected behaviour
URL-encode all parameters, sanitise display strings to a constrained character set, validate the returned URL via
URLconstructor, and warn on cross-origin links.Acceptance criteria