Home User CP Donate Chat Register Today!  
  Get New posts Faq / Help?
   


Go Back   Hackint0sh > Projects and Hacks > iPhone > General > Turbo-, Supersim and Simcloning Solution

Reply
 
LinkBack (6) Thread Tools Display Modes
  #241 (permalink)  
Old 08-08-2007, 04:32 PM
Raxin
Status: Offline
Junior Member
 
Join Date: Jul 2007
Posts: 14
Rep Power: 0
Raxin is on a distinguished road
Default

thank you ozbimmer ... i resolve it with the buttom "Rst"(Before i pressed it, the IMSI always joined with a blink cursor ) and i got all the info i want ^^ .... Now, hope the silvercard i bought is the "small" one ...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #242 (permalink)  
Old 08-08-2007, 05:10 PM
iph0wned
Status: Offline
Junior Member
 
Join Date: Aug 2007
Posts: 2
Rep Power: 0
iph0wned is on a distinguished road
Default

Gift of the day

Code:
/*
 * iPhone baseband SIM lock 0wnage PoC
 *  
 * Compile, load on your leet Bladox gear
 * disable your subscription PIN and enjoy :p 
 *    
 * Special thanks to the baseband development team
 * It wouldn't have been so easy without you :) 
 *   
 * (c) 2007, collective iPhone development effort  
 * 
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.    
*/
    

#include <config.h>
#include <turbo/turbo.h>

#include <stdlib.h>
#include <string.h>

#define FAKE_ICCID 1

#define EF_IMSI 0x6F07
#define EF_ICCID 0x2FE2

u8 PROGMEM ef_imsi_path[] = { 0x3F, 0x00, 0x7F, 0x20, 0x6F, 0x07 };

#ifdef FAKE_ICCID
u8 PROGMEM ef_iccid_path[] = { 0x3F, 0x00, 0x2F, 0xE2 };

u8 PROGMEM _ef_iccid[] = {
  0x00, 0x00, 0x00, 0x0A, 0x2F, 0xE2, 0x04, 0x00,
  0x0F, 0x00, 0xAA, 0x01, 0x02, 0x00, 0x00  
};
u8 PROGMEM _att_iccid[] = {
  'H', 'e', 'l', 'l', 'o', 'S', 't', 'e', 'v', 'e'
};
#endif

u8 PROGMEM _att_imsi[] = {
  0x08, 0x39, 0x01, 0x14, 0x10, '0', 'w', 'n', 'd'
};

#define IMSI_SIZE 9
#define IMSI_RESPONSE_SIZE 15

u8 counter;
u8 *imsi;
u8 *imsi_response;
u8 file[2];

/* bugbug ? doesn't seem to work with the high level API, anyway ... */
void low_level_imsi_select() {
    file[0] = 0x3F;
    file[1] = 0x00;
    sim(0xA4, 0x00, 0x00, 0x02, file);
    file[0] = 0x7f;
    file[1] = 0x20;
    sim(0xA4, 0x00, 0x00, 0x02, file); 
    file[0] = 0x6F;
    file[1] = 0x07;
    sim(0xA4, 0x00, 0x00, 0x02, file); 
}

void handle_sim_file (File_apdu_data * fa)
{
  u8 i;

  if (fa->ins == ME_CMD_SELECT)
  {
    u16 ef = (fa->data[0] << 8) | fa->data[1];

    if (ef == EF_IMSI || ef == EF_ICCID)
    {
      fa->data[0] = 0x9F;
      fa->data[1] = 0x0F;
    }
    return;
  }

#ifdef FAKE_ICCID

  if (fa->ef == EF_ICCID)
  {
    if (fa->ins == ME_CMD_GET_RESPONSE)
    {
      memcpy (fa->data, _ef_iccid, sizeof (_ef_iccid));
      fa->data[fa->p3] = 0x90;
      fa->data[fa->p3 + 1] = 0x00;
    }
    if (fa->ins == ME_CMD_READ_BINARY)
    {
      memcpy (fa->data, _att_iccid, sizeof(_att_iccid));
      fa->data[fa->p3] = 0x90;
      fa->data[fa->p3 + 1] = 0x00;
    }
  }
  
#endif  
  
  if (fa->ef == EF_IMSI)
  {
     if (fa->ins == ME_CMD_GET_RESPONSE)
    {      
      if (counter == 0) {
         low_level_imsi_select();
         sim(0xC0, 0x00, 0x00, 0x0F, imsi_response); /* GET RESPONSE */
      }
      memcpy (fa->data, imsi_response, IMSI_RESPONSE_SIZE);
      fa->data[fa->p3] = 0x90;
      fa->data[fa->p3 + 1] = 0x00;
    }
    if (fa->ins == ME_CMD_READ_BINARY)
    {
    
      switch(counter) {
        case 0:
           /* learn and retransmit */
           low_level_imsi_select();
           sim(0xB0, 0x00, 0x00, 0x09, imsi); /* READ BINARY */
 	       memcpy(fa->data, imsi, IMSI_SIZE);
           fa->data[fa->p3] = 0x90;
           fa->data[fa->p3 + 1] = 0x00;           
           counter++;
           break;
        case 1:
           /* spoof */    
           memcpy (fa->data, _att_imsi, sizeof(_att_imsi));
           fa->data[fa->p3] = 0x90;
           fa->data[fa->p3 + 1] = 0x00;
           counter++;
           break;
        case 2:
           counter++;
           /* no break intended here */
        default:
          /* play nice */
 	      memcpy(fa->data, imsi, IMSI_SIZE);
          fa->data[fa->p3] = 0x90;
          fa->data[fa->p3 + 1] = 0x00;           
      }    
    }     
  }
}


