Exetools  

Go Back   Exetools > General > General Discussion

Notices

Closed Thread
 
Thread Tools Display Modes
  #1  
Old 11-02-2005, 04:24
ivanov ivanov is offline
uninvited_guest
 
Join Date: Aug 2004
Location: Lubljana
Posts: 178
Rept. Given: 58
Rept. Rcvd 3 Times in 3 Posts
Thanks Given: 44
Thanks Rcvd at 13 Times in 11 Posts
ivanov Reputation: 3
RAR Password in 5 -15 minutes? Do you believe that?

Someone I know claimed that he can break RAR password protection using tricks just in 5-15 minutes (let's say 6 chars password). Wow,man, do you believe that? I need comments, guys. OK I read some comments on minawahib1's post on request site, but I need to know whether it is really possible somehow or absolutely NOT (for this moment). Are you really really sure AES unbreakable for now? Thanks..

Last edited by ivanov; 11-02-2005 at 04:33.
  #2  
Old 11-02-2005, 04:44
MaRKuS-DJM's Avatar
MaRKuS-DJM MaRKuS-DJM is offline
Cracker + Unpacker
 
Join Date: Aug 2003
Location: Virtual World / Network
Posts: 553
Rept. Given: 7
Rept. Rcvd 6 Times in 4 Posts
Thanks Given: 3
Thanks Rcvd at 16 Times in 10 Posts
MaRKuS-DJM Reputation: 6
depends on the password. if i have a 1-5 char password, i can break it also in this time (and faster )

i don't see any holes in the implemention, so it's not possible.
  #3  
Old 11-02-2005, 05:53
Dr.Golova
 
Posts: n/a
Quote:
Originally Posted by ivanov
Are you really really sure AES unbreakable for now?
Don't forget about 0x40000 iterations of SHA-1 based hash for "password to decryption key" transformation - it's take about 0.1 sec per password on my machine (2.5GHz). If it's not joke - it's at least not simple bruteforce (but how bruteforce without decompression? you can't know even one byte from compressed stream)
  #4  
Old 11-02-2005, 18:23
Sten Sten is offline
Friend
 
Join Date: Jan 2002
Posts: 50
Rept. Given: 0
Rept. Rcvd 0 Times in 0 Posts
Thanks Given: 0
Thanks Rcvd at 0 Times in 0 Posts
Sten Reputation: 0
Seems to be a fake (due to the 0x40000 iterations of SHA-1 Dr. Golova mentioned) or the guy you know has some hardware implementation that cracks .rar passwords in parallel on several thousands devices.
  #5  
Old 11-02-2005, 18:32
Dmit
 
Posts: n/a
Quote:
Originally Posted by ivanov
Someone I know claimed that he can break RAR password protection using tricks just in 5-15 minutes (let's say 6 chars password).
Just give some RAR with 6-chars password to "someone you know" and wait for 5-15 minutes. Or 15 hours. After that you would know for sure if trick really exists.


P.S. Actually, I knew one trick with such efficiency - rectothermal cryptanalysis.
  #6  
Old 11-02-2005, 20:25
Sten Sten is offline
Friend
 
Join Date: Jan 2002
Posts: 50
Rept. Given: 0
Rept. Rcvd 0 Times in 0 Posts
Thanks Given: 0
Thanks Rcvd at 0 Times in 0 Posts
Sten Reputation: 0
Dmit, rectothermal cryptanalysis - do you mean this method? :-D

hxxp://www.passwords.ru/photos/elcomhard.jpg
  #7  
Old 11-02-2005, 20:52
Asus Asus is offline
VIP
 
Join Date: Feb 2005
Posts: 586
Rept. Given: 113
Rept. Rcvd 27 Times in 13 Posts
Thanks Given: 129
Thanks Rcvd at 84 Times in 35 Posts
Asus Reputation: 28
I do not think it is easy when password is combine string + no# + spec chars.
  #8  
Old 11-03-2005, 03:46
ivanov ivanov is offline
uninvited_guest
 
Join Date: Aug 2004
Location: Lubljana
Posts: 178
Rept. Given: 58
Rept. Rcvd 3 Times in 3 Posts
Thanks Given: 44
Thanks Rcvd at 13 Times in 11 Posts
ivanov Reputation: 3
Thanks guys, I am with you, it's not that easy.

@Dmit: i am giving him a test now, I told him that you all wait the result....
  #9  
Old 11-03-2005, 03:56
Janus68
 
Posts: n/a
This can be true in the case of very small archives and short passwords -
just after decompression a whole archive you can see, if you use right password -
so only very short archive can be unpacked in responsible time.
  #10  
Old 11-03-2005, 06:54
cbs
 
Posts: n/a
Talking Rectothermal cryptanalysis rulez!

Quote:
Originally Posted by Janus68
This can be true in the case of very small archives <...> -
just after decompression a whole archive you can see, if you use right password
Really? I don't think so.
File is being encrypted after it's compressed!
So when you are trying to decompress encrypted archive the sequence is smth like this:

1). Decrypt file/block with given password (or hash of password, or hash(hash(password)), etc);
2). Calculate hash of decrypted file/block; // I think WinRAR uses for this only few bytes from the beginning of the archive, may be one block
3). Compare with valid hash (that valid hash is calculated when file is being archived/encrypted);
4). If bad hash - "Wrong password!";
5). Else - decrypt other blocks and decompress decrypted file.

