Skip to content

Lukakva/WiFicker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WiFicker

WiFi Hacker for Mac OS

Usage

Download the WiFi executable file and open it. From that point follow the lead!

Usage of Patternator

Patternato is a class which I wrote for this project, but you might find it useful as well!

Method

  • array is NSArray which contains characters (or words) for permutation
  • length is int which tells the function how long every permutated string should be
  • action is block pointer which will be called everytime a permutated string is generated and will be passed as an argument
[Patternator generatePatternsFromArray:array length:length action:block];

Example

#import "Patternator.h"
// some code
NSArray *chars = @[@"a", @"b", @"c", @"d", @"e"];
[Patternator generatePatternsFromArray:chars length:2 action:^(NSString *string, BOOL *shouldContinue) {
    NSLog(@"%@", string);
    string = nil; // it's better for memory reasons to unset the reference

    // if this current string is correct and you don't want the process to continue
    *shouldContinue = NO;
}];

The above will output the following aa ab ac ad ae ba bb bc bd be ca cb cc cd ce da db dc dd de ea eb ec ed ee

About

WiFi password bruteforce on Mac OS

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published