Home | Community | Message Board

MagicBag Grow Bags
This site includes paid links. Please support our sponsors.


Welcome to the Shroomery Message Board! You are experiencing a small sample of what the site has to offer. Please login or register to post messages and view our exclusive members-only content. You'll gain access to additional forums, file attachments, board customizations, encrypted private messages, and much more!

Myyco.com Shop: Golden Teacher Liquid Culture For Sale

Jump to first unread post Pages: 1
Spread this number now
    #6855423 -

09 F9 11 02 9D 74 E3 5B D8 41 56 C5 63 56 88 C0. It's the HD-DVD processing key you can use to decrypt and play most HD-DVD movies in Linux. Movie studios are going ballistic over this leak.

i personally don't have any use for this, but i know there are a few linux users on this board who might be interested in this information.

:wink:


--------------------

Extras: Filter Print Post Top
Re: Spread this number now [Re: AlteredAgain]
    #6855453 -

this is much more useful:

http://forum.doom9.org/showthread.php?p=953484#post953484

Code:
// Processing Key
static unsigned char processing_key[16] = {0x09,0xF9,0x11,0x02,0x9D,0x74,0xE3,0x5B,0xD8,0x41,0x56,0xC5,0x63,0x56,0x88,0xC0};

// Encrypted C Value
static unsigned char encrypted_c_value[16] = {0x6D,0x02,0xCA,0xC6,0x7B,0x1A,0x7E,0x95,0xC2,0x16,0xEF,0xD4,0xC9,0x28,0x09,0xCF};

//Decrypted C Value
static unsigned char decrypted_c_value[16];
static unsigned char uv[4] = {0x00,0x00,0x00,0x01};

// Media Key
static unsigned char media_key[16];

//Encrypted Verification Data (King Kong)
static unsigned char encrypted_verification_data[16] = {0x87,0xB8,0xA2,0xB7,0xC1,0x0B,0x9F,0xAD,0xF8,0xC4,0x36,0x1E,0x23,0x86,0x59,0xE5};

//Decrypted Verification Data Should Be
static unsigned char decrypted_verification_data_should_be[8] = {0x01,0x23,0x45,0x67,0x89,0xAB,0xCD,0xEF};

//Decrypted Verification Data
static unsigned char decrypted_verification_data[16];

// Volume ID
static unsigned char volume_id[16] = {0x40,0x00,0x09,0x18,0x20,0x06,0x08,0x41,0x00,0x20,0x20,0x20,0x20,0x20,0x00,0x00};

//Decrypted Volume ID
static unsigned char decrypted_volumeid[16];

//Volume Unique Key
static unsigned char volume_unqiue_key[16];


// First decrypt the C-value with the processing key
oRijndael.MakeKey((char *)processing_key, CRijndael::sm_chain0, 16, 16);
oRijndael.DecryptBlock((char *)encrypted_c_value, (char *)decrypted_c_value);

// Then XOR it with with the uv (of the corresponding C-value)
for (j = 0; j < 16; j++)
{
if (j < 12)
{
media_key[j] = decrypted_c_value[j];
}
else
{
media_key[j] = decrypted_c_value[j]^uv[j-12];
}
}

// Then check if the resulting media key is correct using the verify media key record
oRijndael.MakeKey((char *)media_key, CRijndael::sm_chain0, 16, 16);
oRijndael.DecryptBlock((char *)encrypted_verification_data, (char *)decrypted_verification_data);

if (!memcmp(decrypted_verification_data_should_be, decrypted_verification_data, 8))
{
for (j = 0; j < 16; j++)
{
printf("%02X ", decrypted_verification_data[j]);
}
}
printf("\n");

// Then do a AES-G (basicly a decrypt and an XOR) on the media key + volumeID
oRijndael.MakeKey((char *)media_key, CRijndael::sm_chain0, 16, 16);
oRijndael.DecryptBlock((char *)volume_id, (char *)decrypted_volumeid);
for (j = 0; j < 16; j++)
{
volume_unqiue_key[j] = volume_id[j]^decrypted_volumeid[j];
}
printf("\n");

// This results in the Volume Unique Key
for (j = 0; j < 16; j++)
{
printf("%02X ", volume_unqiue_key[j]);
}
printf("\n");



--------------------
No statements made in any post or message by myself should be construed to mean that I am now, or have ever been, participating in or considering participation in any activities in violation of any local, state, or federal laws. All posts are works of fiction.

Extras: Filter Print Post Top
Re: Spread this number now [Re: kotik]
    #6855538 -

Yes, that is much much much more useful.


--------------------
delta9

Extras: Filter Print Post Top
Re: Spread this number now [Re: delta9]
    #6855757 -

It'll all be more useful when someone makes the into a user friendly gui like DVD Decryptor :yesnod:

Extras: Filter Print Post Top
Re: Spread this number now [Re: Boom]
    #6860279 -

They even got a t-shirt now.


--------------------
All that groks is God.

Extras: Filter Print Post Top
Re: Spread this number now [Re: delta9]
    #6860305 -

delta9 said:
Yes, that is much much much more useful.



lol, who says sarcasm doesn't work online.


--------------------
No statements made in any post or message by myself should be construed to mean that I am now, or have ever been, participating in or considering participation in any activities in violation of any local, state, or federal laws. All posts are works of fiction.

Extras: Filter Print Post Top
Re: Spread this number now [Re: Riboflavin]
    #6869969 -

Riboflavin said:
They even got a t-shirt now.




:lol:


--------------------
~Happy sailing~

