-
Notifications
You must be signed in to change notification settings - Fork 68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ACNH: Island Transfer Tool #131
Comments
For now this is all I found
I'm not really good at understanding binary and hex data so I can't really understand what the application_data field needs. Pretty sure though that the island name is there. As for the password, this is what I came up with but I'm not sure, especially because it didn't connect. Probably there's a different one and I don't really know how to get it. |
I have no idea |
I would not worry about the legal risks in this case. I've been hacking Nintendo games for ~10 years and never got into trouble. In fact, Nintendo even rewards people that find new ways to hack their systems: https://hackerone.com/nintendo. That said, I'm sure that it's possible to mimic the island transfer tool. Unfortunately I don't have time to reverse engineer it myself. |
What I've tried for now is using the LDN package and it gave me an output so surely it uses wireless communication and it does not connect to the internet. Based on this I'd say that it would be possible to mimic it, just have to understand how it communicates and send the data. |
Been trying some stuff. stream = Stream()
stream.u32(random.randint(0, 0xFFFFFFFF)) # Session id
stream.u32(0) # CRC-32, Seem to be 0 even here
stream.u8(8) # System communication version
stream.u8(16) # Header size
stream.pad(2)
stream.u32(random.randint(0, 0xFFFFFFFF)) # Session param
stream.u8(1)
stream.u8(0)
stream.data += "Switch's name".encode() # The name of the console, max 32 chars
stream.data.pad(128 - len("Switch's name")) # This seem to be consistent
stream.data.pad(2)
... other data I've also noticed the island name is sent as wchars. |
Right now the hard part would be retrieving the network key. |
hi, i'm really interested for this work. and fortunately i have that console with an island, if possible, how about we work together to find the truth? you could contact me with discord id 912336365105065984. i'd like be happy for that. |
Wait maybe I didn't explain myself well or I didn't got your point, to find the password we probably would need a console without an island!! My console has an island so I can only host the wireless communication, what I wanted to do is host the program and then make the console try to join the communication so that I can retrieve the authentication request and somehow decrypt it! |
i see. don't worry, i also have another console which does not have any island. i think this could satisfy the requirement. |
Nice! This makes it easier surely. |
have you ever try the ldn_mitm to log the key? there is a source code link for latest ldn_mitm: https://github.com/DefenderOfHyrule/ldn_mitm |
Unfortunately I don't have a modded switch to try, would have been useful surely. |
i have a CFW swicth, maybe i can try to find something. besides, you could also use the Ryujinx switch emulator, i guess it has familiar functions. |
If you manage to find something it would be amazing! |
ignore the missed services in system setting, and use ldnRyu, it could works for transfer tool |
This did the trick! |
after logging the ldn_mitm, i find the passphrase info, the code is |
So, I tried the passphrase and it seems to be working! Now the LDN package gives me a new error: Failed to obtain IP address after joining network (timeout) Now I have to figure out this problem. Thanks for the log, I'll see what I can do with it. Edit: |
Would it be possible to use this in combo with the ldn python package to somehow mimic the island transfer tool behaviour?
The ldn package would be the best of the two I guess considering that the island transfer tool relies on wireless communication.
The text was updated successfully, but these errors were encountered: