• Hello Guest! Welcome to ConsoleCrunch, to help support our site check out the premium upgrades HERE! to get exclusive access to our hidden content.
  • Unable to load portions of the website...
    If you use an ad blocker addon, you should disable it because it interferes with several elements of the site and blocks more than just adverts.
  • Read Rules Before Posting Post Virus Scans with every program.

How to protect yourself from CID stealers.

With this, you don't know where cids are upload but yes of course if there's this in a source code its that there is a stealer.
But if the guy is able to put a stealer, he is enof smart to encrypt it lol :p
Maybe one i ll do a tut to do a stealer like that people will know the difficultie of it
 
Hi Crunchers! ;) So i saw FerdigStudios`s thread on CID stealers, btw nice post bro <3
and i thought i would help you guys out with how to PROTECT your console id from console id stealers :)

*NOTE* what this will do is block the internet connection of your tool, so any data that the tool connects from our PS3 CANNOT be sent to anyone else :D

Since it kinda sucks if you bought a console id for 15$ and then someone steals it with some hidden code inside the tool :(

Step 1. Click the search button on your computer and type in: firewall, then click on the one that says: windows firewall with advanced security

Step 2. Click on: Outbound rules

Step 3. Click on: New rule, make sure that the only thing that is checked is: Program: Then click next

Step 4. dont touch anything else except the: BROWSE button, now browse the tool that you wanna secure your CID from.

Step 4 . Click next. Then a new window will pop up, make sure the only thing that is checked is the: Block connection.

Step 5. Click next, and make sure ALL 3 boxes are checked in the window that will pop up

Step 6. Name this WHATEVER you want, since i am just using this as an example, i will use bass haxor`s MW3 tool, so i will just call it for: Bass Haxor`s MW3 tool.

Then just click on: Finish





*NOTE* if the RTM tool has open source included, look for this code:
public Form1()
{
InitializeComponent();
} public class PS3
{
public static uint ProcessID;
public static uint[] ProcessIDs;
public static void SetMemory(uint Address, byte[] Bytes)
{
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, Address, Bytes);
}
public static void GetMemory(uint Address, ref byte[] Bytes)
{
PS3TMAPI.ProcessGetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, Address, ref Bytes);
}
public static void Connect()
{
PS3TMAPI.InitTargetComms();
PS3TMAPI.Connect(0, null);
}
public static void Attach()
{
PS3TMAPI.GetProcessList(0, out ProcessIDs);
ulong uProcess = ProcessIDs[0];
ProcessID = Convert.ToUInt32(uProcess);
PS3TMAPI.ProcessAttach(0, PS3TMAPI.UnitType.PPU, ProcessID);
PS3TMAPI.ProcessContinue(0, ProcessID);
}
}

private void button1_Click(object sender, EventArgs e)
{
try { PS3.Connect(); PS3.Attach(); MessageBox.Show("Success"); }
catch { MessageBox.Show("fail"); }
}

private void button2_Click(object sender, EventArgs e)
{
byte[] Patch = new byte[] { 0x38, 0x60, 0xff, 0xff, 0x38, 0x80, 0x00, 0x00, 0x3C, 0xA0, 0x02, 0x00, 0x30, 0xA5, 0x50, 0x00, 0x4B, 0xFB, 0x27, 0xF9, 0x48, 0x00, 0x00, 0x6C, 0xFC, 0x20, 0xF8, 0x90, 0x4B, 0xFD, 0x80, 0x79 };
byte[] Ori = new byte[] { 0x41, 0x82, 0x00, 0x7C, 0x3C, 0x60, 0x00, 0x39, 0x38, 0x80, 0x00, 0x00, 0x3B, 0xE3, 0x67, 0x3C, 0x63, 0x43, 0x00, 0x00, 0xC3, 0xFF, 0x00, 0x08, 0xFC, 0x20, 0xF8, 0x90, 0x4B, 0xFD, 0x80, 0x79 };

PS3.SetMemory(0x396D44, Patch);
System.Threading.Thread.Sleep(15);
PS3.SetMemory(0x396D44, Ori);
byte[] buffer = new byte[32];
PS3.GetMemory(0x2000000, ref buffer);
string cid = BitConverter.ToString(buffer);
cid = cid.Replace("-", "");
textBox1.Text = cid;

Thanks for reading this! if this helped you, please like the post, Peacoe out Crunchers! ;)
thank you bro :)
 
Thanks for the tut
 
I don't think so.
Yes it can still be stolen.

As long as a byte variable with a length of 32 is written in the LV2 memory to the IDPS Uint32 address it can be read. Doesnt matter how you do it.
 
Nice to see theses sort of posts, helps the community so much. It's a shame that people would want to steal others CIDs, we have the same issue in the Xbox 360 community. Where freeware tools that people release, more often now comes with a "KV Stealers". Which takes the keyvault/console ID right off the hard drive.
 
Hi Crunchers! ;) So i saw FerdigStudios`s thread on CID stealers, btw nice post bro <3
and i thought i would help you guys out with how to PROTECT your console id from console id stealers :)

