What's new

Kornto's rpf viewer (with key)

Goddess

Goddess

Evades crayon maker
Messages
567
Reaction score
348
Points
200
yeah, you can include the offsets that the key is stored in in the default.xex(when decrypted) and get it to read each set of 2 bytes
Like this?
byte[] GTAV_SaveGameKey = new byte[] { 0x66,0xC0,0xD6,0x9E,0xCE,0x49,0xCA,0x45,0x76,0x22,0xB5,0x85,0x8F,0x29,0xAC,0xB0,0x3C,0xBF,0xFB,0x0B,0x76,0x14,0x37,0x23,0xA1,0xC2,0x63,0xA6,0x2A,0xE9,0x68,0xEC };

byte[] GTAV_RPFKey = new bye[] { 0xA1,0xE7,0x29,0x39,0x5D,0x8A,0xD1,0x0B,0x9B,0x7B,0xD0,0x11,0xD5,0x28,0x69,0x3D,0x96,0xE2,0x2B,0xD6,0xA2,0x8A,0xAB,0xAE,0xB4,0xA6,0x9A,0xC6,0xF9,0x73,0x62,0x7F };
 
A

Awakening

The Poxleitner
Grammar Nazi Platinum Record Stickied
Messages
2,702
Reaction score
1,876
Points
470
Does anybody know how to extract an XTD without it giving you a "loadingscreens0.xtd.gfx" and a "loadingscreens0.xtd.sys"? Or a way of converting both of those files into an XTD file? Just removing the SYS and changing the file extension of the GFX doesn't work..
Any ideas?
I want to port it over to GTA IV :wink:
 
Duck

Duck

Quack Quack!
MotM Sinner
Messages
7,320
Reaction score
4,856
Points
1,670
you have to right click on a like a empty space on the tool if you know what i mean like were there are no files in that folder. 
Untitled.png


Like i did all the way at the bottom.


Can you save it though?
 
Goddess

Goddess

Evades crayon maker
Messages
567
Reaction score
348
Points
200
Thread is updated with some more useful info. Links to a GTAV iso and an updated xbox backup creator.
 
Duck

Duck

Quack Quack!
MotM Sinner
Messages
7,320
Reaction score
4,856
Points
1,670
Goddess Goddess - Thank you for sharing the release, but please can you remove the torrent link? sharing warez isn't allowed on the public forum. I'm looking to add your thread to the one I created.
 
Baddog

Baddog

Getting There
Messages
1,204
Reaction score
335
Points
190
Kornto from xentax has made a tool for extracting rpf files from GTA V. Alot of people were going to Cathering's link. having to register, download the program and couldn't use it without the key. So i put the compressed key in so you wouldn't have to go through all the headache. This is an early stage tool but he updates it regularly. I'll attempt to keep it updated. Any productive input is welcome.

So modders....lets see what we can do.

For more information on his tool visit http://forum.xentax.com/viewtopic.php?f=10&t=10719&hilit=gta v&start=60
Thank you Cathering for the research.

Kornto's rpf viewer (with key) http://www.mediafire.com/?rtaqbux5snfqyj8
Updated viewer 9-21-13 http://www.mediafire.com/?b8s29ov3os28v1v
Save feature added.

Thank you to me.

Note( you must have the xcompress.dll extension in the same folder as the libertyV.exe)
To import files you have to right click on a empty space to import a file.

Untitled.png




Thanks to xMR JOHNSONx for the image.

https://www.virustotal.com/en/file/...ce40d0294818753370484842/analysis/1379776014/

Here's a link for a GTA V iso. http://kickass.to/grand-theft-auto-v-xbox360-rf-ind-t7862932.html

Link for xbox backup creator to extract the rpf's. http://www.mediafire.com/download/hjpzcka43pyeqq4/Xbox_Image_Browse_v2.9.0.350.rar

