I have a website that uses IFrame
in a page that loads other pages based on server side logic. So, if I do a View source, I would see something like this:
<iframe src="DeterminedOnServerSide.aspx" id="myFrame">
</iframe>
My question is - Is there any way, an attacker can change the src
attribute to point other users to a malicious website considering that the src
is determined on the server side?