Editing QA Flagging
Jump to navigation
Jump to search
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.
Latest revision | Your text | ||
Line 1: | Line 1: | ||
= QA Flag = | = QA Flag = | ||
A QA flag is a value set in [[SC EEPROM]] at address 0x48C0A. When this flag is set, the token is read from SYSCON and decrypted, this gets passed to various modules to unlock certain functionality. | A QA flag is a value set in [[SC EEPROM]] at address 0x48C0A. When this flag is set, the token is read from SYSCON and decrypted, this gets passed to various modules to unlock certain functionality. | ||
= QA Token = | = QA Token = | ||
A QA token is | A QA token is a 80 byte value that determines amount of functionality on your console. | ||
It is signed with a 20 byte SHA1 key then encrypted using AES256CBC. Please see the [[keys]] page. | It is signed with a 20 byte SHA1 key then encrypted using AES256CBC. Please see the [[keys]] page. | ||
Line 10: | Line 9: | ||
<pre> | <pre> | ||
0x00, 0x00, 0x00, 0x01, 0x00, 0x11, 0x22, 0x33, | |||
0x44, 0x55, 0x66, 0x77, 0x88, 0x99, 0xAA, 0xBB, | |||
0xCC, 0xDD, 0xEE, 0xFF, 0x00, 0x00, 0x00, 0x00, | |||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | |||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | |||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | |||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | |||
0x00, 0x00, 0x00, 0x00, 0x19, 0x4A, 0x4B, 0xBA, | |||
0x15, 0x97, 0xAE, 0x71, 0x36, 0xCC, 0xB6, 0x65, | |||
0x7F, 0xC3, 0xB5, 0x3F, 0x49, 0x22, 0x2F, 0xB1 | |||
</pre> | </pre> | ||
Line 23: | Line 25: | ||
! Address !! Length !! Value !! Description | ! Address !! Length !! Value !! Description | ||
|- | |- | ||
| 0x00 || 0x4 || 0x01 || | | 0x00 || 0x4 || 0x01 || Unknown (Static) | ||
|- | |- | ||
| | | 0x04 || 0x14 || 0x112233445566778899AABBCCDDEEFF || [[IDPS]] | ||
|- | |- | ||
| | | 0x14 || 0x3C || 0x00 || [[#Token Flags|Token Flags]] | ||
|- | |- | ||
| 0x3C || | | 0x3C || 0x80 || 0x194A4BBA1597Ae7136CCB6657FC33F49222FB1 || digest | ||
|} | |} | ||
Line 39: | Line 39: | ||
== Token Flags == | == Token Flags == | ||
The flags are a | The flags are a 40 byte value containing a set of flags that enable specific features on the PS3 console. These flags are largely unknown. | ||
<pre> | |||
QA_FLAG_ALLOW_NON_QA = byte 0x33, bit 0 | |||
QA_FLAG_FORCE_UPDATE = byte 0x33, bit 1 | |||
QA_FLAG_EXAM_API_ENABLE = byte 0x27, bit 0 | |||
QA_FLAG_QA_MODE_ENABLE = byte 0x27, bit 2 | |||
</pre> | |||
< | |||
= Setting QA Flag & Token | = Setting QA Flag & Token = | ||
== Prerequisites == | ==Prerequisites== | ||
*First you need to have linux installed on your PS3, you can have grafs kernel or glevands rework | *First you need to have linux installed on your PS3, you can have grafs kernel or glevands rework | ||
If you are using glevand´s kernel you will have to first enable the require module | If you are using glevand´s kernel you will have to first enable the require module | ||
<pre> | |||
modprobe ps3dmproxy | |||
</pre> | |||
*Then you will have to have the latest ps3dm-utils you can get from [http://git.gitbrew.org/ps3/ gitbrew] or here you have a precompiled [http://www.multiupload.com/CVN3Y9QBQX ps3dm_um] [http://www.multiupload.com/FQNWIBBIOB ps3dm_aim] | *Then you will have to have the latest ps3dm-utils you can get from [http://git.gitbrew.org/ps3/ gitbrew] or here you have a precompiled [http://www.multiupload.com/CVN3Y9QBQX ps3dm_um] [http://www.multiupload.com/FQNWIBBIOB ps3dm_aim] | ||
Line 114: | Line 62: | ||
and you will need Slynk tools | and you will need Slynk tools | ||
Here's my app. I'd have a full tutorial but I'm having to deal with some bullshit right now. Sorry guys. | |||
I'll make a better tutorial later but basically. Flag yourself. Dump your idps (that's the first 16 bytes of your eid0). | |||
Type it into my app in the format I provided, click the button, and run that command. Should work. | |||
Tokenator.7z (26.42 KB) | |||
Slynk | |||
==Procedure== | |||
== | ===Getting the info=== | ||
First you need you IDPS | |||
the easyest way is using graf aim | |||
<pre> | <pre> | ||
./ps3dm_aim /dev/ps3dmproxy get_dev_id | |||
</pre> | </pre> | ||
Write it down and load it | Write it down and load it on the Tokenator app | ||
It will give you the command you should use in linux + your encrypted token | |||
something like this | |||
<pre> | <pre> | ||
./ps3dm_um /dev/ps3dmproxy set_token 0x7E 0xDA 0xE2 0x68... | ./ps3dm_um /dev/ps3dmproxy set_token 0x7E 0xDA 0xE2 0x68... | ||
</pre> | </pre> | ||
=== Setting the flag === | ===Setting the flag=== | ||
<pre> | <pre> | ||
ps3dm_um /dev/ps3dmproxy write_eprom 0x48C0A 0x00 | |||
</pre> | </pre> | ||
=== Setting the token === | ===Setting the token=== | ||
Just copy paste the command you got from tokenator | Just copy paste the command you got from tokenator | ||
<pre> | <pre> | ||
Line 151: | Line 102: | ||
'''Congrats now you ps3 is QA flagged''' | '''Congrats now you ps3 is QA flagged''' | ||
'''Reboot''' | '''Reboot''' | ||
===Getting the QA flag menu=== | |||
Set yoursef on network settings and press the weired combo | |||
<pre> | |||
L2+R2+L1+R1+L3(this means pressing you left analog stick)+dpad_down | |||
</pre> | |||
Now you will be able to see the QA menu | |||
This token allow | |||
This | |||
=QA Flags Features= | =QA Flags Features= | ||
==Token seed byte 48=0x02== | |||
===Edy viewer=== | |||
Payment service in japan | |||
more info [http://manuals.playstation.net/document/en/ps3/current/settings/edyviewer.html Edy viewer] | |||
===Debug Settings=== | |||
{|class="wikitable" | |||
|- | |||
! Setting !! Value !! Description | |||
|- | |||
| DTCP-IP || on-off|| | |||
|- | |||
| ATRAC || on/off || | |||
|- | |||
| WMA || on/off || | |||
|- | |||
| NP Enviroment || enviroment|| | |||
|- | |||
| Fake Free Space (for CEX)|| on/off || | |||
|- | |||
| Fake Limit Size || X MB || | |||
|- | |||
| NP Debug || on/off || | |||
|- | |||
| NPDRM Debug || on/off || | |||
|- | |||
| Edy Debug || on/off || | |||
|- | |||
| Nav-only NP || on/off || | |||
|- | |||
| Cdda Server || Production/? || | |||
|- | |||
| Crash Report || on/off || | |||
|- | |||
| Crash reporter Status || Ready/Busy/Never be calles || | |||
|- | |||
| VSH Crash Dump Generator || on/off || | |||
|- | |||
| System Update Debug || on/off || | |||
|- | |||
| Information Board QA Server || on/off || | |||
|- | |||
| Format Marlin Personal Data || ? || | |||
|- | |||
| PlaystationRStore Ad Clock || on/off || | |||
|- | |||
| Geo Filtering for PlaystationRStore || ? || | |||
|- | |||
| Remove Game License || ? || | |||
|- | |||
| Home Debug || on/off || | |||
|- | |||
| Delete Trophy Personal Data || ? || | |||
|- | |||
| GameUpdate Impose Test || on/off || | |||
|- | |||
| Network Emulation Setting || on/off || | |||
|- | |||
| Auto-Off Debug || on/off || | |||
|- | |||
| NAT Traversal Information || on/off || | |||
|- | |||
| Internet Browser Debug || on/off || | |||
|- | |||
| SMSS REsult Output || on/off || | |||
|- | |||
| Adhoc SSID Prefix || PSP/? || | |||
|- | |||
| Disc Auto-Start at System Startup || || | |||
|- | |||
| 3D Video Output || Automatic/On || | |||
|- | |||
| Fake NP SNS Throttle || Off (60 sec)/ On (0,10,120,2600,closed)|| | |||
|- | |||
| Debug for HDD Exchange Utility || || | |||
|- | |||
| Push Console Binding || on/off|| | |||
|- | |||
| Automatic Download || on/off || | |||
|- | |||
| Motion Controller Calibration Result || || | |||
|} | |||
===Install Package Files=== | |||
Will install the first package it finds on the root of the USB stick |