[PS3] Free Console Id's

Status
Not open for further replies.

Core

Member
Nov 10, 2016
356
138
FREE CONSOLE ID

The title explains everything. I will be giving away a free console ID each day to one person who needs it. I would of just released them all but they'd get banned almost instantly due to site crawlers etc. So at least if I give one away each time it will extend the life of the CID.

Upon receiving the console ID, post below to confirm this is legit! xD Thanks <3
 

Hender

King Tinkerer
Mar 3, 2016
304
122
There is a FREE CID generator available.
It uses an exploit that sony hasn't patched yet.

You can generate unlimited CID keys for free, its on PS3 Hax.
 

Core

Member
Nov 10, 2016
356
138
There is a FREE CID generator available.
It uses an exploit that sony hasn't patched yet.

You can generate unlimited CID keys for free, its on PS3 Hax.

Just checked then, they appear to be fakes. None make any outgoing requests to any servers; which would mean they'd of had to crack the hash for the CID (there is no hash, it's simply a random number). Let's say there was a sequence for the way in which they were generated; the console ID's should of worked. That's not the case after me testing several of them (from the two applications I could find).
 

Hender

King Tinkerer
Mar 3, 2016
304
122
Just checked then, they appear to be fakes. None make any outgoing requests to any servers; which would mean they'd of had to crack the hash for the CID (there is no hash, it's simply a random number). Let's say there was a sequence for the way in which they were generated; the console ID's should of worked. That's not the case after me testing several of them (from the two applications I could find).
I can't remember where I got mine but it's real and it works it's an exploit about 2 characters being the same or something it did work I used it a few times for my DEX. I'll try find it.

Edit: heres the ones I used a month or two ago:

May or may not be pacthed.
 

Core

Member
Nov 10, 2016
356
138
I can't remember where I got mine but it's real and it works it's an exploit about 2 characters being the same or something it did work I used it a few times for my DEX. I'll try find it.

Edit: heres the ones I used a month or two ago:

ImMrNatio apparently released one but never worked, maybe you was just lucky or something x'D lol
 

Hender

King Tinkerer
Mar 3, 2016
304
122
ImMrNatio apparently released one but never worked, maybe you was just lucky or something x'D lol
Nah, look at the replies, this did work, i tried it 5/6 times, all unbanned genuine keys.
Think it may be patched now, this was in November 16'
 

Core

Member
Nov 10, 2016
356
138
Nah, look at the replies, this did work, i tried it 5/6 times, all unbanned genuine keys.
Think it may be patched now, this was in November 16'

I'm an ex mod on there, I remember when that was posted we all lol'ed.
It's fake; it uses a random generator, the first bytes are default then randomly generated the remaining.
You must of really been lucky to get working CID's from there.
 

Hender

King Tinkerer
Mar 3, 2016
304
122
I'm an ex mod on there, I remember when that was posted we all lol'ed.
It's fake; it uses a random generator, the first bytes are default then randomly generated the remaining.
You must of really been lucky to get working CID's from there.

Lucky me :p
 

Core

Member
Nov 10, 2016
356
138

Here is the code for 'generate console' lol xD

Code:
    string text = "ABCDEF0123456789";
    char[] array = new char[11];
    Random random = new Random();
    for (int i = 0; i < array.Length; i++)
    {
        array[i] = text[random.Next(text.Length)];
    }
    string text2 = new string(array);
    this.textBox1.Text = text2.ToString();
    string text3 = "A55555555555C734";
    char[] array2 = new char[1];
    Random random2 = new Random();
    for (int j = 0; j < array2.Length; j++)
    {
        array2[j] = text3[random2.Next(text3.Length)];
    }
    string text4 = new string(array2);
    string text5 = "ABBBBBBBBBBB88885";
    char[] array3 = new char[1];
    Random random3 = new Random();
    for (int k = 0; k < array3.Length; k++)
    {
        array3[k] = text5[random3.Next(text5.Length)];
    }
    string text6 = new string(array3);
    string text7 = "044444";
    char[] array4 = new char[1];
    Random random4 = new Random();
    for (int l = 0; l < array4.Length; l++)
    {
        array4[l] = text7[random4.Next(text7.Length)];
    }
    string text8 = new string(array4);
    string text9 = "0000000000123456789";
    char[] array5 = new char[2];
    Random random5 = new Random();
    for (int m = 0; m < array5.Length; m++)
    {
        array5[m] = text9[random5.Next(text9.Length)];
    }
    string text10 = new string(array5);
    this.textBox7.Text = text10.ToString();
    this.textBox6.Text = text8.ToString();
    this.textBox5.Text = text6.ToString();
    this.textBox4.Text = text4.ToString();
    this.textBox1.Text = text2.ToString();
    this.textBox3.Text = string.Concat(new string[]
    {
        this.textBox2.Text,
        this.textBox4.Text,
        "000",
        this.textBox5.Text,
        "1",
        this.textBox6.Text,
        "0",
        this.textBox7.Text,
        this.textBox1.Text
    });
    this.textBox8.Paste(this.textBox3.Text + this.newline);
    this.cidcount = this.textBox8.Lines.Length - 1;
    this.counttt.Text = this.cidcount.ToString() + " CID's";
 

