55w ago - It's been less than a week since his
previous revision, and today PlayStation 3 homebrew developer
PsDev has updated PS3Tools GUI Edition to version 1.2 with the changes outlined below.
Download:
PS3Tools GUI Edition v1.2 Application
This update adds SCE info alongside a hexdump option to dump the decrypted PS3 Core_OS for PlayStation 3 developers to examine.
Changes
- Added SCE info
- SCE info- lv0
- SCE info- lv1ldr
- SCE info- lv2ldr
- SCE info- appldr
- SCE info- isoldr
- SCE info- EBOOT.BIN
- Added hexdump option to dump decrypted core_os
Thanks to naehrwert, HSReina, Math, fail0verflow of course

and any one else I forgot.
Download: http://www.mediafire.com/?387jim751yf9map
From the included ReadMe file: Just place the .exe file in your flash drive where you have your folders and cfw setup run it and it will tell you if there is a typo, the foldername correct, the pup name correct and then if so it tell you your ready to go.
Took me 5 min.
Follow me on twitter at https://twitter.com/#!/RealPsDev
Source Code:
[code]
#include
#include
#include
#include
#include
#pragma comment(lib, "shlwapi.lib")
#include
using namespace std;
typedef unsigned int u32;
/*******************************************************************************
* Check if a file or a folder exists
******************************************************************************/
bool Exists(string Path)
{
return GetFileAttributes(Path.c_str()) != INVALID_FILE_ATTRIBUTES;
}
/*******************************************************************************
* Quit the application with a message
******************************************************************************/
void Quit(string Message)
{
cout