To members who have bought Console ID's

  • 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.

Younis

Administrator
Staff member
Administrator
Local Celebrity
Community Elite
Community Veteran
Determined Poster
Active Member
Sep 27, 2013
2,073
2,638
743
Buyer-Protection-Badge-small-150.png

Hey guys,

To help prevent dealers selling the same Console ID, I have made this thread for you to post the last digits of your Console ID below to see if other customers have the same one.
  1. Provide the last 4-6 digits of the CID (if its still working) or Provide the entire thing if its banned so it can be matched to anyone else if its been sold more than once.
  2. Provide when the CID was purchased and how much you paid for it
  3. Provide a Picture of the person giving you the CID and anything else that may help with the purchase protection. (Edit the photo and black the CID out if its still working but leave that last 4-6 digits visible)
  4. Provide how long the Console ID worked - or weather its still working
Seller: Example
ID: ****************************00A0
 

Bilal

Member
Nov 5, 2013
178
35
38
2 cids
****************************BE75AD
****************************49605C
Paid $50 for 2 comes with psid
first Console id got it at 10/24/14 and is still not banned.
tested second id after purchasing and never used again due to the first one not being banned

so yeah
 

Scifen

Member
Nov 7, 2014
48
13
18
cid: ***************************276BA
psid: *************************9C437766
Purchased from: UnboundGodz
Price: $22
Date of Purchase: 3/21/15
Banned?: Not banned as of 4/11/15
Shared?: Shared with me and my friend
Proof?: http://prntscr.com/6skznd
 
  • Like
Reactions: Younis

Scifen

Member
Nov 7, 2014
48
13
18
Private CID's bought from someone a long time ago. don't remember who but got banned fairly quick
00000001008400081404E52E1FAEB125
000000010084000C1005BEAE481298F0
 
  • Like
Reactions: Younis

TeOz

Member
Mar 6, 2015
1
2
11
Buyer-Protection-Badge-small-150.png

Hey guys,

To help prevent dealers selling the same Console ID, I have made this thread for you to post the last digits of your Console ID below to see if other customers have the same one.
  1. Provide the last 4-6 digits of the CID (if its still working) or Provide the entire thing if its banned so it can be matched to anyone else if its been sold more than once.
  2. Provide when the CID was purchased and how much you paid for it
  3. Provide a Picture of the person giving you the CID and anything else that may help with the purchase protection. (Edit the photo and black the CID out if its still working but leave that last 4-6 digits visible)
  4. Provide how long the Console ID worked - or weather its still working
Seller: Example
ID: ****************************00A0

Here's something I made a while back out of boredom, it would be useful to you.

PHP:
<?php

/*

   What needs to be added?
   ------------------------
   
   Well for one this is core PHP and has no HTML/CSS/Javascript coding other than the occassional printing
   Should update this so it adds the ids to a database, rather than relying on the files. The bigger the file gets the more impact it will have on your server!
   
   What do I need to do to get this working?
   -----------------------------------------
   
   You need to add the missing HTML forms so people can switch the pages and post the cids.
   Currently this works by saving IDs to a file and then using explode() to split all values to an array on a newline "\n"
   You can add this to your site right now, make 2 file called "cid-valid.txt" and "cid-banned.txt" and chmod them so they're writable.
   It will work, you just have to manually forge the requests because there are no forms to help you navigate.
   
   Why haven't I done this?
   -------------------------
   
   1. Because you should all be able to easily add this to your own sites and integrate it with your software pretty easily
   2. Because some people are still using mysqli_* and not PDO. not to mention the people still using mysql_ (._.)
   3. I made this out of boredom and I finally found something better to do.
   
   ~ GHoST
   
*/

$validcid  = explode("\n", file_get_contents("cid-valid.txt"));
$bannedcid = explode("\n", file_get_contents("cid-banned.txt"));

function generate_random_cid($cids, $bannedcid) {
   foreach($cids as $cid) {
     $workingcid = array();
     
     // Gather IDs we've collected, compare them against the ban list and add the working ones to a new array.
     if(!in_array($cid, $bannedcid, false) && !in_array($cid, $workingcid, false)) {
       array_push($workingcid, $cid);
     }
   }
   
   // Check if we have any working IDs before printing
   if(count($workingcid) < 1) {
     return "No Working Console IDs currently";
   }
   
   // Load a random index from the working ID array
   $workingcid = $workingcid[mt_rand(count($workingcid) - 1)];
}

