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,071
2,633
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
    Chat Bot: Christo has joined the room.