With kerbrute.py:
python kerbrute.py -domain <domain_name> -users <users_file> -passwords <passwords_file> -outputfile <output_file>With Rubeus version with brute module:
| var Util = { | |
| toBinary: function(input) { | |
| var result = ""; | |
| for (var i = 0; i < input.length; i++) { | |
| var bin = input[i].charCodeAt().toString(2); | |
| result += Array(8 - bin.length + 1).join("0") + bin; | |
| } | |
| return result; | |
| }, |
With kerbrute.py:
python kerbrute.py -domain <domain_name> -users <users_file> -passwords <passwords_file> -outputfile <output_file>With Rubeus version with brute module: