PS3 4.70 HABIB COBRA v7.10 (CEX) CFW v1.01

Status
Not open for further replies.
Custom Firmware developer HABIB is back again with a new update to his 4.70 HABIB COBRA v7.10 (CEX) CFW with the release of v1.01. The developer has provided a few fixes that were causing issues with applications such as PS3 Manager API (PS3M_API) and webMAN MOD, plus a fix to firmware dectection in PS3M_API was also fixed with this latest version of COBRA CFW from Habib [break]ss[/break] Also checkout this custom Habib coldboot by pinky via this link in our forums.



habib-cobra4.701 -2.PNG
4.70 HABIB (CEX) + COBRA v7.10
FEATURES
UPDATE v1.01

  • FIXED PS3MAPI IDPS SET AND ASSOCIATE APPS CREATING BUGS(E.G WEBMAN)

  • FIXED PS3MAPI FW DETECTION

  • MADE OUT OF 4.70 OFW

  • COBRA v7.10 ADDED (see below)

  • HAVE INSTALL PACKAGE FILES AND APP_HOME

  • HAVE REACTPSN COMPATIBILITY

  • IT CAN RUN GAMES SIGNED WITH KEYS UP TO 4.70

  • CAN BE UPDATED OVER ANY CFW.

  • CAN BE UPDATED OVER 3.55 OFW

  • SPECIAL PAYLOAD FOR COBRA TOGGLE IN LV2

  • RSOD BYPASS

  • REMOVED CINAVIA DRM FOR HDD CONTENT

  • REMOVED CINAVIA FOR BDMV

  • REMOVED CINAVIA FOR BDVD

  • QA FLAG ENABLED BY DEFAULT IF PS3 WAS QA ON 3.55
PATCHES

  • PATCHED LV0 TO DISABLE ECDSA CHECKS

  • PATCHED LV2 TO ADD PEEK/POKE SUPPORT

  • PATCHED LV1 TO DISABLE LV2 PROTECTION

  • PATCHED LV1 TO ADD PEEK/ POKE SUPPORT

  • REACTPSN OFFLINE PATCH ADDED
COBRA v7.10
Changes in Cobra 7.03 -7.10

  • Additional PSX ISO Types supported

  • PS2 ISO controller sync issues on non-BC improved by great margin (100% fine for me)

  • Updated NzV ps3mapi to v1.2.0

  • Polished a bit overall

  • Issue with new ODE Patches while COBRA is disabled has been fixed (games with updates refuse to run)
Video
[video=youtube;uiY1e2t2oqE]https://www.youtube.com/watch?v=uiY1e2t2oqE[/video]

Donation to HABIB can be made via: PayPal
USE ANY CFW AT YOUR OWN RISK
View ---> LINK <--- for CFW installation Tips & Info
DOWNLOAD & MIRRORS

MD5: 30BD5DDAD254FF8CD2336A7E4DEF43CC
(MIRRORS Welcomed)

SRC CODE

 
i still have ps2 controller sync issues :(

i tried habib 4.70 and habib 4.70 (1.01)

what i have to do ?
 
i still have ps2 controller sync issues :(

i tried habib 4.70 and habib 4.70 (1.01)

what i have to do ?

Firstly when you post please tell us your ps3 model.
Ps2 can sync only 1 wireless controller it happens same on 7.00 on 4.46

If on non-bc ps3 you need to use classic method(explained everywhere)
 
Stage2 is still in dev_flash/habib/cobra so webman can't toggle cobra mode. Come on habib, drop those "funny" flash folders.
 
Stage2 is still in dev_flash/habib/cobra so webman can't toggle cobra mode. Come on habib, drop those "funny" flash folders.

No funny folder at all
I did this to clean the stuff inside :)

If i get time, i will make an app or a plugin [MENTION=89]aldostools[/MENTION] i think i used this location previously as well
This folder is to clean stuff placed in flash
Is this folder not supported?
I use this to be standard similar to rebug like /rebug to /habib
 
Last edited:
No funny folder at all
I did this to clean the stuff inside :)

