Unknown error (modes 1410/1420)
#6
(08-24-2012, 06:24 PM)Xanadrel Wrote: Fixed with hashcat-cli beta, thanks Rub3nCT Smile.
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.


Messages In This Thread
Unknown error (modes 1410/1420) - by Rub3nCT - 08-21-2012, 07:15 PM
RE: Unknown error (modes 1410/1420) - by atom - 08-21-2012, 08:20 PM
RE: Unknown error (modes 1410/1420) - by Rub3nCT - 08-21-2012, 08:48 PM
RE: Unknown error (modes 1410/1420) - by Rub3nCT - 08-24-2012, 02:27 AM
RE: Unknown error (modes 1410/1420) - by Xanadrel - 08-24-2012, 06:24 PM
RE: Unknown error (modes 1410/1420) - by Rub3nCT - 08-24-2012, 06:57 PM
RE: Unknown error (modes 1410/1420) - by Xanadrel - 08-24-2012, 09:54 PM
RE: Unknown error (modes 1410/1420) - by atom - 08-25-2012, 10:09 AM
RE: Unknown error (modes 1410/1420) - by Rub3nCT - 08-25-2012, 03:34 PM
RE: Unknown error (modes 1410/1420) - by Rub3nCT - 09-27-2012, 02:24 PM
RE: Unknown error (modes 1410/1420) - by M@LIK - 09-27-2012, 02:30 PM
RE: Unknown error (modes 1410/1420) - by Rub3nCT - 09-27-2012, 02:35 PM