The MIG Switch Thread

Keylogger

Well-Known Member
Member
Joined
May 3, 2006
Messages
2,648
Trophies
1
Age
34
Website
Visit site
XP
6,715
Country
France
Can I dump my NSP games from my CFWed switch to use them on MIG SWITCH?
Post automatically merged:

Other question:
Can I use only one certificate with all my dumps If I don’t care about ban? I mean will it works?
 

turkeylip

New Member
Newbie
Joined
Apr 2, 2024
Messages
2
Trophies
0
Age
36
XP
14
Country
United States
Is there a way I can check the initial data file and xci to see if they are compatible...without attempting to load the game on the Switch.
 

turkeylip

New Member
Newbie
Joined
Apr 2, 2024
Messages
2
Trophies
0
Age
36
XP
14
Country
United States
Is there a way I can check the initial data file and xci to see if they are compatible...without attempting to load the game on the Switch.
 

TheStonedModder

Well-Known Member
OP
Member
Joined
Dec 25, 2022
Messages
889
Trophies
0
Age
27
XP
1,743
Country
United States

Attachments

  • image.png
    image.png
    19.9 KB · Views: 9
  • Like
Reactions: frozencat

flextcg

New Member
Newbie
Joined
Apr 5, 2024
Messages
3
Trophies
0
Age
25
XP
23
Country
Austria
i ordered a mig switch but it hasnt arrived yet. hopefully it will arrive soon. i had chatgpt write a python script to modify the xci file, to allow you to use pretty much any initial data bin file with any xci. maybe someone can test it for me. if not i will be trying once i get my mig switch, i just got my shipping notification so heres to that.

chatgpt wrote 2 other scripts that tried to generate an intial data file, but that was futile because i think the initial data bin is signed. so instead my thought is to update the xci only. if this works it could open up modding on original switches using only the mig switch.

but this script is based off the following information i found in a youtube comment:
the initial data contains 2 parts the first 8 bytes are the header, which is found in the xci. and the second part is the challenge response which allows the cart to enter secure mode in the cartslot. the sha256 hash of the whole initial data file can found in the xci as well. my thought was to reuse the challenge response, since dev carts can use a common response. the script is supposed to update the xci with the new sha256 hash and the 8 byte header from the initial data bin.

the modified xci still plays in an emulator just fine. but i cant test it on mig switch till mine arrives.



Python:
import hashlib
import zlib
import argparse

def update_game_xci_with_initial_data(game_bin_path, initial_data_path):
    with open(initial_data_path, 'rb') as initial_data_bin:
        initial_data_content = initial_data_bin.read()

    # Extract the relevant data from initial_data.bin that needs to be matched in game.xci
    data_to_match = initial_data_content[0x0:0x8]  # For example, the first 8 bytes

    # Update game.xci with the extracted data
    with open(game_bin_path, 'r+b') as game_bin:
        game_bin.seek(0x110)  # Assuming the data needs to be updated at offset 0x110
        game_bin.write(data_to_match)
    with open(initial_data_path, 'rb') as initial_data_bin:
        initial_data_bin_content = initial_data_bin.read()
        new_sha256 = hashlib.sha256(initial_data_bin_content).digest()
    with open(game_bin_path, 'r+b') as game_bin:

    # Update game.xci with new SHA256
        game_bin.seek(0x160)
        game_bin.write(new_sha256)


def main():
    parser = argparse.ArgumentParser(description="Update game.xci to match data from initial_data.bin")
    parser.add_argument("game_bin_path", help="Path to the game.xci file")
    parser.add_argument("initial_data_path", help="Path to the initial_data.bin file")
    args = parser.parse_args()

    update_game_xci_with_initial_data(args.game_bin_path, args.initial_data_path)
    print('game.xci has been updated.')

if __name__ == "__main__":
    main()