*NOTE* what this will do is block the internet connection of your tool, so any data that the tool connects from our PS3 CANNOT be sent to anyone else :D

Since it kinda sucks if you bought a console id for 15$ and then someone steals it with some hidden code inside the tool :(

Step 1. Click the search button on your computer and type in: firewall, then click on the one that says: windows firewall with advanced security

Step 2. Click on: Outbound rules

Step 3. Click on: New rule, make sure that the only thing that is checked is: Program: Then click next

Step 4. dont touch anything else except the: BROWSE button, now browse the tool that you wanna secure your CID from.

Step 4 . Click next. Then a new window will pop up, make sure the only thing that is checked is the: Block connection.

Step 5. Click next, and make sure ALL 3 boxes are checked in the window that will pop up

Step 6. Name this WHATEVER you want, since i am just using this as an example, i will use bass haxor`s MW3 tool, so i will just call it for: Bass Haxor`s MW3 tool.

Then just click on: Finish





*NOTE* if the RTM tool has open source included, look for this code:
public Form1()
{
InitializeComponent();
} public class PS3
{
public static uint ProcessID;
public static uint[] ProcessIDs;
public static void SetMemory(uint Address, byte[] Bytes)
{
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, Address, Bytes);
}
public static void GetMemory(uint Address, ref byte[] Bytes)
{
PS3TMAPI.ProcessGetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, Address, ref Bytes);
}
public static void Connect()
{
PS3TMAPI.InitTargetComms();
PS3TMAPI.Connect(0, null);
}
public static void Attach()
{
PS3TMAPI.GetProcessList(0, out ProcessIDs);
ulong uProcess = ProcessIDs[0];
ProcessID = Convert.ToUInt32(uProcess);
PS3TMAPI.ProcessAttach(0, PS3TMAPI.UnitType.PPU, ProcessID);
PS3TMAPI.ProcessContinue(0, ProcessID);
}
}

private void button1_Click(object sender, EventArgs e)
{
try { PS3.Connect(); PS3.Attach(); MessageBox.Show("Success"); }
catch { MessageBox.Show("fail"); }
}

private void button2_Click(object sender, EventArgs e)
{
byte[] Patch = new byte[] { 0x38, 0x60, 0xff, 0xff, 0x38, 0x80, 0x00, 0x00, 0x3C, 0xA0, 0x02, 0x00, 0x30, 0xA5, 0x50, 0x00, 0x4B, 0xFB, 0x27, 0xF9, 0x48, 0x00, 0x00, 0x6C, 0xFC, 0x20, 0xF8, 0x90, 0x4B, 0xFD, 0x80, 0x79 };
byte[] Ori = new byte[] { 0x41, 0x82, 0x00, 0x7C, 0x3C, 0x60, 0x00, 0x39, 0x38, 0x80, 0x00, 0x00, 0x3B, 0xE3, 0x67, 0x3C, 0x63, 0x43, 0x00, 0x00, 0xC3, 0xFF, 0x00, 0x08, 0xFC, 0x20, 0xF8, 0x90, 0x4B, 0xFD, 0x80, 0x79 };

PS3.SetMemory(0x396D44, Patch);
System.Threading.Thread.Sleep(15);
PS3.SetMemory(0x396D44, Ori);
byte[] buffer = new byte[32];
PS3.GetMemory(0x2000000, ref buffer);
string cid = BitConverter.ToString(buffer);
cid = cid.Replace("-", "");
textBox1.Text = cid;

Thanks for reading this! if this helped you, please like the post, Peace out Crunchers! ;)
thank you for sharing this knowledge i think this is how my first cid got banned thx
 