Extras: Filter Print Post Top
Re: Spread this number now [Re: Riboflavin]
    #6870082 -

Riboflavin said:
They even got a t-shirt now.



haha pwned


--------------------
"Buy the ticket, take the ride" --long live the great Gonzo

Extras: Filter Print Post Top
Re: Spread this number now [Re: AlteredAgain]
    #6870408 -

I know what your thinkin' "Illegal! Illegal!"


--------------------
From dust you are made and to dust you shall return.

Extras: Filter Print Post Top
Re: Spread this number now [Re: AlteredAgain]
    #6870424 -

we were banned from deviant art for posting that number in our journal


--------------------
complacency is slavery

Edited by theclockmaker (05/04/07 12:18 AM)

Extras: Filter Print Post Top
Re: Spread this number now [Re: theclockmaker]
    #6870470 -

you're better off man, that site has totally gone to hell. it's fallen victim to hordes of shitty anime propped up by fan boys/girls and the rest of the shit on there is the same recycled repetitive shit over-glorified. the place turned into myspace, nothing but another popularity contest. eh, it's not 100% shit, I'm just critical of that shit hole.

welcome to the shroomery, may it serve your purpose better


--------------------
From dust you are made and to dust you shall return.

Extras: Filter Print Post Top
Re: Spread this number now [Re: elbisivni]
    #6870496 -

thank you. we feel welcomed here. we will be posting in the literature forum, mostly.


--------------------
complacency is slavery

Extras: Filter Print Post Top
Re: Spread this number now [Re: theclockmaker]
    #6870536 -

multiple personalities, eh?


--------------------
From dust you are made and to dust you shall return.

Extras: Filter Print Post Top
Re: Spread this number now [Re: elbisivni]
    #6870554 -

no. more than one person makes up 'The Clockmaker"


--------------------
complacency is slavery

Extras: Filter Print Post Top
Re: Spread this number now [Re: theclockmaker]
    #6870584 -

I figured, I was just goofing around :downsrim:

see you(pl) around


--------------------
From dust you are made and to dust you shall return.

Extras: Filter Print Post Top
Re: Spread this number now [Re: theclockmaker]
    #6870585 -

:ban:

Extras: Filter Print Post Top
Re: Spread this number now [Re: Boom]
    #6870692 -

Booooom said:
:ban:



I couldn't find anything in the rules explicitly stating it was not allowed.  I didn't sit down and read them completely I just skimmed over them though.


--------------------
Those who would give up a little freedom to get a little security shall soon have neither.
-Benjamin Franklin

Extras: Filter Print Post Top
Re: Spread this number now [Re: Legend9123]
    #6871145 -


Edited by Odiumjunkie (05/04/07 06:43 AM)

Extras: Filter Print Post Top
Re: Spread this number now [Re: OJK]
    #6871184 -

> http://digg.com/tech_news/MPAA_CAT_IS_ALL_UP_IN_UR_WEBSITES

I was reading about that last night... I can't really blame Digg for not wanting to become the space between the rock and the hard place. However, since they decided to support the position of their users, rather than bow down to the evil greedy bastards within the recording empire, they have gained my respect. This is going to become a very interesting battle between freedom of press and intellectual property rights of the recording industry. When the recording industry eventually wins, which they will as they have more bribe/lobby money than everybody else on the planet combined, we can rip another amendment from the US Constitution to use as toilet paper.


--------------------
Just another spore in the wind.

Extras: Filter Print Post Top
Re: Spread this number now [Re: Seuss]
    #6871230 -

I also admire Digg for taking a stand. My only concern is that in their enthusiasm to be martyrs they may be rushing headlong into this without considering the bigger picture. I have the same complaint about the EFF. It's all well and good to stand up for what you believe in, but unless you have a very strong case you risk setting legal precedent for the opposition. I think a better trial case for "The Number" would have been an HD-DVD player for Linux or something which obviously falls under fair use. I'm no lawyer but Digg's situation seems rather more ambiguous. I wish them luck.

Extras: Filter Print Post Top
Jump to top Pages: 1

Myyco.com Shop: Golden Teacher Liquid Culture For Sale


Similar ThreadsPosterViewsRepliesLast post
* Chrome won't remember Passphrase to Decrypt PM's Help! Barakanaten 863 9 12/03/10 02:51 PM
by Barakanaten
* . z_x_x_z 734 2 11/01/04 01:13 PM
by Vvellum
* Small Molecule Can Prevent Spread Of Breast Cancer, Study Suggests elbisivni 607 1 01/11/08 01:27 PM
by Asante
* MySpace Spreads Spyware DiploidM 956 6 07/25/06 07:14 PM
by Baby_Hitler
* DVD-copying software illegal, says judge. Xochitl 1,135 2 02/22/04 06:37 AM
by Seuss
* a good firewall? RESET32one 2,719 12 07/17/01 10:22 AM
by Doomhammer
* proof of police on the net!!!!
( 1 2 all )
informer 5,184 25 04/25/02 06:46 PM
by djfrog
* Un-crackble... software?? SymmetryGroup8 1,242 5 05/21/07 03:33 PM
by Legend9123

Extra information
You cannot start new topics / You cannot reply to topics
HTML is disabled / BBCode is enabled
Moderator: trendal, automan, Northerner
1,432 topic views. 0 members, 8 guests and 6 web crawlers are browsing this forum.
[ Show Images Only | Sort by Score | Print Topic ]
Search this thread:

Copyright 1997-2026 Mind Media. Some rights reserved.

Generated in 0.026 seconds spending 0.005 seconds on 14 queries.