
# Keres
![Build Status](https://img.shields.io/travis/twbs/bootstrap/v4-dev.svg)
[![CDNJS](https://img.shields.io/badge/Keres-0.1.4-green.svg)](https://cdnjs.com/libraries/keres/)

Keres is a simple tool for pentest professionals & developers who are curious in bruteforce algorithms
## Install
```sh
1.  npm install --save @chrispro/keres
OR
2.  npm install -g keres 

```
## API
```
var strings= bf({
  len: 20,
  chars: "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$%^&*()-_+=~`[]{}|\:;'<>,.?/",
  filterSimilarChars: true,
  step: function (str) {
  console.log('generatedID: ' + str);
  },
  end: function (strs,pattern) {
    strParam2 = strs;
     strs.should.eql(['ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$%^&*()']);
	console.log();
  }
});



```
## Commando examples
```CMD's



    node keres

    node keres --inspect http://www.myexamplewebiste.com 

    node keres --v8=1
	
    node keres --debug

   
