A9VG电玩部落论坛

 找回密码
 注册
搜索
查看: 2185|回复: 2

转载一篇ps3hax.net与PSN破解相关的文章

[复制链接]

精华
0
帖子
838
威望
0 点
积分
1179 点
种子
458 点
注册时间
2005-10-13
最后登录
2024-11-29
 楼主| 发表于 2011-6-11 13:48  ·  河北 | 显示全部楼层 |阅读模式
英文好的可以翻译下

Slynk’s: PS3 IDA Tutorial + NPDRM Basic Info
PS3 Hacks , 10.06.2011
Remember the QA Flagging videos Mathieulh released a few weeks ago? Well a hacker known as Slynk, has found the QA flagging keys 2 weeks ago, has started a blog and posted some Info about NPDRM (Sony’s designation for PlayStation Network Platform Digital Rights Management environment). In addition, he also has released a IDA tutorial and helping potential and future hackers to get started. Keep in mind this is not for the everyday noob.

To quote:

NPDRM Basic Info
I’d like to begin this post with a few comments.

Only a little bit of this is my own findings, a lot of this info was found from other sources.
NPDRM discussion does not have to be a topic of piracy, it can be used in conjunction with signing/encrypting homebrew if it is fully documented one day.
This is mostly to bring together the bits of info scattered across the interwebs.
NPDRM Types

NP 3 is a free licensed app. It has no license check. No edata/riff. Just install and use. This can be trial software as well.

NP 2 is a locally licensed app. First time activation must take place online. After which you’ll have an edata/riff for that app and somehow this is connected to your act.dat.

NP1 is a network licensed app. It requires network authentication every time it is launched.

The offset for determining the NPDRM type of a self is at the NPDRM Header offset + 0x1C.

NPDRM Security

NPDRM as well as edata use AES, ECDSA, and CMAC for authenticity. These keys, with the exception of the CMAC key, are out there in the ether and can be found without much effort for someone who knows what they’re doing. The specifics of the algorithm are still being researched but a few people have already figured it out; but of course they won’t share their info.

AES and ECDSA are handle by appldr like always. CMAC is handle by one of vsh’s modules. (Don’t know which one, just adding it for completeness.)

Another form of security used in NPDRM is called a k_license. This is a 16 byte key that the developer makes that functions as sort of a “project key”. It’s used in all npdrm encrypted files within the project to prevent one of the files from being replaced by another project’s file. It is also referred to as an SCE NPDRM Key.

NPDRM Header

The current known structure of the NPDRM Header:

typedef struct
{
    byte[4] block_type;  // this is 3(NPDRM)
    byte[4] block_size;  // this is 0x90(sizeof(Self_NPDRM))
    byte[4] unknown1;    // So far always 0
    byte[4] unknown2;    // So far always 0
    byte[4] magic;       // 0x4E504400(NPD)
    byte[4] unknown3;    // So far always 1
    byte[4] license;     // 1 Network License, 2 Local License, 3 Free
    byte[4] type;        // 1 Executable, 21 Update for Disc Based Game
    byte[2] titleid[0x30];
    byte[2] hash_unknown[0x10];
    byte[2] hash1[0x10];
    byte[2] hash2[0x10];
    byte[2] padding[0x10];
} Self_NPDRMI hear there’s plenty of more info in the official sdk for anyone who legally owns it as well. Anyway, I’ll post more if anything else comes to light. ^^

PS3 IDA Tutorial
First off, will not help you obtain a copy of IDA. Go buy it.

http://www.mediafire.com/?kb3s14zi6hramrx

Extract the contents into your IDA folder. I don’t take credit for these plugins and loaders.

Loading a File

There are two file types I’ll teach you to load. SPU and ELF files.
SPU files can only loaded in IDA 32bit mode. When you load IDA choose “Go” and drag the file onto IDA. Make sure elf is highlighted at the top. In processor type, choose “IBM SPU Cell Processor: spu.” Click set. Click OK. “Undefined or unknown…blabla” yes. You should be good to go.
Elf files can be loaded in either 32 or 64 bit mode. When you load IDA choose “Go” and drag the file onto IDA. Make sure PlayStation 3 ELF is highlighted at the top. Don’t mess with the processor type. Kernel option 1 check “Create function if data xref data-> code32 exists.
Optional: I don’t know what these do but I turn them on anyways XD In kernel option 2 choose “Coagulate data segments in the final pass”, “Perform ‘no-return’ analysis”, and “Perform full stack pointer analysis.”
Click OK. Sometimes you get a better result from running the analyze_self script. (File->IDC File->C:/Program Files/IDA/idc/analyze_self.idc) Hit yes, copy the TOC Address it shows you and click OK. Go to Options->General->Analysis->Processor specific analysis options. Type the TOC address in (I use 0: instead of 0x to be safe. No clue if it makes a difference.) While you’re at it click “Create subi instructions. Click OK. Click Reanalyze Program. Click OK. And wait.
You’ll know when a script is done because at the bottom left it’s say “AU: idle”.

IDA Basics

Just a few things. The program is expansive and I’d love to get to know more about it but here’s a few things I know. Hex view and IDA view are connected. That means if you find a string in hex view, you can see it in IDA view. This won’t show you magically where it’s used at but sometimes, that string is xrefed. If under the string you see “# DATA XREF: ” you can right click the “:off_XXXX” at the end, and choose XREF To or From. To, will give you a graph of any functions that have a call “to” that offset. From give’s a graph of offset’s called “from” that offset (mostly only useful for viewing a graph of where all a function leads to.)

In IDA view, you can search for either an immediate value, a string, or a byte sequence. I’ve never “not” checked “find all occurrences.” Don’t know why you wouldn’t want to. It’ll return a list of occurrences in its own window.
If you’re lucky, the file you scanned will have some of the functions named (something other than sub_, nullsub_, or start). These are known functions that are defined in the ps3 sdk.
When exiting, always make sure, unless you WANT to re analyze the whole file again, to choose one of the Pack database options and Collect garbage.



Read more: http://www.ps3hax.net/2011/06/sl ... info/#ixzz1OwYJ1cr0

精华
0
帖子
8
威望
0 点
积分
8 点
种子
0 点
注册时间
2011-2-26
最后登录
2016-1-21
发表于 2011-6-21 18:51  ·  上海 | 显示全部楼层
为了ps3 我要学破解!!!

精华
0
帖子
559
威望
0 点
积分
589 点
种子
5 点
注册时间
2011-2-15
最后登录
2016-2-9
发表于 2011-6-21 19:19  ·  山东 | 显示全部楼层
这个是好久之前的吧?...
关于qa软降和np123的...
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-30 01:27 , Processed in 0.153670 second(s), 14 queries , Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2020, Tencent Cloud.

返回顶部