(08-24-2012, 06:24 PM)Xanadrel Wrote: Fixed with hashcat-cli beta, thanks Rub3nCT .Thanks guys. It will be possible to get a copy of this beta only for this time?
By the way I have a temp workaround if someone is interested, using rules instead of a salt file: salt-emulator.rule contains from ^0^0 to ^9^9
But if I do that I won't be able to use another rulesets, so I've coded a quick perl script to combine rulesets:
RuleCombinator.pl
Code:
#!/usr/bin/perl
use v5.10;
use strict;
use warnings;
print "\n Input rule set 1: ";
chomp (my $rule1 = <STDIN>);
open (RULE1, "$rule1") || die "Error: Cannot open $rule1!";
my @rule1 = <RULE1>;
close (RULE1);
print "\n Input rule set 2: ";
chomp (my $rule2 = <STDIN>);
open (RULE2, "$rule2") || die "Error: Cannot open $rule2!";
my @rule2 = <RULE2>;
close (RULE2);
print "\n Output file: ";
chomp (my $out = <STDIN>);
open (OUT, ">>$out") || die "Error: Cannot open $out!";
foreach my $line1 (@rule1) {
chomp $line1;
foreach my $line2 (@rule2) {
chomp $line2;
say OUT "$line1$line2";
}
}
close (OUT);
Now I can crack the salted hashes with the non salted mode (1400), I just need to delete the first two chars of the found list. Everything seems to be possible with hashcat and a little brain, nice work guys.