Note (when you open the iso in xbox backup creator right click disc2.....select properties..........uncheck read only...........click on the unblock tab and apply. Then open the iso. Thanks to Duck for the information.
What do I click to download the iso on kickass?
 
Goddess

Goddess

Evades crayon maker
Messages
567
Reaction score
348
Points
200
Goddess Goddess - Thank you for sharing the release, but please can you remove the torrent link? sharing warez isn't allowed on the public forum. I'm looking to add your thread to the one I created.
Thanks, is my first official thread so bare with me. If I uploaded a iso on mediafire would that work? You may add the thread. I just wanted to make it easier for people to access the program. Iso link removed. 
Baddog post: 7362157 said:
What do I click to download the iso on kickass?
Took off the iso link. If I'm allowed to upload it on somewhere else I'll try or give a link to a website I'm admin in where its posted, if I can even do that.
 
Duck

Duck

Quack Quack!
MotM Sinner
Messages
7,320
Reaction score
4,856
Points
1,670
Thanks, is my first official thread so bare with me. If I uploaded a iso on mediafire would that work? You may add the thread. I just wanted to make it easier for people to access the program. Iso link removed. 

Took off the iso link. If I'm allowed to upload it on somewhere else I'll try or give a link to a website I'm admin in where its posted, if I can even do that.


Thank you very much buddy.
 
Goddess

Goddess

Evades crayon maker
Messages
567
Reaction score
348
Points
200
yeah, you can include the offsets that the key is stored in in the default.xex(when decrypted) and get it to read each set of 2 bytes
Nathan........I don't have a clue what that means. 
 
Blu3n0va

Blu3n0va

Enthusiast
Messages
234
Reaction score
55
Points
85
dude how do I start it, I exctracted it but the xbox360 button or ps3 cant be pressen, and when I go to settings and check xbox360 in it says no key or wrong key or something like that :/
 
Zorg93

NayJames123

Read Art
Fabled Veteran Modder Programmer
Messages
4,273
Reaction score
3,475
Points
650
Nathan........I don't have a clue what that means. 
nvm Its meant to be the default.exe anyway, but here is a function that should do it(if you're working with C#)
PHP:
        /// <summary>
        /// Returns the RPF Key From the game executable for xbox
        /// </summary>
        byte[] GetKey(string gameexepath) //default.exe
        {
            byte[] key = new byte[32];
            int[] offset = new int[16] { 0x16F2956, 0x16E8F3E, 0x16E9A2E, 0x16DF5F6, 0x16EA4AE, 0x16EA766, 0x16EA90E, 0x16ED3A6,
                                                        0x16EF0D6,  0x16EDAAE, 0x16F5426, 0x16F4146, 0x1706A0E, 0x170693E, 0x1705D5E, 0x17081EE };
            System.IO.FileStream fs = new System.IO.FileStream(gameexepath, System.IO.FileMode.Open, System.IO.FileAccess.Read);
            for (int i = 0; i < 16; i++)
            {
                fs.Position = offset[i];
                fs.Read(key, i * 2, 2);
            }
            fs.Close();
            if (BitConverter.ToString(System.Security.Cryptography.MD5.Create().ComputeHash(key)).Replace("-", "") != "EAD1EA1A3870557B424BC8CF73F51018")
                throw new Exception("Invalid RPF Key");
            return key;
        }
EDIT: Im, not sure of the correct offsets for the default.xex file, just the extracted default.exe that xextool dumps for you
 
Goddess

Goddess

Evades crayon maker
Messages
567
Reaction score
348
Points
200
dude how do I start it, I exctracted it but the xbox360 button or ps3 cant be pressen, and when I go to settings and check xbox360 in it says no key or wrong key or something like that :/
rename your key file to the one thats in the folder. Change it to key.dat when you configure it.
 
Blu3n0va

Blu3n0va

Enthusiast
Messages
234
Reaction score
55
Points
85
rename your key file to the one thats in the folder. Change it to key.dat when you configure it.


yeah did so, the problem is that there was no key on the updated version so I had to download the old one :smile:
 
iOwNZz x 1337

iOwNZz x 1337

1337 Clan Leader
Messages
1,819
Reaction score
192
Points
190
how do i get it to sraty? there is no key i could enter.
 
Top Bottom
Login
Register