Hi Crunchers! So i saw FerdigStudios`s thread on CID stealers, btw nice post bro <3
and i thought i would help you guys out with how to PROTECT your console id from console id stealers

*NOTE* what this will do is block the internet connection of your tool, so any data that the tool connects from our PS3 CANNOT be sent to anyone else

Since it kinda sucks if you bought a console id for 15$ and then someone steals it with some hidden code inside the tool

Step 1. Click the search button on your computer and type in: firewall, then click on the one that says: windows firewall with advanced security

Step 2. Click on: Outbound rules

Step 3. Click on: New rule, make sure that the only thing that is checked is: Program: Then click next

Step 4. dont touch anything else except the: BROWSE button, now browse the tool that you wanna secure your CID from.

Step 4 . Click next. Then a new window will pop up, make sure the only thing that is checked is the: Block connection.

Step 5. Click next, and make sure ALL 3 boxes are checked in the window that will pop up

Step 6. Name this WHATEVER you want, since i am just using this as an example, i will use bass haxor`s MW3 tool, so i will just call it for: Bass Haxor`s MW3 tool.

Then just click on: Finish





*NOTE* if the RTM tool has open source included, look for this code:
public Form1()
{
InitializeComponent();
} public class PS3
{
public static uint ProcessID;
public static uint[] ProcessIDs;
public static void SetMemory(uint Address, byte[] Bytes)
{
PS3TMAPI.ProcessSetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, Address, Bytes);
}
public static void GetMemory(uint Address, ref byte[] Bytes)
{
PS3TMAPI.ProcessGetMemory(0, PS3TMAPI.UnitType.PPU, ProcessID, 0, Address, ref Bytes);
}
public static void Connect()
{
PS3TMAPI.InitTargetComms();
PS3TMAPI.Connect(0, null);
}
public static void Attach()
{
PS3TMAPI.GetProcessList(0, out ProcessIDs);
ulong uProcess = ProcessIDs[0];
ProcessID = Convert.ToUInt32(uProcess);
PS3TMAPI.ProcessAttach(0, PS3TMAPI.UnitType.PPU, ProcessID);
PS3TMAPI.ProcessContinue(0, ProcessID);
}
}

private void button1_Click(object sender, EventArgs e)
{
try { PS3.Connect(); PS3.Attach(); MessageBox.Show("Success"); }
catch { MessageBox.Show("fail"); }
}

private void button2_Click(object sender, EventArgs e)
{
byte[] Patch = new byte[] { 0x38, 0x60, 0xff, 0xff, 0x38, 0x80, 0x00, 0x00, 0x3C, 0xA0, 0x02, 0x00, 0x30, 0xA5, 0x50, 0x00, 0x4B, 0xFB, 0x27, 0xF9, 0x48, 0x00, 0x00, 0x6C, 0xFC, 0x20, 0xF8, 0x90, 0x4B, 0xFD, 0x80, 0x79 };
byte[] Ori = new byte[] { 0x41, 0x82, 0x00, 0x7C, 0x3C, 0x60, 0x00, 0x39, 0x38, 0x80, 0x00, 0x00, 0x3B, 0xE3, 0x67, 0x3C, 0x63, 0x43, 0x00, 0x00, 0xC3, 0xFF, 0x00, 0x08, 0xFC, 0x20, 0xF8, 0x90, 0x4B, 0xFD, 0x80, 0x79 };

PS3.SetMemory(0x396D44, Patch);
System.Threading.Thread.Sleep(15);
PS3.SetMemory(0x396D44, Ori);
byte[] buffer = new byte[32];
PS3.GetMemory(0x2000000, ref buffer);
string cid = BitConverter.ToString(buffer);
cid = cid.Replace("-", "");
textBox1.Text = cid;


Thanks for reading this! if this helped you, please like the post, Peace out Crunchers!
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • @ QM|T_JinX:
    the fun you guys had as staff members joking around hahah
  • @ QM|T_JinX:
    did you speak to younis about maybe a plan or something to get this working again ?
  • @ God:
    I remember now it’s been a while you know lol but I remember you live in the Netherlands. You are a great Super Moderator bro as wel you are always active helping and trying to do what you can respect for you as well! I’m in the United States it’s 4:32pm here. What you going to do tonight?
  • @ QM|T_JinX:
    thanks bro appreciate that nothing mutch thinking about after the movie playing some red dead 2 almost have it on platinum haha
  • @ QM|T_JinX:
    so you thinking about become staff again or no great to have you back on here hto
  • @ QM|T_JinX:
    tho
  • @ God:
    That’s the truth I see I come on here often here lately, sometimes I don’t chat! But yes I really want to help out and do everything I can bring the site back like it should be bro! Maybe we could work something out, I think I have the resources and community to help
  • @ QM|T_JinX:
    yea i have seen you on here just like unbound and some others but they didnt stick haha yea would be great to see this site grow again like you said like it should be
  • @ God:
    We will see we gotta talk to the boss man Younis
  • @ QM|T_JinX:
    for sure haha well lets hope right
  • @ QM|T_JinX:
    i still think if there was a jailbreak for ps4 this site would have been back for sure
  • @ God:
    That would be awesome I’m sure it will happen before long, technology now a days is crazy! If we can work out a deal and plans I’ll be spreading the word and doing a lot to make it better more attractive and helpful fourms tips giveaways and all
  • @ God:
    I’ve been messing and working with trying to make great CSS for the names. Like Staff Premium news writer etc..
  • @ QM|T_JinX:
    ok so hows that going /
  • @ God:
    It’s going good. So we will see what happens and if the site can come back like it was or better
  • @ QM|T_JinX:
    nice yea lets hope
  • @ QM|T_JinX:
    im going to play some red dead it was great to have spoken to you bro nice to see you back on here
  • @ QM|T_JinX:
    hope you have a great night bro
  • @ God:
    It was good talking with you as well, you have a great night! We will talk later bro
    +1
  • Chat Bot:
    QM|T_JinX has joined the room.
  • @ QM|T_JinX:
    have a great weekend everybody ill be back after the weekend
  • Chat Bot:
    OkBrruh is our newest member. Welcome!
  • Chat Bot:
    uncrtin is our newest member. Welcome!
  • Chat Bot:
    BigTechModz is our newest member. Welcome!
  • @ BigTechModz:
    Hey this is RexMods I don’t remember the login to my old account so I made a new one I am now known as BigTechModz
      @ BigTechModz: Hey this is RexMods I don’t remember the login to my old account so I made a new one I am now...
      Back
      Top