Quantcast
Channel: Take Command / TCC
Viewing all articles
Browse latest Browse all 2205

Capture DEBUGSTRING from TCC.EXE

$
0
0
Here is C# Code that will capture DEBUGSTRING output from TCC.EXE

I compiled this on my Windows 10 system with the following;

Code:
csc /nologo /platform:x64 /out:TccDebugListener.exe TccDebugListener.cs

Code:
using System;
using System.Diagnostics;
using System.IO.MemoryMappedFiles;
using System.Runtime.InteropServices;
using System.Text;

class Program
{
    [DllImport("kernel32.dll", SetLastError = true)]
    static extern IntPtr CreateEvent(IntPtr lpEventAttributes...

Read more

Viewing all articles
Browse latest Browse all 2205

Latest Images

Trending Articles



Latest Images