I got my Mig Switch yesterday, and have been fiddling with it since. I've tried 2 initial data generator scripts, the first one did not work at all, the second one updated some lines in the xci and the initial data bin itself, and the one you attached only tampered with the xci, but none of them were able to get this game to work yet.
 

TheStonedModder

Well-Known Member
OP
Member
Joined
Dec 25, 2022
Messages
889
Trophies
0
Age
27
XP
1,743
Country
United States
-snip-

I got my Mig Switch yesterday, and have been fiddling with it since. I've tried 2 initial data generator scripts, the first one did not work at all, the second one updated some lines in the xci and the initial data bin itself, and the one you attached only tampered with the xci, but none of them were able to get this game to work yet.
You can’t generate initial data that’s unique to each game. I’d scan your PC for a virus
 
Last edited by Flame,

flextcg

New Member
Newbie
Joined
Apr 5, 2024
Messages
3
Trophies
0
Age
25
XP
23
Country
Austria
It’s already mirrored elsewhere and we can’t link it here


You can’t generate initial data that’s unique to each game. I’d scan your PC for a virus
They were just very similar python scripts like one they attached here, there is no need for a virus scan. The XCI I got was different from the initial data bin, and these scripts were meant to make them compatible somehow, but did not work.
 
  • Like
Reactions: supermad91

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
  • K3Nv2 @ K3Nv2:
    They should've just made it a movie at 50 minutes
    +1
  • Psionic Roshambo @ Psionic Roshambo:
    No from Paramount Plus or whatever it is
    +1
  • Psionic Roshambo @ Psionic Roshambo:
    Psi now has access to every streaming and cable channel out
  • K3Nv2 @ K3Nv2:
    Eh I'd rather just download and delete is it already up on paramount?
  • Psionic Roshambo @ Psionic Roshambo:
    Yeah it's on now
  • Xdqwerty @ Xdqwerty:
    @Psionic Roshambo, why are most new south park episodes half hour specials?
    +1
  • K3Nv2 @ K3Nv2:
    @Psionic Roshambo, let me get a Netflix account I've always been nice to you
    +1
  • Psionic Roshambo @ Psionic Roshambo:
    I made a honey pepper glazed turkey breast for dinner turned out pretty bomb
  • K3Nv2 @ K3Nv2:
    We can Netflix and chill
  • Xdqwerty @ Xdqwerty:
    Nvm not half hour, but hour long
  • Xdqwerty @ Xdqwerty:
    Normal south park episodes are already half hour
  • Psionic Roshambo @ Psionic Roshambo:
    Got 2 free Xumo boxes they work pretty good
  • K3Nv2 @ K3Nv2:
    I'm happy to get anything most series don't make it pass 6 seasons
  • Psionic Roshambo @ Psionic Roshambo:
    Except Stars and Encore those are being a bitch lol
  • K3Nv2 @ K3Nv2:
    I may consider that onn pro box finally a media box with type A ;O
    +1
  • Xdqwerty @ Xdqwerty:
    @K3Nv2, cuz the companies don't want em to
  • K3Nv2 @ K3Nv2:
    No it's revenue and demand south park could argue has a bigger audience than family guy about the same
    +1
  • K3Nv2 @ K3Nv2:
    Family guy is worth 300mill south parks worth 1Bill according to the interwebs
  • Xdqwerty @ Xdqwerty:
    @K3Nv2, probably cuz family guy is more disliked compared to south park
  • K3Nv2 @ K3Nv2:
    It just does the same formula south park can press buttons without going overboard
  • Xdqwerty @ Xdqwerty:
    And bc most of the family guy budget is spent on the voice actors rather than on the animation
  • K3Nv2 @ K3Nv2:
    Southpark could spend 30k on a animated dick and people would laugh at it
    +2
  • K3Nv2 @ K3Nv2:
    lol one prescription to Lizzo
  • Xdqwerty @ Xdqwerty:
    who is lizzo?
  • Xdqwerty @ Xdqwerty:
    yawn
    Xdqwerty @ Xdqwerty: yawn