There is NO need to decompress or decrypt the WHOLE file to check if password is valid. One block is enough.
So there is no difference what is being bruteforced - tiny or huge archive.

BTW if you try to encrypt file before compressing it, that encrypted file will have very "bad" entropy and file compression ratio will be ~0% [ (decompressed_size - compressed_size) / decompressed_size ]

@Sten
Yes, this method really works! RSA-8192 or true AES-256 in few minutes

Last edited by cbs; 11-03-2005 at 06:58.
  #11  
Old 11-03-2005, 12:40
deadlybugs deadlybugs is offline
Friend
 
Join Date: Jan 2005
Posts: 9
Rept. Given: 1
Rept. Rcvd 0 Times in 0 Posts
Thanks Given: 0
Thanks Rcvd at 0 Times in 0 Posts
deadlybugs Reputation: 0
and it also depends on your CPU speed
  #12  
Old 11-03-2005, 16:47
hanzi
 
Posts: n/a
I do not believe that . when password is combine string + spec chars
  #13  
Old 11-03-2005, 17:37
Dr.Golova
 
Posts: n/a
Quote:
Originally Posted by cbs
There is NO need to decompress or decrypt the WHOLE file to check if password is valid. One block is enough.
So there is no difference what is being bruteforced - tiny or huge archive.
Wrong. There is no "blocks" - winrar compress whole file at once, and known checksum (crc32) is for whole uncompressed file too.
Ofcourse you can try bruteforce smaller file in archive, or try found "stored" (uncompressed, only encrypted) files, but if such files absent in arc? =)

Last edited by Dr.Golova; 11-03-2005 at 17:41.
  #14  
Old 11-03-2005, 20:58
hosiminh hosiminh is offline
Friend
 
Join Date: Aug 2004
Posts: 203
Rept. Given: 2
Rept. Rcvd 1 Time in 1 Post
Thanks Given: 0
Thanks Rcvd at 4 Times in 4 Posts
hosiminh Reputation: 1
Exclamation

@cbs

Lets find out if you statement is true ; here is small rar archive packed with Winrar 3.x (max. compression , solid archive +password (encrypt file names) (14 chars long , chars are numbers+small letters)

Give me what is inside and i will believe you.
Attached Files
File Type: rar what_is_inside.rar (12.8 KB, 8 views)

Last edited by hosiminh; 11-03-2005 at 21:01.
  #15  
Old 11-03-2005, 22:34
Asus Asus is offline
VIP
 
Join Date: Feb 2005
Posts: 586
Rept. Given: 113
Rept. Rcvd 27 Times in 13 Posts
Thanks Given: 129
Thanks Rcvd at 84 Times in 35 Posts
Asus Reputation: 28
hehe, hosiminh is funny. I promise noone can do that at this time even brutce-force method.
Closed Thread


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Best way to get a rar password? Rhodium General Discussion 4 01-27-2004 22:57
Help with 60 minutes timelimit on a plugin crille General Discussion 4 08-23-2002 03:42


All times are GMT +8. The time now is 09:39.


Always Your Best Friend: Aaron, JMI, ahmadmansoor, ZeNiX, chessgod101
( 1998 - 2024 )