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…