UI Redress Demo


Easy Choice

Good Button





Bad Button

  <iframe src="evil.html"
  width="120" height="70" align="center"></iframe>


Harder Choice

    iframe#fg10 {
      width: 120px;
      height: 95px;
      position: absolute;
      top: 555px;
      left: 14px;
      opacity: 0.1;
      z-index: 2;
    }

<iframe id="fg10" src="evil.html"></iframe>


Impossible Choice

    iframe#fg00 {
      width: 120px;
      height: 95px;
      position: absolute;
      top: 955px;
      left: 14px;
      opacity: 0.0;
      z-index: 2;
    }

<iframe id="fg00" src="evil.html"></iframe>


Source

Based on https://javascript.info/clickjacking

Posted 4-25-18 by Sam Bowne