1
0
Fork 0
mirror of https://github.com/klezVirus/CVE-2021-40444.git synced 2024-11-14 09:57:55 +00:00
CVE-2021-40444/test/calc.vbs

9 lines
143 B
Text

Function Calc()
Dim wsh
Set wsh = CreateObject("Wscript.Shell")
wsh.run "cmd /c calc.exe"
Set wsh = Nothing
End Function
Calc