GithubHelp home page GithubHelp logo

Comments (5)

mmndaniel avatar mmndaniel commented on August 18, 2024 1

@serapath yes, something like that, the main points are that args should be joined (to address this), and buffered (to address the OP). I'd say the optimal parser for this case would be another document (new DOMParser().parseFromString('...', 'text/html') with the same readyState and content as the target document, because if reflects the actual resulting DOM the best. To illustrate my latest point:

var doc1 = new DOMParser().parseFromString('<html><head><body><frameset><frame src="/" /></frameset></body></head><html>', 'text/html');
var doc2 = new DOMParser().parseFromString('<html><frameset><frame src="/" /></frameset><html>', 'text/html');
// compare doc1 and 2

I found it the hard way when an attempted fix broke a similar test...

from snow.

mmndaniel avatar mmndaniel commented on August 18, 2024

related: bypass with multiple arguments to doc.write

var f = document.createElement('iframe');
document.body.appendChild(f);
f.contentDocument.write('<iframe id="tst', '"></iframe><script>tst.contentWindow.alert(1);</script>');

from snow.

serapath avatar serapath commented on August 18, 2024

wow, mental.

Given there is

return function() {
to deal with .innerHTML, could the same be applied here by hooking into contentDocument.write?

Basically this snippet fixes it and maybe can be generalized.

var f = document.createElement('iframe');
document.body.appendChild(f);
fix(f) // should be done by patched `.appendChild`
f.contentDocument.write('<iframe id="tst');
f.contentDocument.write('"></iframe><script>tst.contentWindow.alert(1);</script>');



function fix (f) {
  var old_write = f.contentDocument.write
  var content = ''
  const parser = document.createElement('div')
  f.contentDocument.write = patched_write
  
  function patched_write (...args) {
    content += args.join('')
    parser.innerHTML = content
    const iframes = [...parser.querySelectorAll('iframe')]
    if (iframes.length) {
      f.contentDocument.close()
      iframes.forEach(iframe => {
        var [s1, s2] = [
          `console.log('apply snow to iframe')`,
          `tst.contentWindow.alert = (...args) => console.log(...args)`
        ].map(s => Object.assign(document.createElement('script'), { textContent: `${s}` }))
        iframe.before(s1)
        iframe.after(s2)
      })
      console.log('fuck')
      console.log(parser.children)
      old_write.apply(f.contentDocument, [parser.innerHTML])
    } else {
      old_write.apply(f.contentDocument, args)
    }
  }
}

from snow.

weizman avatar weizman commented on August 18, 2024

yes, and #80 (comment)

from snow.

weizman avatar weizman commented on August 18, 2024

Sorry to ruin the party guys, but with the help of #118 we might not need to dig too deep into this (thanks for the help!)

from snow.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.