Follow @Openwall on Twitter for new release announcements and other news
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date: Thu, 16 Jan 2014 07:32:05 +0100
From: magnum <john.magnum@...hmail.com>
To: john-users@...ts.openwall.com
Subject: Re: "Error" in Wordlist when processed by john…

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.