Lotus

Legacy, it's all anyone leaves behind.
Jun 8, 2012
1,637
501
Using CID Gen's is fuckery as when it generates one, you're getting someone else banned as it becomes a semi private CID, from what I'm aware though most of the CID's are invalid which would result in an account ban and CID ban once picked up by Sony's system. You're better off pulling one from a motherboard.

I'm an ex mod on there, I remember when that was posted we all lol'ed.
It's fake; it uses a random generator, the first bytes are default then randomly generated the remaining.
You must of really been lucky to get working CID's from there.

You are somewhat right, it's an algorithm actually, chances of getting a valid CID are rough though.
 

Core

Member
Nov 10, 2016
356
138
Using CID Gen's is fuckery as when it generates one, you're getting someone else banned as it becomes a semi private CID, from what I'm aware though most of the CID's are invalid which would result in an account ban and CID ban once picked up by Sony's system. You're better off pulling one from a motherboard.

You are somewhat right, it's an algorithm actually, chances of getting a valid CID are rough though.

What do you mean 'somewhat' right. It was exactly right :/...

Oh and of course, there is a standardised algorithm behind getting the console ID which likely includes data from the machine, a salt and something which has been randomly generated or doesn't follow a sequence such as the cpu key. The actual output though is a hash of all the information. So even if you had said algorithm you couldn't do nothing with it as you'd need valid information to put in it to get a valid console ID for the SEN network. Then hash is converted to byte array and that's what we use as our CID's.

The hash can't be reversed either :/ as the CID is not generated on the machine. It's wrote into ROM and read from ROM and put into LV1 memory which we then overwrite.
 

Lotus

Legacy, it's all anyone leaves behind.
Jun 8, 2012
1,637
501
What do you mean 'somewhat' right. It was exactly right :/...

Oh and of course, there is a standardised algorithm behind getting the console ID which likely includes data from the machine, a salt and something which has been randomly generated or doesn't follow a sequence such as the cpu key. The actual output though is a hash of all the information. So even if you had said algorithm you couldn't do nothing with it as you'd need valid information to put in it to get a valid console ID for the SEN network. Then hash is converted to byte array and that's what we use as our CID's.

The hash can't be reversed either :/ as the CID is not generated on the machine. It's wrote into ROM and read from ROM and put into LV1 memory which we then overwrite.

Ah that makes better sense.
 

jordanreedo

New Member
Oct 5, 2017
1
0
FREE CONSOLE ID

The title explains everything. I will be giving away a free console ID each day to one person who needs it. I would of just released them all but they'd get banned almost instantly due to site crawlers etc. So at least if I give one away each time it will extend the life of the CID.

Upon receiving the console ID, post below to confirm this is legit! xD Thanks <3
 
do you still have any cids I was baned a while ago and really would like to get playing again
 

natdog400

New Member
Oct 5, 2017
1
0
FREE CONSOLE ID

The title explains everything. I will be giving away a free console ID each day to one person who needs it. I would of just released them all but they'd get banned almost instantly due to site crawlers etc. So at least if I give one away each time it will extend the life of the CID.

Upon receiving the console ID, post below to confirm this is legit! xD Thanks <3
Yeah i updated my ccapi before writing down my stuff and lost both cid and psid
 

Lotus

Legacy, it's all anyone leaves behind.
Jun 8, 2012
1,637
501
Yeah i updated my ccapi before writing down my stuff and lost both cid and psid

CCAPI is for noobs jesus. Why not run Target Manager and establish a hardwired connection through your WIFI Router and use a TMAPI connection. Run WebMan on Rebug DEX and you can update your CID through that PSID and IDPS.. You won't lose it upon any updates plus you don't gotta enter it every time you turn your console lol. With Webman you don't even gotta spoof. Just check off the box under PSID and IDPS to delete history and cache upon start up. Your CID will atleast last a good year or more like that.

You can still get your tempretures plus RealTimeModding Tools are more responsive and faster.

I go onto my browser and enter the local ip 192.168.1.103 and access WebMan, its better than the CCAPI tool by Enstone.
 

Plain_Dust

New Member
Dec 9, 2017
1
0
FREE CONSOLE ID

The title explains everything. I will be giving away a free console ID each day to one person who needs it. I would of just released them all but they'd get banned almost instantly due to site crawlers etc. So at least if I give one away each time it will extend the life of the CID.

Upon receiving the console ID, post below to confirm this is legit! xD Thanks <3
Hey sorry to bother are you still giving private Cid, Because i really need one.
 
Status
Not open for further replies.

Users who are viewing this thread

Top