HAN Toolbox

PS3 HAN Toolbox - The Xploit 3.0 Companion v0.7.1

BTW Now that you have been modding download_plugin, I wonder if you could look if filecopy_plugin or maybe data_copy_plugin could be hacked to copy other file types (e.g. like .iso or .pkg).
Yeah, i will have another look at those, its been a while.

We just need to add the files to the database, that is all really. We could use another plugin like webman or xai to do that too maybe, rather then spoofing the system to do it itself. Not sure.

My early mods of download plugin proved it for me, Once the PS3 had added a PKG file to the video database, even though it was a pkg it would show as a video and give full video options like copy, copy multiple, delete, delete multiple, information etc. All with no other files being touched on the system.

I suppose if we can get those other plugins to do the same we could copy from devices too in the same way and add to the database, that is the key. I will check it out. We already know the PS3 is doing no checks on the actual files to see if they are real media files, as we can do the fake jpg xploit with no issues.

Also the database is not signed, so database mods should be possible on OFW/HFW.
 
On the wiki someone documented the arguments that are passed to those plugins, I don't really understand it but you can have a look and see if you can figure it out. Another issue is, how can we pass multiple arguments through module_action? I've tried using spaces to separate the parameters, but that doesn't seem to work.

The info in wiki about filecopy_plugin don't tell me much either... I hope the gurus can provide more info or examples ;)

Regarding your question about the "module action", plugin_action.function only accepts one string parameter. The plugin take different actions based on the string value received. For multiple parameters, I guess you should use delimiters and the plugin parse them.

Here is an example from https://www.psx-place.com/threads/custom-xai_plugin-source.12455/
void xai_plugin_interface_action::xai_plugin_action(const char * action)
{
cellFsUnlink("/dev_hdd0/tmp/turnoff");
if(strcmp(action,"soft_reboot_action")==0)
{
sys_sm_shutdown(SYS_SOFT_REBOOT);
}
else if(strcmp(action,"hard_reboot_action")==0)
{
sys_sm_shutdown(SYS_HARD_REBOOT);
}
}
 
Inside rcoxml files the most complex function usage ive seen is something like this, with several ::
Code:
"event:native:/VideoEditorUpload::ServiceLogin::OnPushSavePassword"

In this example the "OnPushSavePassword" seems to be the name of a function, but the "VideoEditorUpload" and the "ServiceLogin" im not so sure
 
Hello guys.
I would like to suggest a feature for a future HAN Toolbox version (if this is not the correct place to share suggestions, I'm sorry)
In short words, I think it may be useful to add an item in the External Content section (or any other section) to access a custom XML file of a USB device. This will allow everybody, both developers and people without much experience, to add and test new features to the toolbox without needing to modify the toolbox.
20190425-162355.jpg

I would love to see something like this in an official update. Thank you for reading my suggestion and have a great day :)
 
Hello guys.
I would like to suggest a feature for a future HAN Toolbox version (if this is not the correct place to share suggestions, I'm sorry)
In short words, I think it may be useful to add an item in the External Content section (or any other section) to access a custom XML file of a USB device. This will allow everybody, both developers and people without much experience, to add and test new features to the toolbox without needing to modify the toolbox.
20190425-162355.jpg

I would love to see something like this in an official update. Thank you for reading my suggestion and have a great day :)
I really like this idea.
 
Hi.

Could you add "Enable HAN PKG Blind" in HAN toolbox? This to make sure that HEN exploit installation will be easier.

Well, it can be already done in 2 steps using toolbox : enable HAN, then mount flash. Anyway, I already added it - I added an HEN installer to toolbox - but I never really finished it and posted it.
Now toolbox is almost useless.

IMO Enable HAN PKG Blind should better fit in han support files : you install HAN, then from XMB, enable HAN + mount flash then download latest HEN. These items would be overwritten by HEN files so they would be temporary.


I liked the idea, this option could be added in the Hybrid Firmware Tools as well. It would be less icons in the game tab.

Useless IMO. Enable HEN already enable HAN + mount flash.
 
IMO Enable HAN PKG Blind should better fit in han support files : you install HAN, then from XMB, enable HAN + mount flash then download latest HEN. These items would be overwritten by HEN files so they would be temporary.
I agree. It would save using the crappy on screen keyboard when installing NEN.

If anyone needs a short URL for dev_blind+HAN enabler I have this hosted @ http://devil303.com/b
 
Hello guys.
I would like to suggest a feature for a future HAN Toolbox version (if this is not the correct place to share suggestions, I'm sorry)
In short words, I think it may be useful to add an item in the External Content section (or any other section) to access a custom XML file of a USB device. This will allow everybody, both developers and people without much experience, to add and test new features to the toolbox without needing to modify the toolbox.
20190425-162355.jpg

I would love to see something like this in an official update. Thank you for reading my suggestion and have a great day :)
Thanks for the cool idea, implemented in hen toolbox v.1.00
 
Hi, thanks for the toolbox, also the link is dead, can you reupload the file please?
That has a simple reason: I'm stupid (as usual). I linked the old toolbox saying it was the updated version AHAH. Check the link again. It must end in 870, not in 628...

If you want, remove the quote on your previous post not to mislead others (2 big texts with different links ahah).
 

Similar threads

Back
Top