A9VG电玩部落论坛

 找回密码
 注册
搜索
查看: 4666|回复: 15

[破解] 破解组放消息了

[复制链接]

精华
0
帖子
235
威望
0 点
积分
235 点
种子
0 点
注册时间
2011-9-11
最后登录
2023-7-25
 楼主| 发表于 2012-6-16 23:38  ·  河北 | 显示全部楼层 |阅读模式
Posted by Xecuter on Jun 15, 2012
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
帖子
1
威望
0 点
积分
1 点
种子
0 点
注册时间
2012-3-1
最后登录
2019-12-28
发表于 2012-6-16 23:39  ·  河北 | 显示全部楼层
看不懂 但也算沙发吧

精华
0
帖子
605
威望
0 点
积分
625 点
种子
7 点
注册时间
2008-2-27
最后登录
2024-9-30
发表于 2012-6-16 23:40  ·  上海 | 显示全部楼层
沙发,不要只是贴啊,翻译下呗

精华
0
帖子
414
威望
0 点
积分
424 点
种子
7 点
注册时间
2005-4-2
最后登录
2024-7-12
发表于 2012-6-16 23:47  ·  辽宁 | 显示全部楼层
DO NOT UPDATE TO 15*** WITHOUT BACKING UP FIRST!
不要升级到15***系统,。。。。

精华
0
帖子
455
威望
0 点
积分
561 点
种子
68 点
注册时间
2010-11-21
最后登录
2024-6-11
发表于 2012-6-16 23:59  ·  吉尔吉斯斯坦 | 显示全部楼层
都知道消息看8懂,为什么还要发呢?
该用户已被禁言

精华
0
帖子
6289
威望
0 点
积分
6303 点
种子
7 点
注册时间
2008-11-13
最后登录
2019-6-21
发表于 2012-6-17 00:04  ·  广西 | 显示全部楼层
大意就是说不要升到15XXX的系统 这个系统用RGH2.0也刷不了自制的

精华
0
帖子
108
威望
0 点
积分
117 点
种子
0 点
注册时间
2006-6-3
最后登录
2014-10-7
发表于 2012-6-17 10:51  ·  广东 | 显示全部楼层
也来凑凑热闹先。。。。

精华
0
帖子
609
威望
0 点
积分
643 点
种子
5 点
注册时间
2010-11-17
最后登录
2020-11-15
发表于 2012-6-17 11:41  ·  四川 | 显示全部楼层
我找 gu嫂去了   。。。。。。尼玛  紫苏

精华
0
帖子
157
威望
0 点
积分
161 点
种子
7 点
注册时间
2012-3-4
最后登录
2019-7-14
发表于 2012-6-17 12:14  ·  广东 来自手机 | 显示全部楼层
楼主的英文基本是看懂了,谁能帮我翻译一下8楼的。

精华
0
帖子
47
威望
0 点
积分
48 点
种子
0 点
注册时间
2012-6-13
最后登录
2012-7-30
发表于 2012-6-17 12:42  ·  北京 | 显示全部楼层
找google翻译,尼玛,字数
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-10-4 21:27 , Processed in 0.223188 second(s), 25 queries , Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2020, Tencent Cloud.

返回顶部