If i get time, i will make an app or a plugin [MENTION=89]aldostools[/MENTION] i think i used this location previously as well
This folder is to clean stuff placed in flash
Is this folder not supported?
I use this to be standard similar to rebug like /rebug to /habib

Only the following folders are supported:
/dev_blind/rebug/cobra/
/dev_blind/sys/

Here is the code found in webMAN MOD:
Code:
						if(!(webman_config->combo & DISACOBRA)
							&& (data.button[CELL_PAD_BTN_OFFSET_DIGITAL2] & CELL_PAD_CTRL_TRIANGLE))
						{ // L3+L2+TRIANGLE COBRA Toggle
							enable_dev_blind((char*)"COBRA Toggle activated!");
 #ifdef REX_ONLY
							if( (cellFsStat((char*) REBUG_COBRA_PATH "stage2.cex", &s)==CELL_FS_SUCCEEDED) &&
								(cellFsStat((char*) REBUG_COBRA_PATH "stage2.dex", &s)==CELL_FS_SUCCEEDED))
							{
								show_msg((char*)"REBUG COBRA is active!\r\nDeactivating COBRA...");

								cellFsRename(REBUG_COBRA_PATH "stage2.cex", REBUG_COBRA_PATH "stage2.cex.bak");
								cellFsRename(REBUG_COBRA_PATH "stage2.dex", REBUG_COBRA_PATH "stage2.dex.bak");
								reboot=true;
							}
							else if((cellFsStat((char*) REBUG_COBRA_PATH "stage2.cex.bak", &s)==CELL_FS_SUCCEEDED) &&
									(cellFsStat((char*) REBUG_COBRA_PATH "stage2.dex.bak", &s)==CELL_FS_SUCCEEDED))
							{
								show_msg((char*)"REBUG COBRA is inactive!\r\nActivating COBRA...");

								cellFsRename(REBUG_COBRA_PATH "stage2.cex.bak", REBUG_COBRA_PATH "stage2.cex");
								cellFsRename(REBUG_COBRA_PATH "stage2.dex.bak", REBUG_COBRA_PATH "stage2.dex");
								reboot=true;
							}
 #else
							if(cellFsStat((char*)SYS_COBRA_PATH "stage2.bin", &s)==CELL_FS_SUCCEEDED)
							{
								show_msg((char*)"COBRA is active!\r\nDeactivating COBRA...");

								cellFsRename(SYS_COBRA_PATH "stage2.bin", SYS_COBRA_PATH "stage2_disabled.bin");

								if(cellFsStat((char*)COLDBOOT_PATH ".normal", &s)==CELL_FS_SUCCEEDED)
								{
									cellFsRename(COLDBOOT_PATH          , COLDBOOT_PATH ".cobra");
									cellFsRename(COLDBOOT_PATH ".normal", COLDBOOT_PATH);
								}

								reboot=true;
							}
							else if(cellFsStat((char*)SYS_COBRA_PATH "stage2_disabled.bin", &s)==CELL_FS_SUCCEEDED)
							{
								show_msg((char*)"COBRA is inactive!\r\nActivating COBRA...");

								cellFsRename(SYS_COBRA_PATH "stage2_disabled.bin", SYS_COBRA_PATH "stage2.bin");

								if(cellFsStat((char*)COLDBOOT_PATH ".cobra", &s)==CELL_FS_SUCCEEDED)
								{
									cellFsRename(COLDBOOT_PATH         , COLDBOOT_PATH ".normal");
									cellFsRename(COLDBOOT_PATH ".cobra", COLDBOOT_PATH);
								}

								reboot=true;
							}
 
No funny folder at all
I did this to clean the stuff inside :)

If i get time, i will make an app or a plugin [MENTION=89]aldostools[/MENTION] i think i used this location previously as well
This folder is to clean stuff placed in flash
Is this folder not supported?
I use this to be standard similar to rebug like /rebug to /habib

For me its not a bad idea to use the folder /habib
For example if stage2.bin need to be update (vsh.self hash need to be update in it for spoof, PS3M_API update, ...) this can help updater to detect witch cobra cfw is really and install the right stage2.bin for this one.
But after if each dev use this own folder his cfw code for cobra toggle would be more bigger so i understand choice of [MENTION=89]aldostools[/MENTION] about location.
 