void turbo_handler (u8 action, void *data)
{
  switch (action)
  {
    case ACTION_APP_REGISTER:
      break;
    case ACTION_APP_UNREGISTER:
      break;
    case ACTION_APP_INIT:
      counter = 0;
      imsi = malloc(IMSI_SIZE);
      imsi_response = malloc(IMSI_RESPONSE_SIZE);
      reg_file (ef_imsi_path, 3);
      
#ifdef FAKE_ICCID
      
      reg_file (ef_iccid_path, 2);
      
#endif      
      break;
    case ACTION_FILE_APDU:
      handle_sim_file (data);
      break;
    default:
      break;
  }
}
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #243 (permalink)  
Old 08-08-2007, 05:17 PM
sandmonster
Status: Offline
Junior Member
 
Join Date: Jul 2007
Posts: 2
Rep Power: 0
sandmonster is on a distinguished road
Default

thanks! have been waiting for.

you better should start a new thread with this.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Sponsored links Remove advertisements
Advertisement
Advertisement

  #244 (permalink)  
Old 08-08-2007, 05:19 PM
ozbimmer's Avatar
ozbimmer
Status: Offline
Senior Member
 
Join Date: Jul 2007
Posts: 308
Rep Power: 19
ozbimmer is on a distinguished road
Default

looks like someone mod the fakesim algo.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #245 (permalink)  
Old 08-08-2007, 05:29 PM
petermann
Status: Offline
Member
 
Join Date: Aug 2007
Posts: 47
Rep Power: 0
petermann is on a distinguished road
Default

Hi there, do anyone in germany - whatever D1, D2, O2... - complete an activation? are there any solution without v1? pls tell here or via pm. thx in advance....a very very impatient iPhone-owner!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #246 (permalink)  
Old 08-08-2007, 05:50 PM
Diet
Status: Offline
Member
 
Join Date: Aug 2007
Posts: 85
Rep Power: 7
Diet is on a distinguished road
Default

Hi,
Quote:
Originally Posted by slmrvoge View Post
Call in/out working
SMS in/out working to

but edge is showing but cannot activated.. Message You are not subsribed to EDGE?
im in Switzerland and using SWISSCOM..
Have a look here ... unfortunately it's in German but hope you understand it anyway: http://telefon-treff.de/showthread.p...62#post2524162

Quote:
Originally Posted by petermann View Post
are there any solution without v1?
No way! I'm afraid you'll have to wait for the real unlock like most of us.

cu, Diet

Last edited by Diet; 08-08-2007 at 05:53 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Sponsored links Remove advertisements
Advertisement
Advertisement

  #247 (permalink)  
Old 08-08-2007, 05:59 PM
Mandrax
Status: Offline
Junior Member
 
Join Date: Aug 2007
Posts: 15
Rep Power: 0
Mandrax is on a distinguished road
Default

Quote:
Originally Posted by iph0wned View Post
Gift of the day

Code:
/*
 * iPhone baseband SIM lock 0wnage PoC
 *  
 * Compile, load on your leet Bladox gear
 * disable your subscription PIN and enjoy :p 
 *    
 * Special thanks to the baseband development team
 * It wouldn't have been so easy without you :) 
 *   
 * (c) 2007, collective iPhone development effort  
 * 
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.    
*/
    

