Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - debug

Pages: [1]
1
.NET Framework / Re: Easy read/write file [.NET]
« on: April 02, 2011, 03:02:40 am »
I'd strongly recommend using the methods under the System.IO namespace instead of using old VB references.

It's as simple as:

File.WriteAllBytes(path, data)
File.WriteAllText(path, stringData)

byte[] data = File.ReadAllBytes(path); //C#
Dim data as Byte() = File.ReadAllBytes(path) 'VB

string stringData = File.ReadAllText(path) //C#
Dim stringData as String = File.ReadAllText(path) 'VB

2
C - C++ / Re: Nand.Bin File
« on: April 01, 2011, 04:01:11 pm »
Thank you debug for the information, i think you are probably right. Im in over my head here, i just keep seing people online with there jtag's. I thaught this would give me something new to learn and make alot of money when i did get my jtag online. Simple fact is its to darn complicated. ;)

The people online simply edited the FreeBOOT patches to enable online, since the creator of FB originally disabled it. They aren't doing anything anywhere near as complex as this.

3
C - C++ / Re: Nand.Bin File
« on: March 31, 2011, 06:34:24 pm »
You most likely won't find anything in the xam.xex worth using, most of the stuff in there is content-related. Not much security apart from basic verification.

I've found the kernel version in both the Hypervisor header and the xboxkrnl.exe (first export). But even changing those won't be enough, they aren't going to let a simple version change allow you on to LIVE.

In all honesty, you're out of your depth on this one. Microsoft have an excellent research and development team, they aren't going to make such stupid mistakes like this.

Edt: I just googled that post and it brought me to TTG.. don't believe any technical "research" from kiddie sites like those. Most of them are just BSing to whore attention.

4
C - C++ / Re: Nand.Bin File
« on: March 27, 2011, 01:29:59 pm »
Firstly, the NAND is a filesystem. It simply holds the executables you're trying to disassemble. Secondly, what you're looking at is a exported function to get the base version, i.e 1888. And thirdly, you're going to have to learn PPC assembly and at least look into the Hypervisor if you plan to get anywhere.

The truth is that you're trying to **** with LIVE, just don't bother.

Pages: [1]