Show Posts
|
|
Pages: 1 2 3 4 »
|
|
1
|
Research & Technical XboxHacking (Xbox 360) / Software (TECHNICAL) / Re: 3CD6-3F4B-B380-0F00-C000-0034
|
on: April 02, 2013, 04:24:22 PM
|
Just to elaborate on xb0b's answer:
If you convert the first 4 bytes of the status code from hex to decimal you will get the previous dash version and the failed update dash version. These bytes happen to convert to 15574 --> 16203
Here is the official definition: typedef struct _UPDATE_STATUS_CODE { USHORT VersionOld; // 0x00-0x02 USHORT VersionNew; // 0x02-0x04 UCHAR Area : 4; // 0x04-0x05 UCHAR StorageDevice : 4; // 0x04-0x05 UCHAR Downloaded : 1; // 0x05-0x06 UCHAR Reserved : 6; // 0x05-0x06 UCHAR Instrumentation : 1; // 0x05-0x06 UCHAR InternalState; // 0x06-0x07 UCHAR ListIndex; // 0x07-0x08 UINT OperationResult; // 0x08-0x0C }; // 0x0C
|
|
|
|
|
2
|
Xbox 360 / Tech Support 360 / Re: Can anyone tell me if a Developers board is good for anything?
|
on: March 18, 2013, 06:59:02 PM
|
Thank you for the response Eaton. I did not even give a thought to it being setup by default to run like that. However, even if it already runs unsigned games and apps, Don't i need a DVD key to install dvd drive? suppose I can just hook one up and see what happens.
You can use an app called HvxDump to get it. It will dump the KV for you. 0x100 into the file for 0x10 bytes is your DVD key.
|
|
|
|
|
5
|
Research & Technical XboxHacking (Xbox 360) / Hard Disk / Re: HDDHackr v1.40 Build 20130303
|
on: March 05, 2013, 11:24:15 AM
|
|
I don't think it is wise to use solid-state disks on this console. Think about it, the Nt OS was not optimized for SSDs until Windows 7. The Xbox 360 OS was developed before Windows Vista came out. Using an SSD on an unoptimized OS (no TRIM, etc) may cause the lifespan of the device to degrade faster than it normally would. I am not sure if you will exactly get the performance increases you are expecting, either.
|
|
|
|
|
7
|
Xbox 360 / XboxHacking - General / Re: Questions on some SPRs
|
on: February 27, 2013, 11:00:50 PM
|
Maybe these definitions will help you. HID1typedef union _SOCSPR_HID1 { unsigned int PUTraceControl6 : 2; // 0x00-0x08 unsigned int PUTraceControl5 : 2; // 0x00-0x08 unsigned int IUTriggerEnable : 4; // 0x00-0x08 unsigned int IUTriggerControl : 4; // 0x00-0x08 unsigned int MMUTraceControl1 : 1; // 0x00-0x08 unsigned int MMUTraceControl0 : 1; // 0x00-0x08 unsigned int PUTraceControl1 : 1; // 0x00-0x08 unsigned int PUTraceControl0 : 1; // 0x00-0x08 unsigned int PUTraceControl4 : 3; // 0x00-0x08 unsigned int PUTraceControl3 : 3; // 0x00-0x08 unsigned int PUTraceControl2 : 2; // 0x00-0x08 unsigned int PUTraceByteEnables : 8; // 0x00-0x08 unsigned int PerformanceMonitorEnable : 1; // 0x00-0x08 unsigned int Reserved1 : 5; // 0x00-0x08 unsigned int InstructionPrefetchEnable : 1; // 0x00-0x08 unsigned int Reserved2 : 5; // 0x00-0x08 unsigned int SystemResetInterruptAddressRegisterDisable : 1; // 0x00-0x08 unsigned int Reserved3 : 4; // 0x00-0x08 unsigned int ForceInstructionCacheParityError : 1; // 0x00-0x08 unsigned int DisableInstructionCacheParityErrorRecovery : 1; // 0x00-0x08 unsigned int Reserved4 : 1; // 0x00-0x08 unsigned int DisableConfigInstructionCacheInhibit : 1; // 0x00-0x08 unsigned int DisableForcedInstructionCacheInhibit : 1; // 0x00-0x08 unsigned int ForcedIcbiMatchModeEnable : 1; // 0x00-0x08 unsigned int Reserved5 : 2; // 0x00-0x08 unsigned int InstructionCacheInvalidate : 1; // 0x00-0x08 unsigned int InstructionCacheSetEnable : 2; // 0x00-0x08 unsigned int LinkStackEnable : 1; // 0x00-0x08 unsigned int Reserved6 : 1; // 0x00-0x08 unsigned int BranchPredictionDisable : 1; // 0x00-0x08 unsigned int BranchHistoryTablePredictionMode : 1; // 0x00-0x08 unsigned int AsULONGLONG; // 0x00-0x08 }; // 0x08 HID6typedef union _SOCSPR_HID6 { unsigned int Reserved1 : 34; // 0x00-0x08 unsigned int RealModeStorageControl : 4; // 0x00-0x08 unsigned int Reserved2 : 6; // 0x00-0x08 unsigned int LargePage1Size : 2; // 0x00-0x08 unsigned int LargePage0Size : 2; // 0x00-0x08 unsigned int TimebaseAndDecrementerEnable : 1; // 0x00-0x08 unsigned int Reserved3 : 4; // 0x00-0x08 unsigned int DebugBusEnable : 1; // 0x00-0x08 unsigned int Reserved4 : 2; // 0x00-0x08 unsigned int DebugAndPerformanceSelect : 8; // 0x00-0x08 unsigned int AsULONGLONG; // 0x00-0x08 }; // 0x08 LPCRtypedef union _SOCSPR_LPCR { unsigned int HypervisorDecrementerInterruptControlEnable : 1; // 0x00-0x08 unsigned int RealModeCachingInhibited : 1; // 0x00-0x08 unsigned int LogicalPartitionEnvironmentSelector : 2; // 0x00-0x08 unsigned int Reserved1 : 6; // 0x00-0x08 unsigned int SoftwareTablewalkEnable : 1; // 0x00-0x08 unsigned int MediateExternalExceptionRequest : 1; // 0x00-0x08 unsigned int Reserved2 : 14; // 0x00-0x08 unsigned int RealModeLimitSelector : 4; // 0x00-0x08 unsigned int Reserved3 : 34; // 0x00-0x08 unsigned int AsULONGLONG; // 0x00-0x08 }; // 0x08
|
|
|
|
|
12
|
Research & Technical XboxHacking (Xbox 360) / Software (TECHNICAL) / Re: xebuild patches need help
|
on: August 21, 2012, 06:01:05 PM
|
I try to open a compiled freeboot patch any patch. I get a error window popup.
System.IO.InvalidDataException Failed to read patch file. Patch file: cd 9230.bin is not a valid size.
Running windows 7 32bit.
Thanks.
That is a bootloader not a patch? I thought it was a patch for the trinity bootloader? Not the bootloader itself. I still get an error when opening patches_trinity.bin System.ArgumentOutOfRangeException Failed to read patch file. Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: StartIndex Appears to be a bug in the tool. I will look into an update since it has been becoming increasingly popular lately.
|
|
|
|
|
13
|
Research & Technical XboxHacking (Xbox 360) / Software (TECHNICAL) / Re: xebuild patches need help
|
on: August 17, 2012, 09:05:33 PM
|
Hi im new here and abit of a noob. Although ive been here reading/researching these threads for years. Im looking for a little help if somone would be so kind. Im after a program to open the xebuild patch sets? Ive tried eatons patch builder but get a size not valid error. Im looking at opening the kernel/hv patches. Intrested in stripping them back to a bare minimum and looking at what they patch and why?
Thankyou people
What is the exact problem you are experiencing with my tool?
|
|
|
|
|
14
|
Xbox 360 / XboxHacking - General / Re: Blades Dash - Dashlaunch
|
on: July 10, 2012, 10:35:42 PM
|
|
I recall people having posted videos of dash v1888 working. You should be able to run the dash.xex through xex tool to remove bounding path restrictions. Then put it on your device somewhere and direct DashLaunch to it.
|
|
|
|
|
16
|
Research & Technical XboxHacking (Xbox 360) / Hard Disk / Re: What is the largest HDD ?? Samsung 1TB Spinpoint M8 HN-M101MBB compatible? ?????
|
on: April 28, 2012, 06:18:05 PM
|
|
Yes. You may want to consider a 500 GB HDD because MS might eventually release one, and it will be very easy to upgrade in order to use more space.
It isn't impossible, but I just isn't easy. There is a reason HDD Hacker supports WD drives only. Each vendor makes their own HDD firmware, the code that controls the actual HDD and contains the model info, etc. Modifying this information, which is required, differs per vendor.
I know of no tools to write Samsung disk firmware, so you won't be able to use this HDD with your console.
|
|
|
|
|
19
|
Xbox 360 / Tech Support 360 / Re: 250gig slim retail hdd not recognizd by xbox
|
on: February 27, 2012, 09:23:01 PM
|
How did you transfer the data?
Probably Party Buffalo. kabelosean, the application could have modified the security sector for some reason. If this vital sector is modified, it would result in this exact behavior. Can you open your drive in a hex editor and go to sector 16? See if the security sector is still there.
|
|
|
|
|
20
|
Xbox 360 / XboxHacking - General / Re: Xbox360 4gb - Help in running backup games!
|
on: January 18, 2012, 11:46:00 PM
|
Hi. I have a Xbox360 4GB. What is the easiest way to run backup games without a chip and/or without opennig my Xbox?
I am not interested in using Xbox Live, but I want an easy method that I could do without damaging my Xbox!
You should look into an ODD emulator, like X360 Key. You have to open the box to install it, but compared to drive flashing, ODD emulators are easy to update and putting games on is very simple. You could send your box to someone to have them install it for you. Since you aren't concerned with XBL, that sounds like the best option for you.
|
|
|
|
|