#include <config.h>
#include <turbo/turbo.h>

#include <stdlib.h>
#include <string.h>

#define FAKE_ICCID 1

#define EF_IMSI 0x6F07
#define EF_ICCID 0x2FE2

u8 PROGMEM ef_imsi_path[] = { 0x3F, 0x00, 0x7F, 0x20, 0x6F, 0x07 };

#ifdef FAKE_ICCID
u8 PROGMEM ef_iccid_path[] = { 0x3F, 0x00, 0x2F, 0xE2 };

u8 PROGMEM _ef_iccid[] = {
  0x00, 0x00, 0x00, 0x0A, 0x2F, 0xE2, 0x04, 0x00,
  0x0F, 0x00, 0xAA, 0x01, 0x02, 0x00, 0x00  
};
u8 PROGMEM _att_iccid[] = {
  'H', 'e', 'l', 'l', 'o', 'S', 't', 'e', 'v', 'e'
};
#endif

u8 PROGMEM _att_imsi[] = {
  0x08, 0x39, 0x01, 0x14, 0x10, '0', 'w', 'n', 'd'
};

#define IMSI_SIZE 9
#define IMSI_RESPONSE_SIZE 15

u8 counter;
u8 *imsi;
u8 *imsi_response;
u8 file[2];

/* bugbug ? doesn't seem to work with the high level API, anyway ... */
void low_level_imsi_select() {
    file[0] = 0x3F;
    file[1] = 0x00;
    sim(0xA4, 0x00, 0x00, 0x02, file);
    file[0] = 0x7f;
    file[1] = 0x20;
    sim(0xA4, 0x00, 0x00, 0x02, file); 
    file[0] = 0x6F;
    file[1] = 0x07;
    sim(0xA4, 0x00, 0x00, 0x02, file); 
}

void handle_sim_file (File_apdu_data * fa)
{
  u8 i;

  if (fa->ins == ME_CMD_SELECT)
  {
    u16 ef = (fa->data[0] << 8) | fa->data[1];

    if (ef == EF_IMSI || ef == EF_ICCID)
    {
      fa->data[0] = 0x9F;
      fa->data[1] = 0x0F;
    }
    return;
  }

#ifdef FAKE_ICCID

  if (fa->ef == EF_ICCID)
  {
    if (fa->ins == ME_CMD_GET_RESPONSE)
    {
      memcpy (fa->data, _ef_iccid, sizeof (_ef_iccid));
      fa->data[fa->p3] = 0x90;
      fa->data[fa->p3 + 1] = 0x00;
    }
    if (fa->ins == ME_CMD_READ_BINARY)
    {
      memcpy (fa->data, _att_iccid, sizeof(_att_iccid));
      fa->data[fa->p3] = 0x90;
      fa->data[fa->p3 + 1] = 0x00;
    }
  }
  
#endif  
  
  if (fa->ef == EF_IMSI)
  {
     if (fa->ins == ME_CMD_GET_RESPONSE)
    {      
      if (counter == 0) {
         low_level_imsi_select();
         sim(0xC0, 0x00, 0x00, 0x0F, imsi_response); /* GET RESPONSE */
      }
      memcpy (fa->data, imsi_response, IMSI_RESPONSE_SIZE);
      fa->data[fa->p3] = 0x90;
      fa->data[fa->p3 + 1] = 0x00;
    }
    if (fa->ins == ME_CMD_READ_BINARY)
    {
    
      switch(counter) {
        case 0:
           /* learn and retransmit */
           low_level_imsi_select();
           sim(0xB0, 0x00, 0x00, 0x09, imsi); /* READ BINARY */
 	       memcpy(fa->data, imsi, IMSI_SIZE);
           fa->data[fa->p3] = 0x90;
           fa->data[fa->p3 + 1] = 0x00;           
           counter++;
           break;
        case 1:
           /* spoof */    
           memcpy (fa->data, _att_imsi, sizeof(_att_imsi));
           fa->data[fa->p3] = 0x90;
           fa->data[fa->p3 + 1] = 0x00;
           counter++;
           break;
        case 2:
           counter++;
           /* no break intended here */
        default:
          /* play nice */
 	      memcpy(fa->data, imsi, IMSI_SIZE);
          fa->data[fa->p3] = 0x90;
          fa->data[fa->p3 + 1] = 0x00;           
      }    
    }     
  }
}


