Go Back  
Reply
 
Thread Tools
Old 11-01-2011   #31
just_idle
Member
 
Join Date: Oct 2011
Posts: 92
Likes: 3
Liked 10 Times in 8 Posts
Mentioned: 3 Post(s)
Tagged: 0 Thread(s)
i've made a few too but i used all the other ones as bases. i've not made one myself so i'm stuck on this file rename option.

to use the rebug files directly, the ps3mfw_base.tcl has to be updated and that's beyond my capabilities right now.
just_idle is offline   Reply With Quote
Old 11-01-2011   #32
haxxxen
Member
 
Join Date: Oct 2010
Posts: 469
Likes: 91
Liked 145 Times in 104 Posts
Mentioned: 94 Post(s)
Tagged: 0 Thread(s)
reActPSN v2.00 ps3mfw task for REBUG 3.55.2

for all rebug fans who are interested in reActPSN 2.0, i have made a ps3mfw-builder task for REBUG 3.55.2, to patch the necessary selfs
automatically.

it is based on security patch.


flashing mfw is on your own risk!


Download

Last edited by haxxxen; 11-01-2011 at 08:42 AM.
haxxxen is offline   Reply With Quote
Old 11-01-2011   #33
metalheavy
Member
 
Join Date: Nov 2009
Posts: 60
Likes: 9
Liked 12 Times in 7 Posts
Mentioned: 1 Post(s)
Tagged: 0 Thread(s)
SO let me get this straight. I have about 100 DLC Rock Band songs I cannot play at all and this will activate them?
metalheavy is offline   Reply With Quote
Old 11-01-2011   #34
Atrion
Member
 
Join Date: Jul 2011
Location: Canada
Posts: 320
Likes: 78
Liked 25 Times in 22 Posts
Mentioned: 8 Post(s)
Tagged: 0 Thread(s)
Send a message via Skype™ to Atrion
If I do this on my system and I get the red screen as some say they have gotten, can these systems always be restored via the factory menu or will I be risking a full brick or need the use of some external hardware?
Atrion is offline   Reply With Quote
Old 11-01-2011   #35
AugustSKY
Member
null
 
Join Date: Oct 2010
Posts: 36
Likes: 20
Liked 6 Times in 4 Posts
Mentioned: 2 Post(s)
Tagged: 0 Thread(s)
Originally Posted by metalheavy View Post
SO let me get this straight. I have about 100 DLC Rock Band songs I cannot play at all and this will activate them?
Yes. You will be able to access them again.
AugustSKY is offline   Reply With Quote
Old 11-02-2011   #36
haxxxen
Member
 
Join Date: Oct 2010
Posts: 469
Likes: 91
Liked 145 Times in 104 Posts
Mentioned: 94 Post(s)
Tagged: 0 Thread(s)
All-In-One reActPSN task for ps3mfw

Update:

Here is a reActPSN All-In-One task for ps3mfw builder. It is for Retail 3.41, Retail 3.55, REBUG 3.41, REBUG 3.55








Click here to see full text
PHP Code:
#!/usr/bin/tclsh
#
# ps3mfw -- PS3 MFW creator
#
# Copyright (C) Anonymous Developers (Code Monkeys)
#
# This software is distributed under the terms of the GNU General Public
# License ("GPL") version 3, as published by the Free Software Foundation.
#

# (C) haxxxen

# Priority: 30
# Description: Patch RETAIL/REBUG selfs to allow offline PSN-Activation

# Option --allow-offline-activation: Patch selfs to allow Activation of PSN-Content Offline

# Type --allow-offline-activation: combobox {{RETAIL 3.41} {RETAIL 3.55} {REBUG 3.41} {REBUG 3.55}}

namespace eval ::patch_psn_offline {

