Follow @Openwall on Twitter for new release announcements and other news
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date: Thu, 16 Jan 2014 21:12:48 +0000
From: Demian Smith <demian.smith@....de>
To: john-users@...ts.openwall.com
Subject: Re: "Error" in Wordlist when processed by john…

Magnum,

thanks a lot for the quick reply and the great work - I'm going to check
it out to see what happens then :o)

Demian

★ On 14/01/16 09:12 p.m. magnum wrote ★
> On 2014-01-16 00:43, Demian Smith wrote:
>> I saw these strange glyphs marked
>> with the question mark in the following picture:
>> http://s1.bild.me/bilder/260513/9415071wordlist.png
>>
>> I already tried to "sed" them out, with
>> sed 's/\o331//g'
>> and with
>> s/\o357//g' file | sed 's/\o277//g' | sed 's/\onnn//g'275 > file2
>>
>> but I can't get rid of these glyphs / lines containing them. It worked
>> for other glyphs I needed to get rid of, but not for these.
> 
> Mute them like this:
> 
>    perl -ne 'print unless /[\x80-\xff]/' file > file.ascii
> 
> You can filter them out to a separate file like this:
> 
>    perl -ne 'print if /[\x80-\xff]/' file > file.8bit
> 
> 
> magnum
> 
> 

Powered by blists - more mailing lists

Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.