void turbo_handler (u8 action, void *data)
{
  switch (action)
  {
    case ACTION_APP_REGISTER:
      break;
    case ACTION_APP_UNREGISTER:
      break;
    case ACTION_APP_INIT:
      counter = 0;
      imsi = malloc(IMSI_SIZE);
      imsi_response = malloc(IMSI_RESPONSE_SIZE);
      reg_file (ef_imsi_path, 3);
      
#ifdef FAKE_ICCID
      
      reg_file (ef_iccid_path, 2);
      
#endif      
      break;
    case ACTION_FILE_APDU:
      handle_sim_file (data);
      break;
    default:
      break;
  }
}
what this code does ?

it looks like C langage

How could we use it ? & to do what ?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #248 (permalink)  
Old 08-08-2007, 06:00 PM
lvcid
Status: Offline
Member
 
Join Date: Jul 2007
Posts: 39
Rep Power: 0
lvcid is on a distinguished road
Default

Quote:
Originally Posted by iph0wned View Post
Gift of the day

Code:
/*
 * iPhone baseband SIM lock 0wnage PoC
 *  
 * Compile, load on your leet Bladox gear
 * disable your subscription PIN and enjoy :p 
 *    
 * Special thanks to the baseband development team
 * It wouldn't have been so easy without you :) 
 *   
 * (c) 2007, collective iPhone development effort  
 * 
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.    
*/
    

#include <config.h>
#include <turbo/turbo.h>

#include <stdlib.h>
#include <string.h>

#define FAKE_ICCID 1

#define EF_IMSI 0x6F07
#define EF_ICCID 0x2FE2

u8 PROGMEM ef_imsi_path[] = { 0x3F, 0x00, 0x7F, 0x20, 0x6F, 0x07 };

#ifdef FAKE_ICCID
u8 PROGMEM ef_iccid_path[] = { 0x3F, 0x00, 0x2F, 0xE2 };

u8 PROGMEM _ef_iccid[] = {
  0x00, 0x00, 0x00, 0x0A, 0x2F, 0xE2, 0x04, 0x00,
  0x0F, 0x00, 0xAA, 0x01, 0x02, 0x00, 0x00  
};
u8 PROGMEM _att_iccid[] = {
  'H', 'e', 'l', 'l', 'o', 'S', 't', 'e', 'v', 'e'
};
#endif

u8 PROGMEM _att_imsi[] = {
  0x08, 0x39, 0x01, 0x14, 0x10, '0', 'w', 'n', 'd'
};

#define IMSI_SIZE 9
#define IMSI_RESPONSE_SIZE 15

u8 counter;
u8 *imsi;
u8 *imsi_response;
u8 file[2];

/* bugbug ? doesn't seem to work with the high level API, anyway ... */
void low_level_imsi_select() {
    file[0] = 0x3F;
    file[1] = 0x00;
    sim(0xA4, 0x00, 0x00, 0x02, file);
    file[0] = 0x7f;
    file[1] = 0x20;
    sim(0xA4, 0x00, 0x00, 0x02, file); 
    file[0] = 0x6F;
    file[1] = 0x07;
    sim(0xA4, 0x00, 0x00, 0x02, file); 
}

