1
0
mirror of https://github.com/mgeeky/Penetration-Testing-Tools.git synced 2024-12-25 02:19:46 +01:00
mgeeky-Penetration-Testing-.../red-teaming/code-exec-templates/wscript-shell-run-vbscript.hta

14 lines
239 B
Plaintext
Raw Normal View History

<html>
<head>
<script language="VBScript">
Sub foo
command = "notepad.exe"
Set objShell = CreateObject("Wscript.Shell")
objShell.Run command
End Sub
foo()
</script>
</head>
<body>
</body>
2020-05-06 19:22:32 +02:00
</html>