For me its not a bad idea to use the folder /habib
For example if stage2.bin need to be update (vsh.self hash need to be update in it for spoof, PS3M_API update, ...) this can help updater to detect witch cobra cfw is really and install the right stage2.bin for this one.
But after if each dev use this own folder his cfw code for cobra toggle would be more bigger so i understand choice of [MENTION=89]aldostools[/MENTION] about location.

Exactly! I don't have anything against /habib or /rebug folders on dev_flash. They help the devs (and Sony) to detect which CFW edition is installed... making the homebrews easier to code.

IMO, stage2 should be in a single standard location... Otherwise it would make webMAN's code grow innecessarily.
 
Is better to use generic folder names, valid for all cfw devs, and in capitals (like the custom folders added in dev_hdd0 as GAMES, PS3ISO, etc... that uses to be in capitals too to difference them easy from official folders)

dev_flash/PKG/<pkg_filename>.pkg
dev_flash/CFW/<custom_filename>.*
 
Last edited:
Hi Habib,

Thanks for the Great Work!!

I've noticed a problem with some PSX titles. I have a CECHA01 and I'm getting the error " You cannot play this game at the current video output setting. (80028F10)" I remember the PSX titles working and I thought it was just this build and reverted back to Habib 4.70v1.00 and same thing. I tried DARKNET 4.70, HABIB 4.66 V1.01, 4.65 ARCH FLEX (v1.03), REBUG_4.65.2 and the same (80028F10) error. I then tried with HABIB_4.65_V1.02 and they work!! The Psx titles I tested are Crash Bandicoot, Crash Bandicoot 2, Crash Bandicoot 3, and Earthworm Jim 2.

Can you do a patch that could add that feature from HABIB_4.65_V1.02 to 4.70 v1.10?

Cheers!!
 
[MENTION=20]habib[/MENTION]
On your CFW 4.70 Cobra v1.00 and on 4.70 Darknet Cobra the payload of the Fan Control utility does not work,
is making from iris and fork, or from the original application does not act ...
You know what's the problem?
 
Habib thanks for your great work but I have to ask you something. I have a ps3 CECH 2004 have been banned but I go online thanks to another mine idps and the great work of kakatonix with psn patch, even disabling the CFW. The problem is that when I start the psn store, logo appears with under load but then after a minute I return to xmb. why?
 
Hi Habib,

Thanks for the Great Work!!

I've noticed a problem with some PSX titles. I have a CECHA01 and I'm getting the error " You cannot play this game at the current video output setting. (80028F10)" I remember the PSX titles working and I thought it was just this build and reverted back to Habib 4.70v1.00 and same thing. I tried DARKNET 4.70, HABIB 4.66 V1.01, 4.65 ARCH FLEX (v1.03), REBUG_4.65.2 and the same (80028F10) error. I then tried with HABIB_4.65_V1.02 and they work!! The Psx titles I tested are Crash Bandicoot, Crash Bandicoot 2, Crash Bandicoot 3, and Earthworm Jim 2.

Can you do a patch that could add that feature from HABIB_4.65_V1.02 to 4.70 v1.10?

Cheers!!

Those games you tried are PAL region games?
 
Just tried updating to the 1.01 of habibs cobra from darknet and getting same issues as last version. (see my last post on webman thread).
Tried to run Crash bandicoot PSX which worked fine for me. (PAL game, PAL console. CECHL02)

I don't have filtering or upscaling or anything enabled though. Haven't tested it with them turned on. (Using HDMI 1080p to TV if that matters)
My CECHA01 should arrive next week with some luck so I can test on that too.
 
Last edited:
Those games you tried are PAL region games?

Hi Joonie, Yes they are PAL Region. The video connection is HDMI at 1080p. I tried with upscaling and smoothing on and off and forcing 720p but still got the video error. The PS2 PAL I'm pretty sure are fine... I'll double check when I get home.

Thanks.
 
Status
Not open for further replies.

Featured content

Trending content

Back
Top