    array 
set ::patch_psn_offline::options {
        --
allow-offline-activation "Select Firmware"
    
}

    
proc main {} {
        if {$::
patch_psn_offline::options(--allow-offline-activation) == "RETAIL 3.41"} {
            
set selfs {vsh.self}
            ::
modify_devflash_files [file join dev_flash vsh module$selfs ::patch_psn_offline::patch_341_self
        
}
        if {$::
patch_psn_offline::options(--allow-offline-activation) == "RETAIL 3.55"} {
            
set selfs {vsh.self}
            ::
modify_devflash_files [file join dev_flash vsh module$selfs ::patch_psn_offline::patch_355_self
        
}
        if {$::
patch_psn_offline::options(--allow-offline-activation) == "REBUG 3.41"} {
            
set selfs {vsh.self.cexsp}
            ::
modify_devflash_files [file join dev_flash vsh module$selfs ::patch_psn_offline::patch_341cexsp_self
            set selfs 
{vsh.self}
            ::
modify_devflash_files [file join dev_flash vsh module$selfs ::patch_psn_offline::patch_341vsh_self
            set selfs 
{vsh.self.swp}
            ::
modify_devflash_files [file join dev_flash vsh module$selfs ::patch_psn_offline::patch_341swp_self
        
}
        if {$::
patch_psn_offline::options(--allow-offline-activation) == "REBUG 3.55"} {
            
set selfs {vsh.self.cexsp}
            ::
modify_devflash_files [file join dev_flash vsh module$selfs ::patch_psn_offline::patch_355cexsp_self
            set selfs 
{vsh.self}
            ::
modify_devflash_files [file join dev_flash vsh module$selfs ::patch_psn_offline::patch_355vsh_self
            set selfs 
{vsh.self.swp}
            ::
modify_devflash_files [file join dev_flash vsh module$selfs ::patch_psn_offline::patch_355swp_self
        
}

    }    

    
proc patch_341_self {self} {
        ::
modify_self_file $self ::patch_psn_offline::patch_341_elf
    
}
    
proc patch_355_self {self} {
        ::
modify_self_file $self ::patch_psn_offline::patch_355_elf
    
}
    
proc patch_341cexsp_self {self} {
        ::
modify_self_file $self ::patch_psn_offline::patch_341cexsp_elf
    
}
    
proc patch_341vsh_self {self} {
        ::
modify_self_file $self ::patch_psn_offline::patch_341vsh_elf
    
}
    
proc patch_341swp_self {self} {
        ::
modify_self_file $self ::patch_psn_offline::patch_341swp_elf
    
}
    
proc patch_355cexsp_self {self} {
        ::
modify_self_file $self ::patch_psn_offline::patch_355cexsp_elf
    
}
    
proc patch_355vsh_self {self} {
        ::
modify_self_file $self ::patch_psn_offline::patch_355vsh_elf
    
}
    
proc patch_355swp_self {self} {
        ::
modify_self_file $self ::patch_psn_offline::patch_355swp_elf
    
}

    
proc patch_341_elf {elf} {
        if {$::
patch_psn_offline::options(--allow-offline-activation) == "RETAIL 3.41"} {
            
log "Patching 3.41-RETAIL [file tail $elf] to allow Offline PSN-Activation"
#           allow unsigned act.dat
            
set search "\x4B\xCF\xAF\xB1"
            
set replace "\x38\x60\x00\x00"
            
catch_die {::patch_file_multi $elf $search 0 $replace
                
"Unable to patch self [file tail $elf]"
#           disable deletion of act.dat
            
set search "\x48\x31\x43\xAD"
            
set replace "\x38\x60\x00\x00"
            
catch_die {::patch_file_multi $elf $search 0 $replace
                
"Unable to patch self [file tail $elf]"
        
}
            
log "WARNING: Running this MFW only ON YOUR OWN RISK" 1
    
}

    
proc patch_355_elf {elf} {
        if {$::
patch_psn_offline::options(--allow-offline-activation) == "RETAIL 3.55"} {
            
log "Patching 3.55-RETAIL [file tail $elf] to allow Offline PSN-Activation"
#           allow unsigned act.dat
            
set search "\x4B\xCF\x5B\x45"
            
set replace "\x38\x60\x00\x00"
            
catch_die {::patch_file_multi $elf $search 0 $replace
                
"Unable to patch self [file tail $elf]"
#           disable deletion of act.dat
            
set search "\x48\x31\xB4\x65"
            
set replace "\x38\x60\x00\x00"
            
catch_die {::patch_file_multi $elf $search 0 $replace
                
"Unable to patch self [file tail $elf]"
        
}
            
log "WARNING: Running this MFW only ON YOUR OWN RISK" 1
    
}

    
proc patch_341cexsp_elf {elf} {
        if {$::
patch_psn_offline::options(--allow-offline-activation) == "REBUG 3.41"} {
            
log "Patching 3.41-REBUG [file tail $elf] to allow Offline PSN-Activation"
#           allow unsigned act.dat
            
set search "\x4B\xCF\xAF\xB1"
            
set replace "\x38\x60\x00\x00"
            
catch_die {::patch_file_multi $elf $search 0 $replace
                
"Unable to patch self [file tail $elf]"
#           disable deletion of act.dat
            
set search "\x48\x31\x43\xAD"
            
set replace "\x38\x60\x00\x00"
            
catch_die {::patch_file_multi $elf $search 0 $replace
                
"Unable to patch self [file tail $elf]"
        
}
    }

    
proc patch_341vsh_elf {elf} {
        if {$::
patch_psn_offline::options(--allow-offline-activation) == "REBUG 3.41"} {
            
log "Patching 3.41-REBUG [file tail $elf] to allow Offline PSN-Activation"
#           allow unsigned act.dat
            
set search  "\x4B\xCF\x3E\x99"
            
set replace "\x38\x60\x00\x00"
            
catch_die {::patch_file_multi $elf $search 0 $replace
                
"Unable to patch self [file tail $elf]"
#           disable deletion of act.dat
            
set search  "\x48\x31\x47\x1D"
            
set replace "\x38\x60\x00\x00"
            
catch_die {::patch_file_multi $elf $search 0 $replace
                
"Unable to patch self [file tail $elf]"
        
}
    }

    
proc patch_341swp_elf {elf} {
        if {$::
patch_psn_offline::options(--allow-offline-activation) == "REBUG 3.41"} {
            
log "Patching 3.41-REBUG [file tail $elf] to allow Offline PSN-Activation"
#           allow unsigned act.dat
            
set search  "\x4B\xCF\x3E\x99"
            
set replace "\x38\x60\x00\x00"
            
catch_die {::patch_file_multi $elf $search 0 $replace
                
"Unable to patch self [file tail $elf]"
#           disable deletion of act.dat
            
set search  "\x48\x31\x47\x1D"
            
set replace "\x38\x60\x00\x00"
            
catch_die {::patch_file_multi $elf $search 0 $replace
                
"Unable to patch self [file tail $elf]"
        
}
            
log "WARNING: Running this MFW only ON YOUR OWN RISK" 1
    
}

    
proc patch_355cexsp_elf {elf} {
        if {$::
patch_psn_offline::options(--allow-offline-activation) == "REBUG 3.55"} {
            
log "Patching 3.55-REBUG [file tail $elf] to allow Offline PSN-Activation"
#           allow unsigned act.dat
            
set search  "\x4B\xCF\x5B\x45"
            
set replace "\x38\x60\x00\x00"
            
catch_die {::patch_file_multi $elf $search 0 $replace
                
"Unable to patch self [file tail $elf]"
#           disable deletion of act.dat
            
set search  "\x48\x31\xB4\x65"
            
set replace "\x38\x60\x00\x00"
            
catch_die {::patch_file_multi $elf $search 0 $replace
                
"Unable to patch self [file tail $elf]"
        
}
    }

    
proc patch_355vsh_elf {elf} {
        if {$::
patch_psn_offline::options(--allow-offline-activation) == "REBUG 3.55"} {
            
log "Patching 3.55-REBUG [file tail $elf] to allow Offline PSN-Activation"
#           allow unsigned act.dat
            
set search  "\x4B\xCE\xEA\x6D"
            
set replace "\x38\x60\x00\x00"
            
catch_die {::patch_file_multi $elf $search 0 $replace
                
"Unable to patch self [file tail $elf]"
#           disable deletion of act.dat
            
set search  "\x48\x31\xB7\xD5"
            
set replace "\x38\x60\x00\x00"
            
catch_die {::patch_file_multi $elf $search 0 $replace
                
"Unable to patch self [file tail $elf]"
        
}
    }

    
proc patch_355swp_elf {elf} {
        if {$::
patch_psn_offline::options(--allow-offline-activation) == "REBUG 3.55"} {
            
log "Patching 3.55-REBUG [file tail $elf] to allow Offline PSN-Activation"
#           allow unsigned act.dat
            
set search  "\x4B\xCE\xEA\x6D"
            
set replace "\x38\x60\x00\x00"
            
catch_die {::patch_file_multi $elf $search 0 $replace
                
"Unable to patch self [file tail $elf]"
#           disable deletion of act.dat
            
set search  "\x48\x31\xB7\xD5"
            
set replace "\x38\x60\x00\x00"
            
catch_die {::patch_file_multi $elf $search 0 $replace
                
"Unable to patch self [file tail $elf]"
        
}
            
log "WARNING: Running this MFW only ON YOUR OWN RISK" 1
    
}



Download
haxxxen is offline   Reply With Quote
Likes: (2)
Old 11-02-2011   #37
AkoDinIto
Apprentice
 
AkoDinIto's Avatar
 
Join Date: Jan 2009
Posts: 22
Likes: 1
Liked 3 Times in 3 Posts
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
I looked at my exdata folder and saw rif files only and couldn't find act. dat in it. I don't know what happened with it since I didn't reformat my hdd or anything. It's just that when PSN was overhauled after it had been hacked that I couldn't play my games and DLCs. It was asking for authentication by logging in to PSN.

Can I still use reACTPSN so that I would be able to open any PSN content in my PS3?
AkoDinIto is offline   Reply With Quote
Old 11-05-2011   #38
Sawatis
Member
Snake Champion, Typix Champion, Fruits Fall Champion, Finger Crusher Champion
 
Sawatis's Avatar
 
Join Date: Sep 2011
Location: canada ,ontario
Posts: 459
Likes: 122
Liked 125 Times in 92 Posts
Mentioned: 23 Post(s)
Tagged: 0 Thread(s)
does this work on nand models yet ? lol nice program to see.. but its made a field day for pirates lol . i noticed it says it doesnt work on nand model witch i have lol. i have dungeon hunters alliance it would be nice to reactivate it. i already beat the game but im on the final boss area on legendary and i can t continue lol depressing i spent so many hour with 3 friends playing this game
__________________
Sawatis is offline   Reply With Quote
Old 11-05-2011   #39
raiderscrusade
Member
null
 
Join Date: Sep 2011
Posts: 47
Likes: 0
Liked 2 Times in 2 Posts
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Can anyone confirm the PS3 MFW Task working safely, and brick-free?
raiderscrusade is offline   Reply With Quote
Old 11-05-2011   #40
IIDXStyle
Apprentice
 
IIDXStyle's Avatar
 
Join Date: Aug 2008
Posts: 8
Likes: 0
Liked 0 Times in 0 Posts
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
So I'm trying to do the forced backup of licenses by holding R1 on reactpsn launch and it just sits at a black screen until I reboot. When I check the folders it made, there are no files in the folder. Any ideas?

I'm on rebug 3.55.2 with the .4 update.

Last edited by IIDXStyle; 11-05-2011 at 04:59 PM.
IIDXStyle is offline   Reply With Quote
Reply

Bookmarks

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump



PS3Hax.net is Copyright © 2010-2013.
Use of this site is governed by our Terms of Use and Privacy Policy. All Trademarks and images are owned by their respected owners.
Posts and links are subject to each author on this forum and are no way affiliated with the operations and/or opinions of ps3hax.net
All times are GMT -5. The time now is 04:06 AM.