Rule Piping Request
#12
here is a perl version. not the fastest, but had to write it quickly. maybe i add a filtering tool to hashcat-utils. till that, use this:

$ perl calc.pl < in.dict > out.dict

Code:
#!/usr/bin/env perl

use strict;
use warnings;

while (my $line = <>)
{
  chomp ($line);

  my @chrs = split "", $line;

  my $f = 0;

  for my $chr (@chrs)
  {
    my $c = ord ($chr);

    if (($c < 0x20) || ($c > 0x7f))
    {
      $f = 1;

      last;
    }
  }

  next if $f;

  print $line, "\n";
}


Messages In This Thread
Rule Piping Request - by Hash-IT - 11-17-2011, 04:49 PM
RE: Rule Piping Request - by undeath - 11-17-2011, 09:46 PM
RE: Rule Piping Request - by Hash-IT - 11-17-2011, 10:36 PM
RE: Rule Piping Request - by atom - 11-18-2011, 10:25 AM
RE: Rule Piping Request - by undeath - 11-18-2011, 02:15 PM
RE: Rule Piping Request - by Hash-IT - 11-18-2011, 07:00 PM
RE: Rule Piping Request - by atom - 11-19-2011, 11:03 AM
RE: Rule Piping Request - by Hash-IT - 11-19-2011, 07:40 PM
RE: Rule Piping Request - by Hash-IT - 11-21-2011, 07:32 PM
RE: Rule Piping Request - by atom - 11-22-2011, 05:18 AM
RE: Rule Piping Request - by Hash-IT - 11-22-2011, 01:28 PM
RE: Rule Piping Request - by atom - 11-22-2011, 08:13 PM
RE: Rule Piping Request - by Hash-IT - 11-23-2011, 01:13 AM
RE: Rule Piping Request - by atom - 11-29-2011, 05:04 PM
RE: Rule Piping Request - by Hash-IT - 11-29-2011, 06:22 PM
RE: Rule Piping Request - by Hash-IT - 11-29-2011, 07:31 PM
RE: Rule Piping Request - by atom - 11-30-2011, 11:51 AM
RE: Rule Piping Request - by Hash-IT - 11-30-2011, 01:24 PM
RE: Rule Piping Request - by atom - 11-30-2011, 01:56 PM
RE: Rule Piping Request - by thomaseriksen - 12-07-2011, 08:13 PM
RE: Rule Piping Request - by atom - 12-07-2011, 10:42 PM