Beispiel #1
0
 public bruteforce(string email, StreamReader s, ListBox lBox)
 {
     this.vk      = new Vkontakte(lBox);
     this.mode    = 2;
     this.target  = email;
     this.sReader = s;
 }
Beispiel #2
0
 public bruteforce(string chars_string, int i, string email, ListBox lBox)     // Mode 0;
 {
     this.vk     = new Vkontakte(lBox);
     this.mode   = 0;
     this.chars  = getChars(chars_string);   // Определили алфавит
     this.length = i;                        // Длина паролей
     this.target = email;
     this.count  = this.chars.Length;
     this.x      = new int[i];   //  count ^ i
 }
Beispiel #3
0
 public bruteforce(StreamReader s, ListBox lBox)                               // Mode 1;
 {
     this.vk      = new Vkontakte(lBox);
     this.mode    = 1;
     this.sReader = s;
 }