if(isset($_GET['page']) && !empty($_GET['page'])) {
   switch($_GET['page']) {
     case "newcid": {
       if(isset($_POST['cid']) && !empty($_POST['cid'])) {
         if(preg_match("/^00000001008[A-F,0-9]000[A-F,0-9]{17}$/", $_POST['cid'])) {
           if(!in_array($_POST['cid'], $validcid, false) && !in_array($_POST['cid'], $bannedcid, false)) {
             // The ID submitted is new and is added to our array
             file_put_contents("cid-valid.txt", $_POST['cid']."\n", FILE_APPEND);
           }
           else {
             // The ID submitted is already in our array
             print("The Console ID: <strong>" .$_POST['cid']. "</strong> has already been added");
             break;
           }
         }
         else {
           // The ID submitted does not match the regular expression (most likely a 1337 hax0r)
           print("The Console ID: <strong>" .$_POST['cid']. "</strong> is not valid <br />Please contact the admin of the forum if this is incorrect");
         }
       }
     }
     break;
     case "bannedcid": {
       if(isset($_POST['bannedcid']) && !empty($_POST['bannedcid'])) {
         if(preg_match("/^00000001008[A-F,0-9]000[A-F,0-9]{17}$/", $_POST['bannedcid'])) {
           if(!in_array($_POST['bannedcid'], $bannedcid, false) && in_array($_POST['bannedcid'], $validcid, false)) {
             // The ID submitted is new and is added to our ban list
             file_put_contents("cid-banned.txt", $_POST['bannedcid']."\n", FILE_APPEND);
             print("The Console ID: <strong>" .$_POST['bannedcid']. "</strong> has been added");
           }
           elseif(!in_array($_POST['bannedcid'], $bannedcid, false) && !in_array($_POST['bannedcid'], $validcid, false)) {
             // The ID submitted is new and also not in our cid array, so is added to our cid and ban array
             file_put_contents("cid-banned.txt", $_POST['bannedcid']."\n", FILE_APPEND);
             file_put_contents("cid-valid.txt", $_POST['bannedcid']."\n", FILE_APPEND);
             print("The Console ID: <strong>" .$_POST['bannedcid']. "</strong> has been added");
           }
           else {
             // The ID submitted is already in our banlist
             print("The Console ID: <strong>" .$_POST['bannedcid']. "</strong> has already been added");
           }
         }
         else {
           // The ID submitted does not match the regular expression (most likely a 1337 hax0r) ~ sp00ky
           print("The Console ID: <strong>" .$_POST['bannedcid']. "</strong> is not valid <br />Please contact the admin of the forum if this is incorrect");
         }
       }
     }
     break;
     default: {
       $workingcid = generate_random_cid($validcid, $bannedcid);
       print $workingcid;
     }
   }
}

?>
 

HxsnMods

Member
Apr 14, 2014
3
0
11
cid: 4325
psid: FAA0
seller: UnboundGodz
purchased: 2/14/17 @10:54:43 AM PST
method: google wallet
 

Emaƞuεl

Public Legend
Retired Staff
Local Legend
Local Hero
Local Celebrity
Community Elite
Community Veteran
Determined Poster
Active Member
Console ID Poster
Jan 1, 2015
3,786
7,659
1,268
Private CIDs 00000001008E000B1400CD5465058105 and 000000010083000B140F5C7C4B38C978
First banned in 2 days, second banned after 2 logins, no hacking or cheating
$20, bought from UnboundGod on 3/22/17

Any idea surfaced yet on why the IDs are getting banned?
@UnboundGodz
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • @ Curdawg:
    i have and same result
  • @ QM|T_JinX:
    strange then yea
  • @ Curdawg:
    ive made like three spare accounts and its same result should i go to ofw then go back to cfw?
  • @ Curdawg:
    they have to make everything complicated for ps3 i swear bro
  • Chat Bot:
    Christo has joined the room.
  • @ QM|T_JinX:
    haha yea everything for sure na dont think that will do something if you go back to ofw
  • @ Curdawg:
    dang im just trying to think of what to do because of it im tryna go back and start my own modding thing
  • @ QM|T_JinX:
    you got 4 accounts? go on all of then and logoff on it then go to the account that you want to use
  • @ Curdawg:
    i have none on my ps3
  • @ Curdawg:
    rn
  • @ Curdawg:
    is it possible to downgrade to rebug and play online that way preferrably dex?
  • @ Curdawg:
    cuz i feel like itd be easier to log in due to it being a lower fw but idk
  • @ QM|T_JinX:
    whats your fw now then if its not rebug
  • @ Curdawg:
    oh wait its got rebug built in? the lates one
  • @ Curdawg:
    latest*
  • Chat Bot:
    peedrooo04 is our newest member. Welcome!
  • @ Curdawg:
    my bo3 fatality mod menu is pointless atp
  • @ QM|T_JinX:
    ya not sure what build in rebug you mean but from th sounds of it your not running rebug so you should if you want can install rebug what you like
  • @ Curdawg:
    thanks
  • Chat Bot:
    iolator is our newest member. Welcome!
  • Chat Bot:
    iolator has posted a new reply in the thread "Console ID #8671".
  • Chat Bot:
    iolator has posted a new reply in the thread "Console ID 8654".
  • Chat Bot:
    Curdawg has joined the room.
  • Chat Bot:
    ccnn has started a new thread called "Finest Сasual ****** - Actual Women" in Site Suggestions.
  • Chat Bot:
    CycloneFR has started a new thread called "Girls in your town for night" in Destiny General.
    Chat Bot: CycloneFR has started a new thread called "Girls in your town for night" in Destiny General.