Join Us and become a Member for a Verified Badge to access private areas with the latest PS4 PKGs.
Status
Not open for further replies.
A few days ago we reported on PS4 DevKit / TestKit Settings for developers, and since the PS4 Retail / Debug Game Transfusion Guide PlayStation 4 developer ZiL0G80 spotted some code of interest in the TMServer-3_50_0_55.msi file of the PS4 *** Leak that (similar to PS Vita) may allow the activation of PS4 DevKits by unlicensed developers through 2020 following the PS4 DevKit Activation Tutorial by Jerry Yin below. :LOL:

Here are the related Tweets:

From TMServer-3_50_0_55.msi thanks to @oneman123 on Pastebin via Hydrogen:
Code:
 internal class CpUpdatePlugIn : IPlugIn
    {
        public override string Name
        {
            get { return "recover-cp"; }
        }
 
        public override string Options
        {
            get { return "file [devkit ...]"; }
        }
 
        public override bool IsValidArgCount(int argc)
        {
            return argc >= 1;
        }
 
        public override string HelpString
        {
            get { return "Updates the firmware of the DevKit with the cpupdater.bin file specified."; }
        }
 
        public override bool Hidden
        {
            get { return true; }
        }
 
        public override bool Execute(List<string> args)
        {
            ORTMAPI tm = null;
            API.Instance(out tm);
 
            string path = Path.GetFullPath(args[0]);
            args.RemoveAt(0);
 
            bool success = false;
            List<ITarget> targets = TargetListHelper.TargetList(tm, args);
 
            foreach (ITarget tgt in targets)
            {
                try
                {
                    using (CtrlCHandler handler = CtrlCHandler.StandardCtrlCHandler(tgt))
                    using (RefCountedConnection rc = new RefCountedConnection(tgt))
                    {
                        ITarget23 tgt23 = (ITarget23)tgt;
 
                        CpUpdateProgressHandler ph = new CpUpdateProgressHandler(tm, tgt);
                        tgt23.UpdateCPFirmware(path);
                        success = ph.Success || success;
                    }
                }
                catch (COMException e)
                {
                    ErrorHelper.PrintError(tm, e);
                }
            }
 
            return success;
        }
    }
Here is the PS4 DevKit Activation Guide / Tutorial, to quote from Jerry Yin:

Before you do this, remember to disconnect from the Internet, and also remember to set the computer time to 2009.

1. Disconnect all the cable
2. Tear the Dev kit apart
3. Remove the CP board
4. Remove the battery
5. Connect CP board to the mother board and leave the battery away
6. Connect the cable (CP first, then power), and power it on
7. Set time to 2009.1.1 00:00

You will get backup battery error message. Open neighborhood and connect the dev kit, then refresh the status, at last reboot through neighborhood, after reboot, you will see the clock (not date) was change.

8. Disconnect the usb cable and keep the power cable connect
9. Put the battery back into the dev kit.
10. Connect the usb cable and power it on, the battery error message should gone. If not, disconnect all the cable and plug it again.
11. Once you discover the battery error message was gone, open neighborhood and connect to the dev kit and then refresh, wait serval minutes then reboot
12. After reboot, you will get an activated dev kit

:arrow: Also below is a guide from NagatoRevenge on Converting Retail PS Vita Consoles to TestKit Units for those interested:
How to convert your retail PS Vita and turn it to a Testkit with CEX2REX! [PART 1]
How to convert your retail PS Vita and turn it to a Testkit with CEX2REX! [PART 2]

Spoiler: PS4 DevKit NEO Downgrading with DevKit PUP

  • Debug Settings developer.rar (65 KB - Debug Settings for PS4 jailbreak, move NPXS20993 folder to /system_ex/app/NPXS20993 change your application (db), replace I changed icon0 is not the same)
Spoiler

A big THANKS to @HydrogenNGU for sharing the news in the PSXHAX Shoutbox and to @SilicaAndPina on Twitter! :love:
PlayStation 4 DevKit Activation Guide for PS4 Devs by Jerry Yin.jpg

PlayStation 4 DevKit Activation Guide for PS4 Devs by Jerry Yin 2.jpg
 

Comments

I think that I'd need a person that has ps vita dev kit activated with 3.60 firmware and he should dump the file in this path: ur0/temp/activation/vita_activation.afv
 
Hi everyone I need help because I bought a PS4 pro DUH-T7000AA test kit I have the message in red Expired but impossible to activate. I was told that there was a specific payload for ps4 pro to activate it.

I really need help as i am trying to put al-azif browser but i am told it is not working as it only works for ps4 DUH-T1000AA. Is there there a way to enable it please? thank you very much.
 
Status
Not open for further replies.
Back
Top