application/octet-stream file get as text/plain
Clash Royale CLAN TAG#URR8PPP
up vote
0
down vote
favorite
I downloaded a password list file that has MIME type application/octet-stream. When I open the file using gedit
or when I run the head
command I see the following:
$ head eNtr0pY_ALL_sort_uniq.dic
How can I know what the characters that appear as a square are? Could I get the file as text/plain? I mean if this is a list of passwords that must be UTF-8 chars, right? Then why are they not showed like that?
If I execute file command it says: eNtr0pY_ALL_sort_uniq.dic: data
If I do the same with the -i option it says:
$ file -i eNtr0pY_ALL_sort_uniq.dic
eNtr0pY_ALL_sort_uniq.dic: application/octet-stream; charset=binary
UPDATE:
If I execute the following command $ od -t c eNtr0pY_ALL_sort_uniq.dic > e.txt
I see the following in the e.txt
file:
0000000 n 001 n 001 001 001 n 001 001 001 001 001 001 001 001 1
0a 01 0a 01 01 01 0a 01 01 01 01 01 01 01 01 31
0000020 n 001 002 n 001 002 003 004 n 001 030 n 001 0 n 001
0a 01 02 0a 01 02 03 04 0a 01 18 0a 01 30 0a 01
0000040 1 1 2 3 4 n 001 1 2 1 2 3 4 n 001 1
31 31 32 33 34 0a 01 31 32 31 32 33 34 0a 01 31
0000060 2 3 1 2 3 4 n 001 1 2 3 4 n 001 A B
32 33 31 32 33 34 0a 01 31 32 33 34 0a 01 41 42
0000100 C 1 2 3 4 n 001 A B C D 1 2 3 4 n
43 31 32 33 34 0a 01 41 42 43 44 31 32 33 34 0a
I do not understand what 001 means in ASCII. Could it be that it means that it is not an ASCII char. In that case would it be possible to convert that chars to UTF-8?
I also tried the following getting this error message:
$ iconv -f application/octet-stream; -t UTF-8 eNtr0pY_ALL_sort_uniq.dic -o e_utf8.txt
iconv: conversion from `application/octet-stream' is not supported
Try `iconv --help' or `iconv --usage' for more information.
password mime-types
add a comment |Â
up vote
0
down vote
favorite
I downloaded a password list file that has MIME type application/octet-stream. When I open the file using gedit
or when I run the head
command I see the following:
$ head eNtr0pY_ALL_sort_uniq.dic
How can I know what the characters that appear as a square are? Could I get the file as text/plain? I mean if this is a list of passwords that must be UTF-8 chars, right? Then why are they not showed like that?
If I execute file command it says: eNtr0pY_ALL_sort_uniq.dic: data
If I do the same with the -i option it says:
$ file -i eNtr0pY_ALL_sort_uniq.dic
eNtr0pY_ALL_sort_uniq.dic: application/octet-stream; charset=binary
UPDATE:
If I execute the following command $ od -t c eNtr0pY_ALL_sort_uniq.dic > e.txt
I see the following in the e.txt
file:
0000000 n 001 n 001 001 001 n 001 001 001 001 001 001 001 001 1
0a 01 0a 01 01 01 0a 01 01 01 01 01 01 01 01 31
0000020 n 001 002 n 001 002 003 004 n 001 030 n 001 0 n 001
0a 01 02 0a 01 02 03 04 0a 01 18 0a 01 30 0a 01
0000040 1 1 2 3 4 n 001 1 2 1 2 3 4 n 001 1
31 31 32 33 34 0a 01 31 32 31 32 33 34 0a 01 31
0000060 2 3 1 2 3 4 n 001 1 2 3 4 n 001 A B
32 33 31 32 33 34 0a 01 31 32 33 34 0a 01 41 42
0000100 C 1 2 3 4 n 001 A B C D 1 2 3 4 n
43 31 32 33 34 0a 01 41 42 43 44 31 32 33 34 0a
I do not understand what 001 means in ASCII. Could it be that it means that it is not an ASCII char. In that case would it be possible to convert that chars to UTF-8?
I also tried the following getting this error message:
$ iconv -f application/octet-stream; -t UTF-8 eNtr0pY_ALL_sort_uniq.dic -o e_utf8.txt
iconv: conversion from `application/octet-stream' is not supported
Try `iconv --help' or `iconv --usage' for more information.
password mime-types
1
what doesfile(1)
report for it?
â thrig
Oct 29 '17 at 0:44
1
Have you considered asking the authors of that file how it's supposed to be used?
â Satà  Katsura
Oct 29 '17 at 7:03
od -t c -t x1 eNtr0pY_ALL_sort_uniq.dic
may help
â Hauke Laging
Oct 29 '17 at 13:20
@HaukeLaging Thank you for answering. I have updated my question
â v8rs
Oct 29 '17 at 16:30
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I downloaded a password list file that has MIME type application/octet-stream. When I open the file using gedit
or when I run the head
command I see the following:
$ head eNtr0pY_ALL_sort_uniq.dic
How can I know what the characters that appear as a square are? Could I get the file as text/plain? I mean if this is a list of passwords that must be UTF-8 chars, right? Then why are they not showed like that?
If I execute file command it says: eNtr0pY_ALL_sort_uniq.dic: data
If I do the same with the -i option it says:
$ file -i eNtr0pY_ALL_sort_uniq.dic
eNtr0pY_ALL_sort_uniq.dic: application/octet-stream; charset=binary
UPDATE:
If I execute the following command $ od -t c eNtr0pY_ALL_sort_uniq.dic > e.txt
I see the following in the e.txt
file:
0000000 n 001 n 001 001 001 n 001 001 001 001 001 001 001 001 1
0a 01 0a 01 01 01 0a 01 01 01 01 01 01 01 01 31
0000020 n 001 002 n 001 002 003 004 n 001 030 n 001 0 n 001
0a 01 02 0a 01 02 03 04 0a 01 18 0a 01 30 0a 01
0000040 1 1 2 3 4 n 001 1 2 1 2 3 4 n 001 1
31 31 32 33 34 0a 01 31 32 31 32 33 34 0a 01 31
0000060 2 3 1 2 3 4 n 001 1 2 3 4 n 001 A B
32 33 31 32 33 34 0a 01 31 32 33 34 0a 01 41 42
0000100 C 1 2 3 4 n 001 A B C D 1 2 3 4 n
43 31 32 33 34 0a 01 41 42 43 44 31 32 33 34 0a
I do not understand what 001 means in ASCII. Could it be that it means that it is not an ASCII char. In that case would it be possible to convert that chars to UTF-8?
I also tried the following getting this error message:
$ iconv -f application/octet-stream; -t UTF-8 eNtr0pY_ALL_sort_uniq.dic -o e_utf8.txt
iconv: conversion from `application/octet-stream' is not supported
Try `iconv --help' or `iconv --usage' for more information.
password mime-types
I downloaded a password list file that has MIME type application/octet-stream. When I open the file using gedit
or when I run the head
command I see the following:
$ head eNtr0pY_ALL_sort_uniq.dic
How can I know what the characters that appear as a square are? Could I get the file as text/plain? I mean if this is a list of passwords that must be UTF-8 chars, right? Then why are they not showed like that?
If I execute file command it says: eNtr0pY_ALL_sort_uniq.dic: data
If I do the same with the -i option it says:
$ file -i eNtr0pY_ALL_sort_uniq.dic
eNtr0pY_ALL_sort_uniq.dic: application/octet-stream; charset=binary
UPDATE:
If I execute the following command $ od -t c eNtr0pY_ALL_sort_uniq.dic > e.txt
I see the following in the e.txt
file:
0000000 n 001 n 001 001 001 n 001 001 001 001 001 001 001 001 1
0a 01 0a 01 01 01 0a 01 01 01 01 01 01 01 01 31
0000020 n 001 002 n 001 002 003 004 n 001 030 n 001 0 n 001
0a 01 02 0a 01 02 03 04 0a 01 18 0a 01 30 0a 01
0000040 1 1 2 3 4 n 001 1 2 1 2 3 4 n 001 1
31 31 32 33 34 0a 01 31 32 31 32 33 34 0a 01 31
0000060 2 3 1 2 3 4 n 001 1 2 3 4 n 001 A B
32 33 31 32 33 34 0a 01 31 32 33 34 0a 01 41 42
0000100 C 1 2 3 4 n 001 A B C D 1 2 3 4 n
43 31 32 33 34 0a 01 41 42 43 44 31 32 33 34 0a
I do not understand what 001 means in ASCII. Could it be that it means that it is not an ASCII char. In that case would it be possible to convert that chars to UTF-8?
I also tried the following getting this error message:
$ iconv -f application/octet-stream; -t UTF-8 eNtr0pY_ALL_sort_uniq.dic -o e_utf8.txt
iconv: conversion from `application/octet-stream' is not supported
Try `iconv --help' or `iconv --usage' for more information.
password mime-types
edited Oct 29 '17 at 16:39
asked Oct 28 '17 at 22:59
v8rs
163
163
1
what doesfile(1)
report for it?
â thrig
Oct 29 '17 at 0:44
1
Have you considered asking the authors of that file how it's supposed to be used?
â Satà  Katsura
Oct 29 '17 at 7:03
od -t c -t x1 eNtr0pY_ALL_sort_uniq.dic
may help
â Hauke Laging
Oct 29 '17 at 13:20
@HaukeLaging Thank you for answering. I have updated my question
â v8rs
Oct 29 '17 at 16:30
add a comment |Â
1
what doesfile(1)
report for it?
â thrig
Oct 29 '17 at 0:44
1
Have you considered asking the authors of that file how it's supposed to be used?
â Satà  Katsura
Oct 29 '17 at 7:03
od -t c -t x1 eNtr0pY_ALL_sort_uniq.dic
may help
â Hauke Laging
Oct 29 '17 at 13:20
@HaukeLaging Thank you for answering. I have updated my question
â v8rs
Oct 29 '17 at 16:30
1
1
what does
file(1)
report for it?â thrig
Oct 29 '17 at 0:44
what does
file(1)
report for it?â thrig
Oct 29 '17 at 0:44
1
1
Have you considered asking the authors of that file how it's supposed to be used?
â Satà  Katsura
Oct 29 '17 at 7:03
Have you considered asking the authors of that file how it's supposed to be used?
â Satà  Katsura
Oct 29 '17 at 7:03
od -t c -t x1 eNtr0pY_ALL_sort_uniq.dic
may helpâ Hauke Laging
Oct 29 '17 at 13:20
od -t c -t x1 eNtr0pY_ALL_sort_uniq.dic
may helpâ Hauke Laging
Oct 29 '17 at 13:20
@HaukeLaging Thank you for answering. I have updated my question
â v8rs
Oct 29 '17 at 16:30
@HaukeLaging Thank you for answering. I have updated my question
â v8rs
Oct 29 '17 at 16:30
add a comment |Â
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f401139%2fapplication-octet-stream-file-get-as-text-plain%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
1
what does
file(1)
report for it?â thrig
Oct 29 '17 at 0:44
1
Have you considered asking the authors of that file how it's supposed to be used?
â Satà  Katsura
Oct 29 '17 at 7:03
od -t c -t x1 eNtr0pY_ALL_sort_uniq.dic
may helpâ Hauke Laging
Oct 29 '17 at 13:20
@HaukeLaging Thank you for answering. I have updated my question
â v8rs
Oct 29 '17 at 16:30