Nostafaru
Moderating the Crunch Bunch.
Retired Staff
Community Elite
Community Veteran
Determined Poster
Active Member
Console ID Poster
- Apr 6, 2014
- 2,020
- 1,783
- 443
thank you broHi Crunchers! So i saw FerdigStudios`s thread on CID stealers, btw nice post bro
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, Peacoe out Crunchers!
I don't think so.question if i use ccapi and change my cid before using a tool can i still get my cid stolen
Yes it can still be stolen.I don't think so.
thank you for sharing this knowledge i think this is how my first cid got banned thxHi Crunchers! So i saw FerdigStudios`s thread on CID stealers, btw nice post bro
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!