Category: WTL

Windows Template Library related

Interactive RTSP Client

There has been a need in interactive RTSP (Real Time Streaming Protocol) utility to check RTSP-enabled MPEG-4 cameras – I did not find anything useful, so here goes in-house built one: Features: TCP connections to RTSP servers (UDP is yet to do) OPTIONS and DESCRIBE buttons provide templates for RTSP messages to send to RTSP…

Read the full article

Reversing MD5 using CryptoAPI

Improving MD5 cracking application: with the use of MS Windows CryptoAPI subsystem, cracking speed increased by over 25%. I am looking forward to getting evaluation version of Intel IPP Cryptography library to compare results to obtained using CryptoAPI. See Also: CryptAcquireContext, CryptCreateHash, CALG_MD5, CryptHashData, CCryptProv, CCryptMD5Hash. Partial (some header files are excluded) Visual C++.NET 2005…

Read the full article

Reversing MD5

This utility will attempt to brute force reverse/crack a hash value created by Message-Digest algorithm 5 (MD5) one-way function. You feed hashes in, it tries to find the argument. Possibly this is not the fastest implementation but we have what we have. There is support for multiple processors though and here source code go as…

Read the full article

WTL CCommandBar and CPropertyShet bug: Windows unexpectedly freeze

Symptoms When a wizard window (CPropertyShet) is popped up to the screen while CCommandBar’s popup menu is active, the windows lock up, as if SetCapture was called without pairing ReleaseCapture, until the application is reactivated using mouse after activating another application. Mispaired SetCapture is however not not called from command bar class directly, it is…

Read the full article

Alax.Info Replace in Files 1.1

Replace in Files is updated to keep up with the time as well as implement a feature that appeared to be convenient. What’s new in this build? Migration to Visual Studio .NET 2005 compiler, which is pretty cool itself since the compiler better optimizes the code, and in addition the binary is self sufficient and…

Read the full article

UPnP Scanner

Universal Plug and Play framework offers capabilities to discover and control various network devices. Microsoft Windows operating systems (Windows Millenium Edition, Windows XP, Windows Vista) offer UPnP APIs: Control Point API and Device Host API. These are useful to communicate to network appliances. The UPnP Scanner utility scans for available devices and show device details…

Read the full article