A9VG电玩部落论坛

 找回密码
 注册
搜索
查看: 1729|回复: 5

[讨论] TX组最新消息啊就是看不懂

[复制链接]

精华
0
帖子
235
威望
0 点
积分
235 点
种子
0 点
注册时间
2011-9-11
最后登录
2023-7-25
 楼主| 发表于 2012-6-16 23:26  ·  河北 | 显示全部楼层 |阅读模式
How M$ Killed The XOR Hack
Categories: Featured Articles | 0 comments
With the new 15*** update, M$ has added a new key to their hash calculation for the rc4 key. It's basically just the first 16 bytes of the header, which include the version number, entrypoint, and size. These are all per-CB, per-version, so we cannot take a keystream from a 15*** CBB and use it to make a 14*** CB because the CBA on 14*** is unable to calculate the rc4 key no matter what we change.

What this means:
In order to RGH2 an xbox with 15***, you need either:

1) The cpu_key

2) A previous exploitable dump from the SAME XBOX. Must fit one of the following:
- Phats: 14717, 14719
- Slims: 13146, 13599, 14699, 14717, 14719

Older dumps will NOT WORK with RGH2/RGH3 !

DO NOT UPDATE TO 15*** WITHOUT BACKING UP FIRST!

What do we do now:
We are looking into ways of exploiting the rc4.

To make it clear, the new way of generating the CBB decryption rc4 key is as follows:

Secret = CBA[0x10:0x20]
Digest = CBB[0x10:0x20] + CPU_Key + CBA[0:6] + 0×0000 + CBA[8:0x10]

def decrypt_CB_Cpu(CB):
        assert cpukey
        secret = CB_A[0x10:0x20]
        h = hmac.new(secret,None, sha);
        h.update(CB[0x10:0x20]);
        h.update(cpukey);

        v = struct.unpack(">h", CB_A[0x6:0x8])[0]
        print " * checking flag: %X" % v
        if( v & 0x1000):
                print "  ** Using new encryption scheme"
                h.update(CB_A[0:0x6] + "\x00\x00" + CB_A[8:0x10]);

        key = h.digest()[0:0x10]
        CB = CB[0:0x10] +key+ RC4.new(key).decrypt(CB[0x20:])
        return CB

精华
0
帖子
235
威望
0 点
积分
235 点
种子
0 点
注册时间
2011-9-11
最后登录
2023-7-25
 楼主| 发表于 2012-6-16 23:26  ·  河北 | 显示全部楼层
哪位大神给翻译翻译啊

精华
0
帖子
197
威望
0 点
积分
210 点
种子
0 点
注册时间
2012-3-8
最后登录
2015-1-3
发表于 2012-6-17 06:25  ·  加拿大 | 显示全部楼层
总之就是说升级了15***系统,而且之前没有保存14***固件和cpukey的话,就自制不了啊,微软已经在新系统封死漏洞,吼吼,没自制得赶紧了
该用户已被禁言

精华
0
帖子
183
威望
0 点
积分
218 点
种子
9 点
注册时间
2009-3-4
最后登录
2024-10-3
发表于 2012-6-17 09:07  ·  天津 | 显示全部楼层
谢谢楼上,幸好没升,要不就悲剧了

精华
0
帖子
339
威望
0 点
积分
364 点
种子
5 点
注册时间
2010-8-18
最后登录
2022-8-31
发表于 2012-6-17 09:27  ·  河北 | 显示全部楼层
如果要给15XXX的机子刷脉冲自制,不仅要有CPUKey,而且还要有同一台主机之前特定系统的备份,具体要求:
- Phats: 14717, 14719
- Slims: 13146, 13599, 14699, 14717, 14719
其它备份亦无效果。
所以在没有备份的情况下不要升级到15XXX!
小组正在研究破解新的加密。

精华
0
帖子
688
威望
0 点
积分
701 点
种子
5 点
注册时间
2005-10-23
最后登录
2015-2-16
发表于 2012-6-17 13:05  ·  天津 | 显示全部楼层
微软开始动手了 不要升级到15XXX
您需要登录后才可以回帖 登录 | 注册

本版积分规则

Archiver|手机版|A9VG电玩部落 川公网安备 51019002005286号

GMT+8, 2024-10-4 21:20 , Processed in 0.189014 second(s), 19 queries , Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2020, Tencent Cloud.

返回顶部