Windows 7 BSOD fltsrv.sys

A customer reported that their computer had become unstable and has been crashing. Firing up BlueScreenView revealed that the driver fltsrv.sys was the culprit. After checking out the file it was clear that this driver belonged to Acronis. Installed Program Files showed the customer had True Image 2013 installed. As the client was now using our Managed…

SourceCode (VB.NET) Simple Brute force Class

In the past I’ve had to recover passwords from certain applications that customers don’t have or have simply forgotten. Here is a simple class I’ve written to generate key combinations used in brute force password cracking. Public Class cComboGenerator Dim Positions() As Byte Dim MaxLength As Integer = 10 Dim bCharSet() As Byte Dim bCombo() As Byte Public Sub…