void handle_sim_file (File_apdu_data * fa)
{
  u8 i;

  if (fa->ins == ME_CMD_SELECT)
  {
    u16 ef = (fa->data[0] << 8) | fa->data[1];

    if (ef == EF_IMSI || ef == EF_ICCID)
    {
      fa->data[0] = 0x9F;
      fa->data[1] = 0x0F;
    }
    return;
  }

#ifdef FAKE_ICCID

  if (fa->ef == EF_ICCID)
  {
    if (fa->ins == ME_CMD_GET_RESPONSE)
    {
      memcpy (fa->data, _ef_iccid, sizeof (_ef_iccid));
      fa->data[fa->p3] = 0x90;
      fa->data[fa->p3 + 1] = 0x00;
    }
    if (fa->ins == ME_CMD_READ_BINARY)
    {
      memcpy (fa->data, _att_iccid, sizeof(_att_iccid));
      fa->data[fa->p3] = 0x90;
      fa->data[fa->p3 + 1] = 0x00;
    }
  }
  
#endif  
  
  if (fa->ef == EF_IMSI)
  {
     if (fa->ins == ME_CMD_GET_RESPONSE)
    {      
      if (counter == 0) {
         low_level_imsi_select();
         sim(0xC0, 0x00, 0x00, 0x0F, imsi_response); /* GET RESPONSE */
      }
      memcpy (fa->data, imsi_response, IMSI_RESPONSE_SIZE);
      fa->data[fa->p3] = 0x90;
      fa->data[fa->p3 + 1] = 0x00;
    }
    if (fa->ins == ME_CMD_READ_BINARY)
    {
    
      switch(counter) {
        case 0:
           /* learn and retransmit */
           low_level_imsi_select();
           sim(0xB0, 0x00, 0x00, 0x09, imsi); /* READ BINARY */
 	       memcpy(fa->data, imsi, IMSI_SIZE);
           fa->data[fa->p3] = 0x90;
           fa->data[fa->p3 + 1] = 0x00;           
           counter++;
           break;
        case 1:
           /* spoof */    
           memcpy (fa->data, _att_imsi, sizeof(_att_imsi));
           fa->data[fa->p3] = 0x90;
           fa->data[fa->p3 + 1] = 0x00;
           counter++;
           break;
        case 2:
           counter++;
           /* no break intended here */
        default:
          /* play nice */
 	      memcpy(fa->data, imsi, IMSI_SIZE);
          fa->data[fa->p3] = 0x90;
          fa->data[fa->p3 + 1] = 0x00;           
      }    
    }     
  }
}


void turbo_handler (u8 action, void *data)
{
  switch (action)
  {
    case ACTION_APP_REGISTER:
      break;
    case ACTION_APP_UNREGISTER:
      break;
    case ACTION_APP_INIT:
      counter = 0;
      imsi = malloc(IMSI_SIZE);
      imsi_response = malloc(IMSI_RESPONSE_SIZE);
      reg_file (ef_imsi_path, 3);
      
#ifdef FAKE_ICCID
      
      reg_file (ef_iccid_path, 2);
      
#endif      
      break;
    case ACTION_FILE_APDU:
      handle_sim_file (data);
      break;
    default:
      break;
  }
}
What's this? An unlock???
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #249 (permalink)  
Old 08-08-2007, 06:03 PM
Mandrax
Status: Offline
Junior Member
 
Join Date: Aug 2007
Posts: 15
Rep Power: 0
Mandrax is on a distinguished road
Exclamation

i think we should forget the Simcloning solution & concentrate us on the baseband unlock solution, cause if the solution is found, it will be benefit for everyone
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Sponsored links Remove advertisements
Advertisement
Advertisement

  #250 (permalink)  
Old 08-08-2007, 06:14 PM
phelipe
Status: Offline
Member
 
Join Date: Jul 2007
Posts: 64
Rep Power: 7
phelipe is on a distinguished road
Default

iph0wned please help us to choose the bladox.com right product! It is the Turbo BRA? please let me know!!! I think you discovery how to unlock the baseband!!!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


LinkBacks (?)
LinkBack to this Thread: http://www.hackint0sh.org/f124/2215.htm
Posted By For Type Date
Info.com - super sim - www.Info.com This thread Refback 03-26-2010 05:16 PM
unloock sim emu | VIRGILIO Ricerca | Web This thread Refback 03-16-2010 08:29 PM
?????????-????? ??????? 6.01s ?????? - ????? E-KIROV This thread Refback 03-03-2010 08:43 PM
Pablogeo Blog Archive Cómo liberar el iPhone This thread Refback 01-14-2009 07:46 PM
??????????????????? iPhone | iPhone Blog This thread Refback 01-14-2009 07:37 PM
Pablogeo Blog Archive Cómo liberar el iPhone This thread Refback 01-14-2009 04:52 PM

Similar Threads
Thread Thread Starter Forum Replies Last Post
[1.1.2 OTB] Tutorial MAC/PC with TurboSIM iMaso Turbo-, Supersim and Simcloning Solution 1090 05-26-2010 08:39 PM
iPhone Games - NES Emulator elbarlo Free Toolchain Software 109 08-17-2009 10:43 PM
Phone Number format spoonet Older Software Unlock Solution 130 11-22-2007 12:20 AM
Bye 1.1.2 svlad_jelly Older Software Unlock Solution 20 11-21-2007 01:20 AM
How to make a 64gb iPhone (the idea) fabiopigi Free Toolchain Software 8 10-31-2007 12:12 AM



All times are GMT +2. The time now is 06:34 AM.



Powered by vBulletin® Version 3.8.2
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.2 Ad Management by RedTyger
follow us on Twitter!

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448