- May
- 13,399
- 190
This script works (to get the timestamp of https://jpsoft.com/downloads/v28/tcmd.exe).
Both of these make TCC disappear (at least back to v24).
It's a stack buffer overrun in NTDLL.DLL. I have a .DMP file if it'll help.
Here's the script.
Code:
v:\> ifiletime.vbs
Sun, 21 Nov 2021 20:18:22 GMT
Both of these make TCC disappear (at least back to v24).
Code:
script ifiletime.vbs
script /e VBScript ifiletime.vbs
It's a stack buffer overrun in NTDLL.DLL. I have a .DMP file if it'll help.
Here's the script.
Code:
'ifiletime.vbs
Dim h
Dim lastmod
Set h = CreateObject("MSXML2.ServerXMLHTTP")
h.Open "HEAD", "https://jpsoft.com/downloads/v28/tcmd.exe", False
h.send
lastmod = h.getResponseHeader("Last-Modified")
WScript.Echo(lastmod)