Results 1 to 20 of 20

Thread: Is there Any documentaion for the SDK

  1. #1

    Is there Any documentaion for the SDK

    Hello i am new here. I was wondering were i could find documentation for the SDK. I want to get started in reverseing xex and creating xex. Any help would be apriciated!

  2. #2
    Foot Soldier
    Dark Neo's Avatar

    Join Date
    Oct 2007
    Location
    Germany
    Posts
    222
    Ehm? SDK Documentation find you in your SDK? :-)

  3. #3
    Quote Originally Posted by Electric Tuner View Post
    Ehm? SDK Documentation find you in your SDK? :-)

    Looks like i acedently didnt install full version. I didnt relize i didnt have VS 2005. I only had 2010. I will see what happens after this finishes installing.

  4. #4
    Its on there with the partial install aswell. >_> check Icon->Programs->Xbox360shit->Documentation -_-

  5. #5
    Combat Soldier
    splith's Avatar

    Join Date
    May 2010
    Location
    In a house.
    Posts
    894
    Quote Originally Posted by KIWIDOGGIE View Post
    Its on there with the partial install aswell. >_> check Icon->Programs->Xbox360shit->Documentation -_-
    Strangely enough I don't remembering it installing a folder in my start menu called 'Sbox360shit'. Odd

  6. #6
    Site Supporter 2013 Foot Soldier
    itchy's Avatar

    Join Date
    Aug 2009
    Posts
    428
    reversing xex ?
    I don't think it's possible

  7. #7
    type x.bat

    @echo off
    set xdk=E:\xbox360
    set PATH=%SystemRoot%;%SystemRoot%\system32;%xdk%\bin
    set include=%xdk%\include\xbox;%xdk%\include\Common
    set lib=%xdk%\lib\xbox

    if "%1" == "" goto over

    cl /c /D "_XBOX" %1.cpp
    link /XEX:No /OUT:%1.exe d3d9.lib d3dx9.lib xgraphics.lib xapilib.lib xaudio.lib x3daudio.lib xboxkrnl.lib xbdm.lib atgframework.lib %1.obj
    imagexex /in:%1.exe /out:%1.xex /format:unencrypted
    imagexex /dump %1.xex
    goto over
    :over
    echo Done!


    E:\xbox360\

    2010-06-01 01:04 <DIR> .
    2010-06-01 01:04 <DIR> ..
    2010-06-01 09:20 <DIR> bin
    2010-06-01 01:00 <DIR> include
    2010-06-01 01:05 <DIR> lib



    E:\xbox360\bin

    2010-06-01 09:20 <DIR> .
    2010-06-01 09:20 <DIR> ..
    2010-06-01 00:30 <DIR> 1033
    2008-05-29 01:48 103,424 atl80.dll
    2008-05-29 01:48 1,658,880 c1xx.dll
    2008-05-29 01:48 1,257,472 c2.dll
    2008-05-29 01:48 81,920 cl.exe
    2008-05-29 01:48 612 cl.exe.manifest
    2008-05-28 18:04 184,320 imagexex.exe
    2010-06-01 09:20 2,302,163 imagexex.idb
    2008-05-29 01:48 569,344 link.exe
    2008-05-29 01:48 612 link.exe.manifest
    2008-05-29 01:48 94,208 msdisXXX.dll
    2008-05-29 01:48 69,632 msobj80.dll
    2008-05-29 01:48 270,336 mspdb80.dll
    2008-05-29 01:48 548,864 msvcp80.dll
    2008-05-29 01:48 626,688 msvcr80.dll
    2008-05-29 01:48 41,984 pgodb80.dll
    2008-05-29 01:48 203,264 tlbref.dll



    E:\xbox360\Projects\MemoryViews>x MemoryViews
    Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 14.00.7151 for PowerPC
    Copyright (C) Microsoft Corporation. All rights reserved.
    MemoryViews.cpp
    Microsoft (R) Incremental Linker Version 8.00.7710
    Copyright (C) Microsoft Corporation. All rights reserved.
    Microsoft(R) Xbox 360 Image File Builder Version 2.0.7645.0
    (c)2008 Microsoft Corporation. All rights reserved.
    Microsoft(R) XEX File Dumper Version 2.0.7645.0
    (c)2008 Microsoft Corporation. All rights reserved.

    Dump of file MemoryViews.xex
    FILE HEADER VALUES
    1 module flags
    title module
    82000000 load address
    290000 image size
    FFFFFFFF game region
    North America
    Japan
    China
    rest of Asia
    Australia/New Zealand
    rest of Europe
    rest of world
    0 image flags
    64KB pages
    8000605 allowed media types
    hard disk
    DVD/CD
    SMB filesystem
    direct-from-RAM
    Live-signed package
    XGD2 media ID: 00000000000000000000000000000000
    Signature digest: 4E81D6AD 222F3DA8 CE43B53D F40809C9 4402C2AF
    A number of optional header entries
    OPTIONAL HEADER VALUES
    82000000 image base address
    820611A0 entry point
    00000000 image checksum
    4C62AE9C image timestamp
    40 number of TLS slots
    00040000 default stack size
    NOT-COMPRESSED, NOT-ENCRYPTED
    Original PE image name: MemoryViews.exe
    LAN key: 00000000000000000000000000000000
    SYSTEM IMPORT LIBRARIES
    xam.xex version 2.0.7645.0 (minimum 2.0.1861.0)
    xboxkrnl.exe version 2.0.7645.0 (minimum 2.0.1861.0)
    LIBRARY VERSIONS
    XAPILIB 2.0.7645.0 [unknown]
    XBOXKRNL 2.0.7645.0 [unknown]
    LIBCMT 2.0.7645.0 [unknown]
    D3D9 2.0.7645.1 [unknown]
    D3DX9 2.0.7645.0 [unknown]
    XGRAPHC 2.0.7645.0 [unknown]
    Done!
    E:\xbox360\Projects\MemoryViews>
    Last edited by jskew; 08-11-2010 at 10:11 AM.

  8. #8
    Quote Originally Posted by jskew View Post
    type x.bat

    @echo off
    set xdk=E:\xbox360
    set PATH=%SystemRoot%;%SystemRoot%\system32;%xdk%\bin
    set include=%xdk%\include\xbox;%xdk%\include\Common
    set lib=%xdk%\lib\xbox

    if "%1" == "" goto over

    cl /c /D "_XBOX" %1.cpp
    link /XEX:No /OUT:%1.exe d3d9.lib d3dx9.lib xgraphics.lib xapilib.lib xaudio.lib x3daudio.lib xboxkrnl.lib xbdm.lib atgframework.lib %1.obj
    imagexex /in:%1.exe /out:%1.xex /format:unencrypted
    imagexex /dump %1.xex
    goto over
    :over
    echo Done!


    E:\xbox360\

    2010-06-01 01:04 <DIR> .
    2010-06-01 01:04 <DIR> ..
    2010-06-01 09:20 <DIR> bin
    2010-06-01 01:00 <DIR> include
    2010-06-01 01:05 <DIR> lib



    E:\xbox360\bin

    2010-06-01 09:20 <DIR> .
    2010-06-01 09:20 <DIR> ..
    2010-06-01 00:30 <DIR> 1033
    2008-05-29 01:48 103,424 atl80.dll
    2008-05-29 01:48 1,658,880 c1xx.dll
    2008-05-29 01:48 1,257,472 c2.dll
    2008-05-29 01:48 81,920 cl.exe
    2008-05-29 01:48 612 cl.exe.manifest
    2008-05-28 18:04 184,320 imagexex.exe
    2010-06-01 09:20 2,302,163 imagexex.idb
    2008-05-29 01:48 569,344 link.exe
    2008-05-29 01:48 612 link.exe.manifest
    2008-05-29 01:48 94,208 msdisXXX.dll
    2008-05-29 01:48 69,632 msobj80.dll
    2008-05-29 01:48 270,336 mspdb80.dll
    2008-05-29 01:48 548,864 msvcp80.dll
    2008-05-29 01:48 626,688 msvcr80.dll
    2008-05-29 01:48 41,984 pgodb80.dll
    2008-05-29 01:48 203,264 tlbref.dll



    E:\xbox360\Projects\MemoryViews>x MemoryViews
    Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 14.00.7151 for PowerPC
    Copyright (C) Microsoft Corporation. All rights reserved.
    MemoryViews.cpp
    Microsoft (R) Incremental Linker Version 8.00.7710
    Copyright (C) Microsoft Corporation. All rights reserved.
    Microsoft(R) Xbox 360 Image File Builder Version 2.0.7645.0
    (c)2008 Microsoft Corporation. All rights reserved.
    Microsoft(R) XEX File Dumper Version 2.0.7645.0
    (c)2008 Microsoft Corporation. All rights reserved.

    Dump of file MemoryViews.xex
    FILE HEADER VALUES
    1 module flags
    title module
    82000000 load address
    290000 image size
    FFFFFFFF game region
    North America
    Japan
    China
    rest of Asia
    Australia/New Zealand
    rest of Europe
    rest of world
    0 image flags
    64KB pages
    8000605 allowed media types
    hard disk
    DVD/CD
    SMB filesystem
    direct-from-RAM
    Live-signed package
    XGD2 media ID: 00000000000000000000000000000000
    Signature digest: 4E81D6AD 222F3DA8 CE43B53D F40809C9 4402C2AF
    A number of optional header entries
    OPTIONAL HEADER VALUES
    82000000 image base address
    820611A0 entry point
    00000000 image checksum
    4C62AE9C image timestamp
    40 number of TLS slots
    00040000 default stack size
    NOT-COMPRESSED, NOT-ENCRYPTED
    Original PE image name: MemoryViews.exe
    LAN key: 00000000000000000000000000000000
    SYSTEM IMPORT LIBRARIES
    xam.xex version 2.0.7645.0 (minimum 2.0.1861.0)
    xboxkrnl.exe version 2.0.7645.0 (minimum 2.0.1861.0)
    LIBRARY VERSIONS
    XAPILIB 2.0.7645.0 [unknown]
    XBOXKRNL 2.0.7645.0 [unknown]
    LIBCMT 2.0.7645.0 [unknown]
    D3D9 2.0.7645.1 [unknown]
    D3DX9 2.0.7645.0 [unknown]
    XGRAPHC 2.0.7645.0 [unknown]
    Done!
    E:\xbox360\Projects\MemoryViews>

    Copy paste much hahah .

  9. #9
    Quote Originally Posted by splith View Post
    Strangely enough I don't remembering it installing a folder in my start menu called 'Sbox360shit'. Odd
    Microsoft Xbox 360 SDK.

    Can we all agree on the ridiculousness of this topic?

  10. #10
    neull
    Guest neull's Avatar
    I can; that's for damned sure.

  11. #11
    Quote Originally Posted by shanegillespie2 View Post
    Hello i am new here. I was wondering were i could find documentation for the SDK. I want to get started in reverseing xex and creating xex. Any help would be apriciated!
    The SDK covers every, single aspect of reversing an XEX, since that's very important for developers to know.

  12. #12
    Combat Soldier
    splith's Avatar

    Join Date
    May 2010
    Location
    In a house.
    Posts
    894
    "
    hello
    Can you aim me at shanegillespie5@hotmail.com"

    Am I the only person that randomly got that as a message?

  13. #13
    No i sent it to like 3 others. Your Point?
    Last edited by shanegillespie2; 08-17-2010 at 06:55 PM.

  14. #14
    Combat Soldier
    splith's Avatar

    Join Date
    May 2010
    Location
    In a house.
    Posts
    894
    You don't think it's rude to just send that to someone?
    Not even a 'can you help?' nicely?
    First of all I don't own a single XDA/x360 development item.
    Secondly I know buggar all about it.

  15. #15
    Quote Originally Posted by shanegillespie2 View Post
    Hello i am new here. I was wondering were i could find documentation for the SDK. I want to get started in reverseing xex and creating xex. Any help would be apriciated!
    If you want to get into 360 development I suggest you try XNA. Unless you are fluent in C/C++ and are also very seasoned in the language, I would not suggest an XDK. I don't own any 360 development hardware/software, but I assure you reverse engineering and Xbox executable is not in any documentation.

    Also I can see by your name you're a Halo fan. Now that doesn't mean anything, but usually people who come here with trails of Halo behind them don't always get a warm welcome.

    I don't see the point in asking for SDK documentation if you are not able to utilize it. I suggest you start looking though MSDN, or reading up on even friendlier languages than C++, like C# or even Visual Basic. Both are great starts.
    Last edited by Webst3r; 08-17-2010 at 09:16 PM.

  16. #16
    Lol Thanks for your repliy. My name is shane gillespie lol so i dont really understand what you are talking about. I like all games. I am currently in school for a programing degree so i am decent at programing. I was just needing help but not to much anymore there is a tun of help in the documentaion so i am good now.

  17. #17
    Quote Originally Posted by shanegillespie2 View Post
    Lol Thanks for your repliy. My name is shane gillespie lol so i dont really understand what you are talking about. I like all games. I am currently in school for a programing degree so i am decent at programing. I was just needing help but not to much anymore there is a tun of help in the documentaion so i am good now.
    Oh, sorry,you name looked like the name of a creature in Halo. ;-)

  18. #18

  19. #19
    LoveMHz
    Guest LoveMHz's Avatar

    :P

  20. #20
    Quote Originally Posted by shanegillespie2 View Post
    Lol Thanks for your repliy. My name is shane gillespie lol so i dont really understand what you are talking about. I like all games. I am currently in school for a programing degree so i am decent at programing. I was just needing help but not to much anymore there is a tun of help in the documentaion so i am good now.
    Haha do you not read the post? I said I had found it and I am good now.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •