Skip to content

Instantly share code, notes, and snippets.

@jayaramyalla
Forked from Arno0x/calc.hta
Created September 30, 2018 12:23
Show Gist options
  • Save jayaramyalla/4c6dec59010b2e81ea87751ab38e4cae to your computer and use it in GitHub Desktop.
Save jayaramyalla/4c6dec59010b2e81ea87751ab38e4cae to your computer and use it in GitHub Desktop.
HTML Application example to be executed by mstha.exe
<html>
<head>
<HTA:APPLICATION ID="HelloExample">
<script language="jscript">
var c = "cmd.exe /c calc.exe";
new ActiveXObject('WScript.Shell').Run(c);
</script>
</head>
<body>
<script>self.close();</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment