Hacking [release] 3ds CFW-CIA Installer

  • Thread starter Thread starter Ryanrocks462
  • Start date Start date
  • Views Views 270,761
  • Replies Replies 820
  • Likes Likes 12
Status
Not open for further replies.
I think my computer isn't serious. I hex edited the card to replace gateway dummy sector, but then windows asked me to format the card :lol:
I'm trying again will see what happens. I'm using a different SD card than the one I use with gateway, so I won't break my gateway stuff.
 
So why does this stuff need to connect to a server? Is there an explanation of that?
 
I just find the crying to be hilarious, I couldn't care less, but the more options people have the better. People are all butthurt over the fact that people can now do the same thing GW owners have been able to do, thinking that the stolen code is somehow immoral when the GW isn't. The 3DS hacking scene will only get better. Cia loading is all I really care about, ROM loading be damned.
If you couldnt care less why is every other post of you proclaiming gateway is fucked and gateway fanboys mad because they wasted X amount $ on a useless device now?

The fact of the matter is that this thing is extremely buggy and incomplete, not only is it a complete pain to even get running but the people who have the knowledge to fix it and add new features will not touch it and most likely leave the scene now because it was stolen then leaked, its even possible ssspwn wont be released because of this (im not exactly seeing anything that says its wont right now though)
 
So why does this stuff need to connect to a server? Is there an explanation of that?
Because everyone just wants to PIR8 DA ROMZZZZ and doesn't care about what happens to their privacy and personal informations like their IPs and stuff.
I'd remind everyone in this thread that you're using something from the same guy who did this: https://gbatemp.net/threads/hacking-and-virus-dont-run-random-executable.372872/

If one of these days one of you guys will find the FBI busting through your door since you had some drug-money funneled thru your IP, well, you will know that teh FREE R0mzzzzZZZZ were totally worth it.

Right?
 
Because everyone just wants to PIR8 DA ROMZZZZ and doesn't care about what happens to their privacy and personal informations like their IPs and stuff.
I'd remind everyone in this thread that you're using something from the same guy who did this: https://gbatemp.net/threads/hacking-and-virus-dont-run-random-executable.372872/

If one of these days one of you guys will find the FBI busting through your door since you had some drug-money funneled thru your IP, well, you will know that teh FREE R0mzzzzZZZZ were totally worth it.

Right?


Man an ip must really be a magical thing, apparently it allows random people to use you as a drug mule
 
Code:
import java.io.File;
import java.io.IOException;
import java.io.RandomAccessFile;
import java.nio.ByteBuffer;
import java.nio.MappedByteBuffer;
import java.nio.channels.FileChannel;
import java.nio.file.Path;
import java.nio.file.StandardOpenOption;
 
public class Main {
 
    public static void main(String[] args) throws IOException {
        new Main();
    }
 
    public Main() throws IOException {
        String pathname ="C:\\disk\\ds.img";
        Path diskRoot = (new File(pathname)).toPath();
        FileChannel fc = FileChannel.open(diskRoot, StandardOpenOption.READ, StandardOpenOption.WRITE);
        fc.position(0x200);
        System.out.println(fc.position());
 
        FileChannel nandChannel = new RandomAccessFile("C:\\3ds firmware backup\\mine\\4.5+wifi\\NAND.BIN", "r").getChannel();
        MappedByteBuffer nandBuffer = nandChannel.map(FileChannel.MapMode.READ_ONLY, 0, nandChannel.size());
        fc.write(nandBuffer);
        nandChannel.close();
 
        fc.close();
    }
}
 
  • Like
Reactions: Nightwish
Code:
import java.io.File;
import java.io.IOException;
import java.io.RandomAccessFile;
import java.nio.ByteBuffer;
import java.nio.MappedByteBuffer;
import java.nio.channels.FileChannel;
import java.nio.file.Path;
import java.nio.file.StandardOpenOption;
 
public class Main {
 
    public static void main(String[] args) throws IOException {
        new Main();
    }
 
    public Main() throws IOException {
        String pathname ="C:\\disk\\ds.img";
        Path diskRoot = (new File(pathname)).toPath();
        FileChannel fc = FileChannel.open(diskRoot, StandardOpenOption.READ, StandardOpenOption.WRITE);
        fc.position(0x200);
        System.out.println(fc.position());
 
        FileChannel nandChannel = new RandomAccessFile("C:\\3ds firmware backup\\mine\\4.5+wifi\\NAND.BIN", "r").getChannel();
        MappedByteBuffer nandBuffer = nandChannel.map(FileChannel.MapMode.READ_ONLY, 0, nandChannel.size());
        fc.write(nandBuffer);
        nandChannel.close();
 
        fc.close();
    }
}


care to explain what that is for?
 
Status
Not open for further replies.

Site & Scene News

Popular threads in this forum